diff options
author | jstebbins <[email protected]> | 2015-05-01 00:01:23 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2015-05-01 00:01:23 +0000 |
commit | cfa581358236771076493b1e4c236ddf689af558 (patch) | |
tree | 92fb186c3dc63bcabf281cf8a16fd6fb0c0ef380 | |
parent | e6fcf2f40c2628f7780d4841549f5d291024ae9f (diff) |
libhb: fix mingw link, undefined symbol CoTaskMemFree
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7141 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | libhb/module.defs | 2 | ||||
-rw-r--r-- | test/module.defs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libhb/module.defs b/libhb/module.defs index 445d66433..3d7d55ee3 100644 --- a/libhb/module.defs +++ b/libhb/module.defs @@ -171,7 +171,7 @@ else endif LIBHB.GCC.args.extra.dylib++ += -Wl,--out-implib,$(LIBHB.lib) -LIBHB.GCC.l += ws2_32 uuid +LIBHB.GCC.l += ws2_32 uuid ole32 ifeq ($(HAS.dlfcn),1) LIBHB.GCC.l += dl endif diff --git a/test/module.defs b/test/module.defs index 5bc8f1ffd..e273fc4bd 100644 --- a/test/module.defs +++ b/test/module.defs @@ -65,7 +65,7 @@ ifeq (1,$(HAS.pthread)) else TEST.GCC.l += pthreadGC2 endif - TEST.GCC.l += iconv ws2_32 regex uuid + TEST.GCC.l += iconv ws2_32 regex uuid ole32 TEST.GCC.D += PTW32_STATIC_LIB TEST.GCC.args.extra.exe++ += -static endif # (1-mingw,$(BUILD.cross)-$(BUILD.system)) |