From: <br...@us...> - 2004-01-14 15:54:48
|
Update of /cvsroot/htoolkit/HSQL In directory sc8-pr-cvs1:/tmp/cvs-serv27946 Modified Files: configure.ac Log Message: Use mysql_config --include instead of mysql_config --cflags, since --cflags can contain flags that ghc does not accept Index: configure.ac =================================================================== RCS file: /cvsroot/htoolkit/HSQL/configure.ac,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** configure.ac 4 Jan 2004 16:25:00 -0000 1.7 --- configure.ac 14 Jan 2004 15:54:43 -0000 1.8 *************** *** 289,293 **** LDFLAGS="$LDFLAGS `$MYSQL_CONFIG --libs`" ! CPPFLAGS="$CPPFLAGS `$MYSQL_CONFIG --cflags`" AC_CHECK_HEADER(mysql/mysql.h,, AC_MSG_ERROR([mysql.h header not found])) --- 289,293 ---- LDFLAGS="$LDFLAGS `$MYSQL_CONFIG --libs`" ! CPPFLAGS="$CPPFLAGS `$MYSQL_CONFIG --include`" AC_CHECK_HEADER(mysql/mysql.h,, AC_MSG_ERROR([mysql.h header not found])) |