Update of /cvsroot/pure-data/externals/zexy/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26691
Modified Files: configure.ac Log Message: drop INCLUDES; integrate it into CFLAGS/CPPFLAGS
Index: configure.ac =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/configure.ac,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** configure.ac 11 Oct 2006 15:06:38 -0000 1.23 --- configure.ac 16 Oct 2006 14:49:39 -0000 1.24 *************** *** 78,81 **** --- 78,86 ---- fi
+ + CFLAGS="${INCLUDES} ${CFLAGS}" + CPPFLAGS="${INCLUDES} ${CPPFLAGS}" + INCLUDES="" + dnl Checks for libraries. dnl Replace `main' with a function in -lc: *************** *** 195,199 **** } EOF ! if $CC $INCLUDES -o conftest.o conftest.c > /dev/null 2>&1 then PD_VERSION=`./conftest.o` --- 200,204 ---- } EOF ! if $CC $CFLAGS -o conftest.o conftest.c > /dev/null 2>&1 then PD_VERSION=`./conftest.o` *************** *** 239,243 **** EOF
! if $CC $INCLUDES $DFLAGS -o conftest.o conftest.c > /dev/null 2>&1 then LIBRARY_VERSION=$(./conftest.o) --- 244,248 ---- EOF
! if $CC $CFLAGS $LDFLAGS -o conftest.o conftest.c > /dev/null 2>&1 then LIBRARY_VERSION=$(./conftest.o) *************** *** 369,373 **** EOF
! if $CC $INCLUDES -o conftest.o conftest.c > /dev/null 2>&1 then AC_DEFINE([Z_WANT_LPT]) --- 374,378 ---- EOF
! if $CC $CFLAGS -o conftest.o conftest.c > /dev/null 2>&1 then AC_DEFINE([Z_WANT_LPT]) *************** *** 387,392 ****
- CFLAGS="${INCLUDES} ${CFLAGS}" - INCLUDES="" AC_CHECK_HEADERS(m_pd.h, , cat config.log --- 392,395 ----