X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-pq;a=blobdiff_plain;f=config.m4;h=8301db03f49553b6e76b66f4a063b597bea3ee2c;hp=7abff92cb0bb96fc71a3cfaf2f35e8c631c2f7ed;hb=daf2e8ab5eb324b0a0447e87a92afb6788a722a7;hpb=dad016bcee4340d19f604e51b12d97266dbacefd diff --git a/config.m4 b/config.m4 index 7abff92..8301db0 100644 --- a/config.m4 +++ b/config.m4 @@ -1,5 +1,5 @@ -PHP_ARG_WITH(pq, for pq support, -[ --with-pq Include pq support]) +PHP_ARG_WITH(pq, [whether to enable libpq (PostgreSQL) support], +[ --with-pq Include libpq support]) if test "$PHP_PQ" != "no"; then SEARCH_PATH="/usr/local /usr /opt" @@ -17,7 +17,7 @@ if test "$PHP_PQ" != "no"; then done if test -z "$PQ_DIR"; then - AC_MSG_FAILURE(could not find include/libpq-events.h) + AC_MSG_ERROR(could not find include/libpq-events.h) fi PHP_ADD_INCLUDE($PQ_DIR/include) @@ -30,10 +30,9 @@ if test "$PHP_PQ" != "no"; then ],[ -L$PQ_DIR/$PHP_LIBDIR ]) - PHP_CHECK_LIBRARY(pq, PQlibVersion, AC_DEFINE(HAVE_PQLIBVERSION, 1, Have PQlibVersion)) + PHP_CHECK_LIBRARY(pq, PQlibVersion, [AC_DEFINE(HAVE_PQLIBVERSION, 1, Have PQlibVersion)]) - PQ_SRC="src/php_pq.c" - PHP_NEW_EXTENSION(pq, $PQ_SRC, $ext_shared) - PHP_ADD_BUILD_DIR($ext_builddir/src, 1) + PHP_NEW_EXTENSION(pq, php_pq.c, $ext_shared) + PHP_ADD_EXTENSION_DEP(pq, raphf) fi