diff options
author | Robin KAY <komadori@users.sourceforge.net> | 2003-09-13 13:09:44 +0000 |
---|---|---|
committer | Robin KAY <komadori@users.sourceforge.net> | 2003-09-13 13:09:44 +0000 |
commit | 238fcf60439f8e5e33c1d2d9fe5c7ba38c9b859e (patch) | |
tree | b5fbd769ab2d4513ae7adfe1cbb4403a27725fae | |
parent | dbeae94d229ca4f30cad57d1294bbbc7cad97c8f (diff) | |
download | xine-lib-238fcf60439f8e5e33c1d2d9fe5c7ba38c9b859e.tar.gz xine-lib-238fcf60439f8e5e33c1d2d9fe5c7ba38c9b859e.tar.bz2 |
Fix the fix for the --disable-mlib option (the AM_CONDITIONAL statement is now moved outside of the shell conditional rather than removed).
CVS patchset: 5360
CVS date: 2003/09/13 13:09:44
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index ba79d056b..d05d16c0e 100644 --- a/configure.ac +++ b/configure.ac @@ -261,6 +261,7 @@ if test x$enable_mlib = xyes; then CPPFLAGS="$saved_CPPFLAGS" ], , -L$mlibhome/lib) fi +AM_CONDITIONAL(HAVE_MLIB, test x$ac_have_mlib = "xyes") AC_SUBST(MLIB_CFLAGS) |