config.m4 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. dnl config.m4 for extension pdo_pgsql
  2. dnl vim:et:sw=2:ts=2:
  3. PHP_ARG_WITH(pdo-pgsql,for PostgreSQL support for PDO,
  4. [ --with-pdo-pgsql[=DIR] PDO: PostgreSQL support. DIR is the PostgreSQL base
  5. install directory or the path to pg_config])
  6. if test "$PHP_PDO_PGSQL" != "no"; then
  7. if test "$PHP_PDO" = "no" && test "$ext_shared" = "no"; then
  8. AC_MSG_ERROR([PDO is not enabled! Add --enable-pdo to your configure line.])
  9. fi
  10. PHP_EXPAND_PATH($PGSQL_INCLUDE, PGSQL_INCLUDE)
  11. AC_MSG_CHECKING(for pg_config)
  12. for i in $PHP_PDO_PGSQL $PHP_PDO_PGSQL/bin /usr/local/pgsql/bin /usr/local/bin /usr/bin ""; do
  13. if test -x $i/pg_config; then
  14. PG_CONFIG="$i/pg_config"
  15. break;
  16. fi
  17. done
  18. if test -n "$PG_CONFIG"; then
  19. AC_MSG_RESULT([$PG_CONFIG])
  20. PGSQL_INCLUDE=`$PG_CONFIG --includedir`
  21. PGSQL_LIBDIR=`$PG_CONFIG --libdir`
  22. AC_DEFINE(HAVE_PG_CONFIG_H,1,[Whether to have pg_config.h])
  23. else
  24. AC_MSG_RESULT(not found)
  25. if test "$PHP_PDO_PGSQL" = "yes"; then
  26. PGSQL_SEARCH_PATHS="/usr /usr/local /usr/local/pgsql"
  27. else
  28. PGSQL_SEARCH_PATHS=$PHP_PDO_PGSQL
  29. fi
  30. for i in $PGSQL_SEARCH_PATHS; do
  31. for j in include include/pgsql include/postgres include/postgresql ""; do
  32. if test -r "$i/$j/libpq-fe.h"; then
  33. PGSQL_INC_BASE=$i
  34. PGSQL_INCLUDE=$i/$j
  35. if test -r "$i/$j/pg_config.h"; then
  36. AC_DEFINE(HAVE_PG_CONFIG_H,1,[Whether to have pg_config.h])
  37. fi
  38. fi
  39. done
  40. for j in $PHP_LIBDIR $PHP_LIBDIR/pgsql $PHP_LIBDIR/postgres $PHP_LIBDIR/postgresql ""; do
  41. if test -f "$i/$j/libpq.so" || test -f "$i/$j/libpq.a"; then
  42. PGSQL_LIBDIR=$i/$j
  43. fi
  44. done
  45. done
  46. fi
  47. if test -z "$PGSQL_INCLUDE"; then
  48. AC_MSG_ERROR(Cannot find libpq-fe.h. Please specify correct PostgreSQL installation path)
  49. fi
  50. if test -z "$PGSQL_LIBDIR"; then
  51. AC_MSG_ERROR(Cannot find libpq.so. Please specify correct PostgreSQL installation path)
  52. fi
  53. if test -z "$PGSQL_INCLUDE" -a -z "$PGSQL_LIBDIR" ; then
  54. AC_MSG_ERROR([Unable to find libpq anywhere under $PGSQL_SEARCH_PATHS])
  55. fi
  56. AC_DEFINE(HAVE_PDO_PGSQL,1,[Whether to build PostgreSQL for PDO support or not])
  57. AC_MSG_CHECKING([for openssl dependencies])
  58. grep openssl $PGSQL_INCLUDE/libpq-fe.h >/dev/null 2>&1
  59. if test $? -eq 0 ; then
  60. AC_MSG_RESULT([yes])
  61. dnl First try to find pkg-config
  62. AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
  63. if test -x "$PKG_CONFIG" && $PKG_CONFIG --exists openssl; then
  64. PDO_PGSQL_CFLAGS=`$PKG_CONFIG openssl --cflags`
  65. fi
  66. else
  67. AC_MSG_RESULT([no])
  68. fi
  69. old_LIBS=$LIBS
  70. old_LDFLAGS=$LDFLAGS
  71. LDFLAGS="-L$PGSQL_LIBDIR $LDFLAGS"
  72. AC_CHECK_LIB(pq, PQprepare,, AC_MSG_ERROR([Unable to build the PDO PostgreSQL driver: a newer libpq is required]))
  73. AC_CHECK_LIB(pq, PQexecParams,, AC_MSG_ERROR([Unable to build the PDO PostgreSQL driver: a newer libpq is required]))
  74. AC_CHECK_LIB(pq, PQescapeStringConn,, AC_MSG_ERROR([Unable to build the PDO PostgreSQL driver: a newer libpq is required]))
  75. AC_CHECK_LIB(pq, PQescapeByteaConn,, AC_MSG_ERROR([Unable to build the PDO PostgreSQL driver: a newer libpq is required]))
  76. LIBS=$old_LIBS
  77. LDFLAGS=$old_LDFLAGS
  78. PHP_ADD_LIBRARY_WITH_PATH(pq, $PGSQL_LIBDIR, PDO_PGSQL_SHARED_LIBADD)
  79. PHP_SUBST(PDO_PGSQL_SHARED_LIBADD)
  80. PHP_ADD_INCLUDE($PGSQL_INCLUDE)
  81. ifdef([PHP_CHECK_PDO_INCLUDES],
  82. [
  83. PHP_CHECK_PDO_INCLUDES
  84. ],[
  85. AC_MSG_CHECKING([for PDO includes])
  86. if test -f $abs_srcdir/include/php/ext/pdo/php_pdo_driver.h; then
  87. pdo_cv_inc_path=$abs_srcdir/ext
  88. elif test -f $abs_srcdir/ext/pdo/php_pdo_driver.h; then
  89. pdo_cv_inc_path=$abs_srcdir/ext
  90. elif test -f $phpincludedir/ext/pdo/php_pdo_driver.h; then
  91. pdo_cv_inc_path=$phpincludedir/ext
  92. else
  93. AC_MSG_ERROR([Cannot find php_pdo_driver.h.])
  94. fi
  95. AC_MSG_RESULT($pdo_cv_inc_path)
  96. ])
  97. PHP_NEW_EXTENSION(pdo_pgsql, pdo_pgsql.c pgsql_driver.c pgsql_statement.c, $ext_shared,,-I$pdo_cv_inc_path $PDO_PGSQL_CFLAGS)
  98. ifdef([PHP_ADD_EXTENSION_DEP],
  99. [
  100. PHP_ADD_EXTENSION_DEP(pdo_pgsql, pdo)
  101. ])
  102. fi