From 5bae80cc1e47c392224022036dfa7aa55cfa828c Mon Sep 17 00:00:00 2001 From: jstebbins Date: Fri, 14 Aug 2009 22:33:30 +0000 Subject: [PATCH] LinGui: fix a problem building gtk ui on mingw git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2764 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- gtk/configure.ac | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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"]) -- 2.40.0