Skip to content

Commit 25bde3f

Browse files
committed
API 1.34
1 parent 3ecc413 commit 25bde3f

38 files changed

+930
-1099
lines changed

Makefile.am

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ libmfx_la_SOURCES = \
2626
src/mfx_library_iterator.cpp \
2727
src/mfx_load_dll.cpp \
2828
src/mfx_win_reg_key.cpp \
29-
src/mfx_plugin_hive.cpp
29+
src/mfx_plugin_hive.cpp \
30+
src/mfx_driver_store_loader.h \
31+
src/mfx_driver_store_loader.cpp
3032
else
3133
libmfx_la_SOURCES = \
3234
src/mfxloader.cpp \

configure.ac

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
AC_PREREQ([2.53])
22

3-
AC_INIT([libmfx], [1.32])
3+
AC_INIT([libmfx], [1.34])
44
AC_CONFIG_SRCDIR([src/mfx_dispatcher.cpp])
55
AM_INIT_AUTOMAKE([foreign subdir-objects])
66

@@ -15,13 +15,13 @@ AS_CASE([${host_os}],
1515
[*mingw*], [
1616
AC_DEFINE([MFX_HAVE_WINDOWS])
1717
AM_CONDITIONAL([WINDOWS], [true])
18-
DLLIB=""
18+
DLLIB="-lole32 -luuid"
1919
],
2020
[*cygwin*], [
2121
AC_DEFINE([MFX_HAVE_WINDOWS])
2222
AC_DEFINE([_MAX_PATH], [MAX_PATH])
2323
AM_CONDITIONAL([WINDOWS], [true])
24-
DLLIB=""
24+
DLLIB="-lole32 -luuid"
2525
],
2626
[AC_MSG_ERROR([${host_os} not supported.])]
2727
)

libmfx.sln

Lines changed: 0 additions & 35 deletions
This file was deleted.

0 commit comments

Comments
 (0)