From: jstebbins Date: Fri, 14 Aug 2009 22:33:30 +0000 (+0000) Subject: LinGui: fix a problem building gtk ui on mingw X-Git-Tag: 0.9.4~198 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5bae80cc1e47c392224022036dfa7aa55cfa828c;p=handbrake LinGui: fix a problem building gtk ui on mingw git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2764 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- diff --git a/gtk/configure.ac b/gtk/configure.ac index 1aaea79eb..24f2f94c2 100644 --- a/gtk/configure.ac +++ b/gtk/configure.ac @@ -94,7 +94,9 @@ if test "x$old_webkit" = "xyes" ; then CFLAGS="$CFLAGS -D_OLD_WEBKIT" fi else - GHB_PACKAGES="$GHB_PACKAGES webkit-1.0" + if test "x$mingw_flag" = "xno" ; then + GHB_PACKAGES="$GHB_PACKAGES webkit-1.0" + fi fi AM_CONDITIONAL([MINGW], [test "x$mingw_flag" = "xyes"])