config.m4 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. dnl $Id$
  2. dnl config.m4 for extension pdo_sqlite
  3. dnl vim:et:sw=2:ts=2:
  4. PHP_ARG_WITH(pdo-sqlite, for sqlite 3 support for PDO,
  5. [ --without-pdo-sqlite[=DIR]
  6. PDO: sqlite 3 support. DIR is the sqlite base
  7. install directory [BUNDLED]], $PHP_PDO)
  8. if test "$PHP_PDO_SQLITE" != "no"; then
  9. if test "$PHP_PDO" = "no" && test "$ext_shared" = "no"; then
  10. AC_MSG_ERROR([PDO is not enabled! Add --enable-pdo to your configure line.])
  11. fi
  12. ifdef([PHP_CHECK_PDO_INCLUDES],
  13. [
  14. PHP_CHECK_PDO_INCLUDES
  15. ],[
  16. AC_MSG_CHECKING([for PDO includes])
  17. if test -f $abs_srcdir/include/php/ext/pdo/php_pdo_driver.h; then
  18. pdo_cv_inc_path=$abs_srcdir/ext
  19. elif test -f $abs_srcdir/ext/pdo/php_pdo_driver.h; then
  20. pdo_cv_inc_path=$abs_srcdir/ext
  21. elif test -f $prefix/include/php/ext/pdo/php_pdo_driver.h; then
  22. pdo_cv_inc_path=$prefix/include/php/ext
  23. else
  24. AC_MSG_ERROR([Cannot find php_pdo_driver.h.])
  25. fi
  26. AC_MSG_RESULT($pdo_cv_inc_path)
  27. ])
  28. php_pdo_sqlite_sources_core="pdo_sqlite.c sqlite_driver.c sqlite_statement.c"
  29. if test "$PHP_PDO_SQLITE" != "yes"; then
  30. SEARCH_PATH="$PHP_PDO_SQLITE /usr/local /usr" # you might want to change this
  31. SEARCH_FOR="/include/sqlite3.h" # you most likely want to change this
  32. if test -r $PHP_PDO_SQLITE/$SEARCH_FOR; then # path given as parameter
  33. PDO_SQLITE_DIR=$PHP_PDO_SQLITE
  34. else # search default path list
  35. AC_MSG_CHECKING([for sqlite3 files in default path])
  36. for i in $SEARCH_PATH ; do
  37. if test -r $i/$SEARCH_FOR; then
  38. PDO_SQLITE_DIR=$i
  39. AC_MSG_RESULT(found in $i)
  40. fi
  41. done
  42. fi
  43. if test -z "$PDO_SQLITE_DIR"; then
  44. AC_MSG_RESULT([not found])
  45. AC_MSG_ERROR([Please reinstall the sqlite3 distribution])
  46. fi
  47. PHP_ADD_INCLUDE($PDO_SQLITE_DIR/include)
  48. LIBNAME=sqlite3
  49. LIBSYMBOL=sqlite3_open
  50. PHP_CHECK_LIBRARY($LIBNAME,$LIBSYMBOL,
  51. [
  52. PHP_ADD_LIBRARY_WITH_PATH($LIBNAME, $PDO_SQLITE_DIR/$PHP_LIBDIR, PDO_SQLITE_SHARED_LIBADD)
  53. AC_DEFINE(HAVE_PDO_SQLITELIB,1,[ ])
  54. ],[
  55. AC_MSG_ERROR([wrong sqlite lib version or lib not found])
  56. ],[
  57. -L$PDO_SQLITE_DIR/$PHP_LIBDIR -lm
  58. ])
  59. PHP_CHECK_LIBRARY(sqlite3,sqlite3_key,[
  60. AC_DEFINE(HAVE_SQLITE3_KEY,1, [have commercial sqlite3 with crypto support])
  61. ])
  62. PHP_SUBST(PDO_SQLITE_SHARED_LIBADD)
  63. PHP_NEW_EXTENSION(pdo_sqlite, $php_pdo_sqlite_sources_core, $ext_shared,,-I$pdo_cv_inc_path)
  64. else
  65. # use bundled libs
  66. if test "$enable_maintainer_zts" = "yes"; then
  67. threadsafe_flags="-DSQLITE_THREADSAFE=1"
  68. else
  69. threadsafe_flags="-DSQLITE_THREADSAFE=0"
  70. fi
  71. other_flags="-DSQLITE_ENABLE_FTS3=1 -DSQLITE_CORE=1 -DSQLITE_ENABLE_COLUMN_METADATA=1"
  72. dnl As long as intl is not shared we can have ICU support
  73. if test "$PHP_INTL" = "yes" && test "$PHP_INTL_SHARED" != "yes"; then
  74. other_flags="$other_flags -DSQLITE_ENABLE_ICU=1"
  75. fi
  76. if test "$PHP_SQLITE3" != "yes"; then
  77. PHP_ADD_SOURCES(PHP_EXT_DIR(sqlite3), libsqlite/sqlite3.c)
  78. fi
  79. PHP_NEW_EXTENSION(pdo_sqlite,
  80. $php_pdo_sqlite_sources_core,
  81. $ext_shared,,-DPDO_SQLITE_BUNDLED=1 $other_flags $threadsafe_flags -I$pdo_cv_inc_path)
  82. PHP_SUBST(PDO_SQLITE_SHARED_LIBADD)
  83. PHP_ADD_EXTENSION_DEP(pdo_sqlite, sqlite3)
  84. PHP_ADD_INCLUDE($abs_srcdir/ext/sqlite3/libsqlite)
  85. AC_CHECK_FUNCS(usleep nanosleep)
  86. AC_CHECK_HEADERS(time.h)
  87. fi
  88. dnl Solaris fix
  89. PHP_CHECK_LIBRARY(rt, fdatasync, [PHP_ADD_LIBRARY(rt,, PDO_SQLITE_SHARED_LIBADD)])
  90. ifdef([PHP_ADD_EXTENSION_DEP],
  91. [
  92. PHP_ADD_EXTENSION_DEP(pdo_sqlite, pdo)
  93. ])
  94. fi