From adcd591b695af587f2d1a58361af46c68b8aae14 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sat, 17 Aug 2002 13:54:54 +0000 Subject: [PATCH] Hopefully fix broken autoconfs. --- configure.in | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/configure.in b/configure.in index 3c51dfef..0d234847 100644 --- a/configure.in +++ b/configure.in @@ -70,15 +70,15 @@ AC_ARG_ENABLE(debug, , enable_debug=yes) if test x$enable_debug = xyes; then if test x$ac_cv_prog_cc_g = xyes; then - CFLAGS="-g -O0" + PHYSFSCFLAGS="-g -O0" else - CFLAGS="-O0" + PHYSFSCFLAGS="-O0" fi - CFLAGS="$CFLAGS -Werror -Wall" + PHYSFSCFLAGS="$PHYSFSCFLAGS -Werror -Wall" AC_DEFINE([DEBUG], 1, [define if debug build is enabled]) AC_DEFINE([DEBUG_CHATTER], 1, [define if debug chatter is enabled]) else - CFLAGS="-O2" + PHYSFSCFLAGS="-O2" AC_DEFINE([NDEBUG], 1, [define if debug build is disabled]) fi @@ -325,7 +325,7 @@ AC_MSG_RESULT([$this_is_beos]) AC_MSG_CHECKING([if this is Cygwin]) if test x$build_os = xcygwin; then this_is_cygwin=yes - CFLAGS="$CFLAGS -DWIN32" + PHYSFSCFLAGS="$PHYSFSCFLAGS -DWIN32" enable_pthreads=no have_non_posix_threads=yes else @@ -351,7 +351,7 @@ if test x$we_have_sed = xyes; then x=`echo $build_os |tr A-Z a-z |sed "s/.*freebsd.*/freebsd/"` if test x$x = xfreebsd; then this_is_freebsd=yes - LDFLAGS="$LDFLAGS -pthread" + PHYSFSLDFLAGS="$PHYSFSLDFLAGS -pthread" fi AC_MSG_RESULT([$this_is_freebsd]) @@ -363,7 +363,7 @@ if test x$we_have_sed = xyes; then x=`echo $build_os |tr A-Z a-z |sed "s/.*openbsd.*/openbsd/"` if test x$x = xopenbsd; then this_is_openbsd=yes - LDFLAGS="$LDFLAGS -pthread" + PHYSFSLDFLAGS="$PHYSFSLDFLAGS -pthread" fi AC_MSG_RESULT([$this_is_openbsd]) @@ -388,7 +388,7 @@ if test x$we_have_sed = xyes; then x=`echo $build_os |tr A-Z a-z |sed "s/.*os2.*/os2/"` if test x$x = xos2; then this_is_os2=yes - CFLAGS="$CFLAGS -DOS2" + PHYSFSCFLAGS="$PHYSFSCFLAGS -DOS2" fi AC_MSG_RESULT([$this_is_os2]) @@ -440,8 +440,8 @@ AC_CHECK_FUNCS([memset strrchr]) AC_CHECK_SIZEOF(int, 4) -CFLAGS="$CFLAGS -D_REENTRANT -D_THREAD_SAFE" -LDFLAGS="$LDFLAGS -no-undefined" +CFLAGS="$CFLAGS $PHYSFSCFLAGS -D_REENTRANT -D_THREAD_SAFE" +LDFLAGS="$LDFLAGS $PHYSFSLDFLAGS -no-undefined" dnl Add Makefile conditionals AM_CONDITIONAL(BUILD_ZLIB, test x$enable_internal_zlib = xyes)