From: <kr_...@us...> - 2003-09-07 09:09:51
|
Update of /cvsroot/htoolkit/HSQL In directory sc8-pr-cvs1:/tmp/cvs-serv25631 Modified Files: configure.ac Log Message: Add additional test for PostgreSQL Index: configure.ac =================================================================== RCS file: /cvsroot/htoolkit/HSQL/configure.ac,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** configure.ac 6 Sep 2003 22:57:23 -0000 1.4 --- configure.ac 7 Sep 2003 09:09:47 -0000 1.5 *************** *** 180,183 **** --- 180,184 ---- AC_CHECK_HEADER(libpq-fe.h,,AC_MSG_ERROR([libpq-fe.h header not found])) + AC_CHECK_HEADER(postgres.h,,AC_MSG_ERROR([postgres.h header not found])) AC_CHECK_LIB(pq,PQsetdbLogin,,AC_MSG_ERROR([libpq.a library not found])) fi *************** *** 191,195 **** if test "$MYSQL_CONFIG" = "" || test ! -f $MYSQL_CONFIG; then ! AC_MSG_ERROR([mysql_config is required to build PostgreSQL binding]) fi --- 192,196 ---- if test "$MYSQL_CONFIG" = "" || test ! -f $MYSQL_CONFIG; then ! AC_MSG_ERROR([mysql_config is required to build MySQL binding]) fi |