diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-03-16 02:04:32 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-03-16 02:04:32 +0000 |
commit | 7e0ac96f7c27b895f4eb58acc9f5eb92210800fb (patch) | |
tree | 219055b95a78c5ee1e852a6e0047c2c3514b8771 | |
parent | 072f5cb6a3711fea5362f8024637c63748a0c5bf (diff) | |
download | xine-lib-7e0ac96f7c27b895f4eb58acc9f5eb92210800fb.tar.gz xine-lib-7e0ac96f7c27b895f4eb58acc9f5eb92210800fb.tar.bz2 |
Fix the logic of libstk, as I declared it disabled by default.
CVS patchset: 8672
CVS date: 2007/03/16 02:04:32
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 878776ab3..cc282970d 100644 --- a/configure.ac +++ b/configure.ac @@ -1103,7 +1103,7 @@ dnl --------------------------------------------- AC_ARG_WITH([libstk], AS_HELP_STRING([--with-libstk], [Build with STK surface video driver])) -if test "x$with_libstk" != "xno"; then +if test "x$with_libstk" = "xyes"; then PKG_CHECK_MODULES([LIBSTK], [libstk >= 0.2.0], [have_libstk=yes], [have_libstk=no]) if test "x$with_libstk" = "xyes" && test "x$have_libstk" = "xno"; then AC_MSG_ERROR([libstk support requested, but libstk not found]) |