Update of /cvsroot/pure-data/externals/zexy/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20107
Modified Files: configure.ac Log Message: on failfing to find m_pd.h output the entire config.log; more verbosity on adding /path/to/pd
Index: configure.ac =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/configure.ac,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** configure.ac 2 Oct 2006 15:24:48 -0000 1.22 --- configure.ac 11 Oct 2006 15:06:38 -0000 1.23 *************** *** 54,60 **** --- 54,62 ---- if test "x$with_pd" != "x"; then if test -d "${with_pd}/src"; then + AC_MSG_RESULT([adding ${with_pd}/src to INCLUDES]) INCLUDES="-I${with_pd}/src ${INCLUDES}" fi if test -d "${with_pd}/bin"; then + AC_MSG_RESULT([adding ${with_pd}/bin to LDFLAGS]) LDFLAGS="-L${with_pd}/bin ${LDFLAGS}" fi *************** *** 387,391 **** CFLAGS="${INCLUDES} ${CFLAGS}" INCLUDES="" ! AC_CHECK_HEADERS(m_pd.h, , AC_ERROR([m_pd.h is desperately needed! install pd and/or use "--with-pd=</path/to/pd/>" or --- 389,395 ---- CFLAGS="${INCLUDES} ${CFLAGS}" INCLUDES="" ! AC_CHECK_HEADERS(m_pd.h, , ! cat config.log ! AC_ERROR([m_pd.h is desperately needed! install pd and/or use "--with-pd=</path/to/pd/>" or