summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2002-04-04 13:27:03 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2002-04-04 13:27:03 +0000
commit03ee512954c41b0d92ae0671d3e79fb4ba4c0f39 (patch)
tree7ac02ffbf5925e80369e460ec143db4a31a271aa
parent72d64f3e6278cc1c542712e6a0dc08c73ecf72fd (diff)
downloadxine-lib-03ee512954c41b0d92ae0671d3e79fb4ba4c0f39.tar.gz
xine-lib-03ee512954c41b0d92ae0671d3e79fb4ba4c0f39.tar.bz2
Fixed have_imlib conditionnal check.
CVS patchset: 1677 CVS date: 2002/04/04 13:27:03
-rw-r--r--configure.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index ca8d389f5..2b7a8671b 100644
--- a/configure.in
+++ b/configure.in
@@ -268,7 +268,8 @@ if test "$IMLIB_CONFIG" != "no" ; then
IMLIB_CFLAGS=`$IMLIB_CONFIG --cflags`
IMLIB_LIBS=`$IMLIB_CONFIG --libs` ])
fi
-AM_CONDITIONAL(HAVE_IMLIB, [test x"$have_imlib" != x"no"])
+
+AM_CONDITIONAL(HAVE_IMLIB, [test x"$have_imlib" = "xyes"])
AC_SUBST(IMLIB_CFLAGS)
AC_SUBST(IMLIB_LIBS)