From 26a73f3de5c439cab8198291acee6a1fe5452426 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 4 Mar 2017 22:01:23 +0300 Subject: Disable using physfs in all builds except cmake. --- configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 67fcdefe3..8e895487b 100755 --- a/configure.ac +++ b/configure.ac @@ -261,15 +261,15 @@ AC_CHECK_LIB([z], [inflate], , AC_MSG_ERROR([ *** Unable to find zlib (http://www.gzip.org/zlib/)])) # Option to enable physfs. -AC_ARG_WITH(physfs,[ --without-physfs don't use physfs (experimental) ] ) -if test "x$with_physfs" == "xno"; then - with_physfs=no -else +AC_ARG_WITH(physfs,[ --with-physfs use physfs (experimental) ] ) +if test "x$with_physfs" == "xyes"; then with_physfs=yes AC_CHECK_LIB([physfs], [PHYSFS_init], , AC_MSG_ERROR([ *** Unable to find PhysFS library (http://icculus.org/physfs/)])) AC_CHECK_HEADERS([physfs.h], , AC_MSG_ERROR([ *** PhysFS library found but cannot find headers (http://icculus.org/physfs/)])) +else + with_physfs=no fi AM_CONDITIONAL(USE_PHYSFS, test x$with_physfs = xyes) -- cgit v1.2.3-60-g2f50