X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-pq;a=blobdiff_plain;f=config.m4;h=5c0e1be1b769f85024d1d5f6c313ce336eef01a6;hp=8301db03f49553b6e76b66f4a063b597bea3ee2c;hb=bffdeef967c851f5046a1dbed426f45611e507d0;hpb=daf2e8ab5eb324b0a0447e87a92afb6788a722a7 diff --git a/config.m4 b/config.m4 index 8301db0..5c0e1be 100644 --- a/config.m4 +++ b/config.m4 @@ -1,38 +1,2 @@ -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" - if test "$PHP_PQ" != "yes"; then - SEARCH_PATH="$PHP_PQ $SEARCH_PATH" - fi - for i in $SEARCH_PATH; do - AC_MSG_CHECKING(for $i/include/libpq-events.h) - if test -f "$i/include/libpq-events.h"; then - PQ_DIR=$i - AC_MSG_RESULT(yep) - break - fi - AC_MSG_RESULT(nope) - done - - if test -z "$PQ_DIR"; then - AC_MSG_ERROR(could not find include/libpq-events.h) - fi - PHP_ADD_INCLUDE($PQ_DIR/include) - - PQ_SYM=PQregisterEventProc - PHP_CHECK_LIBRARY(pq, $PQ_SYM, [ - PHP_ADD_LIBRARY_WITH_PATH(pq, $PQ_DIR/$PHP_LIBDIR, PQ_SHARED_LIBADD) - PHP_SUBST(PQ_SHARED_LIBADD) - ],[ - AC_MSG_ERROR(could not find $PQ_SYM in -lpq) - ],[ - -L$PQ_DIR/$PHP_LIBDIR - ]) - PHP_CHECK_LIBRARY(pq, PQlibVersion, [AC_DEFINE(HAVE_PQLIBVERSION, 1, Have PQlibVersion)]) - - PHP_NEW_EXTENSION(pq, php_pq.c, $ext_shared) - PHP_ADD_EXTENSION_DEP(pq, raphf) -fi - +dnl phpize stub of config9.m4 for pecl/pq +sinclude(config9.m4)