npapi-vlc | branch: master | Jean-Baptiste Kempf <[email protected]> | Wed Dec 28 23:54:47 2011 +0100| [690f233ff1b1137faf055c20078feb9b200d5e0b] | committer: Jean-Baptiste Kempf
Do not try gtk or xpm for Win32 > http://git.videolan.org/gitweb.cgi/npapi-vlc.git/?a=commit;h=690f233ff1b1137faf055c20078feb9b200d5e0b --- configure.ac | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/configure.ac b/configure.ac index c7a8753..7748628 100644 --- a/configure.ac +++ b/configure.ac @@ -247,13 +247,13 @@ AS_IF([ test "${SYS}" != "mingw32" -a "${SYS}" != "darwin" ], [ [ PKG_CHECK_MODULES(GTK, [gtk+-2.0], [gtk_found=yes]) ]) -]) -AS_IF([ test "x$gtk_found" == "xno" ], - [ - PKG_CHECK_MODULES(XPM, [xpm],, [ - AC_MSG_ERROR([Please install the libXpm development files, or re-run configure with --with-gtk]) + AS_IF([ test "x$gtk_found" == "xno" ], + [ + PKG_CHECK_MODULES(XPM, [xpm],, [ + AC_MSG_ERROR([Please install the libXpm development files, or re-run configure with --with-gtk]) + ]) ]) - ]) +]) AM_CONDITIONAL(USE_GTK, [ test "x$gtk_found" = "xyes" ]) _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
