diff options
author | jstebbins <[email protected]> | 2012-10-04 16:54:02 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2012-10-04 16:54:02 +0000 |
commit | 657a2ce1106c975f15d1bde54dda386c15d51db2 (patch) | |
tree | 788d95c0bf0f24bc8a10e2c2f9577e6cedbff35a /gtk | |
parent | 4228b01470a3f5d8798bce4aaad28d8481497911 (diff) |
Fix mingw build problems
If the mingw environment has duplicates of some of the contrib
libraries that we build, the mingw system lib or header was being
used instead of our contrib version.
Also, some dependencies were missing which would cause parallel builds to
randomly fail because a necessary contrib hadn't been built yet.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5000 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/src/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/src/Makefile.am b/gtk/src/Makefile.am index 2a18ed70f..3fc616027 100644 --- a/gtk/src/Makefile.am +++ b/gtk/src/Makefile.am @@ -4,13 +4,13 @@ if MINGW HB_LIBS= \ -lhb -la52 -lmkv -lavresample -lavformat -lavcodec -lavutil \ -ldvdnav -ldvdread -lfaac -lmp3lame -lmpeg2 -lvorbis -lvorbisenc \ - -logg -lsamplerate -lx264 -lmp4v2 -lswscale -ltheora -lz \ - -lbz2 -liberty -lpthreadGC2 -lbluray -lass -lfontconfig -lfreetype + -logg -lsamplerate -lx264 -lmp4v2 -lswscale -ltheoraenc -ltheoradec -lz \ + -lbz2 -lpthreadGC2 -lbluray -lass -lfontconfig -lfreetype -lgmodule-2.0 else HB_LIBS= \ -lhb -la52 -lmkv -lavresample -lavformat -lavcodec -lavutil \ -ldvdnav -ldvdread -lfaac -lmp3lame -lmpeg2 -lvorbis -lvorbisenc \ - -logg -lsamplerate -lx264 -lmp4v2 -lswscale -ltheora -lz \ + -logg -lsamplerate -lx264 -lmp4v2 -lswscale -ltheoraenc -ltheoradec -lz \ -lbz2 -lpthread -lbluray -lass -lfontconfig -lfreetype endif |