diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-03-16 00:29:02 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-03-16 00:29:02 +0000 |
commit | 58a8041098be7fffd7d4b4688de71e9c90bdbe11 (patch) | |
tree | 739d31b1723f6ba7f77227265c3066b3d1695a64 | |
parent | a59561b49f968b2a365cdc31b52bcedc0f3f8852 (diff) | |
download | xine-lib-58a8041098be7fffd7d4b4688de71e9c90bdbe11.tar.gz xine-lib-58a8041098be7fffd7d4b4688de71e9c90bdbe11.tar.bz2 |
Run true to avoid then else without content.
CVS patchset: 8668
CVS date: 2007/03/16 00:29:02
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index ce5bd2094..b81e15597 100644 --- a/configure.ac +++ b/configure.ac @@ -550,9 +550,9 @@ if test "x$with_x" != "xno"; then if test "x$no_x" != "xyes"; then ac_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $X_CFLAGS" - AC_CHECK_HEADERS([X11/extensions/XShm.h], [ ], + AC_CHECK_HEADERS([X11/extensions/XShm.h], [true], [AC_MSG_ERROR([XShm extension is required])]) - AC_CHECK_LIB([Xext], [main], [ ], + AC_CHECK_LIB([Xext], [main], [true], [AC_MSG_ERROR([libXext is required])], [$X_LIBS]) CPPFLAGS="$ac_save_CPPFLAGS" X_LIBS="$X_LIBS $X_PRE_LIBS -lX11 -lXext" |