config0.m4 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. dnl config.m4 for extension sqlite3
  2. dnl vim:et:ts=2:sw=2
  3. PHP_ARG_WITH(sqlite3, whether to enable the SQLite3 extension,
  4. [ --without-sqlite3[=DIR] Do not include SQLite3 support. DIR is the prefix to
  5. SQLite3 installation directory.], yes)
  6. if test $PHP_SQLITE3 != "no"; then
  7. sqlite3_extra_sources=""
  8. PHP_SQLITE3_CFLAGS=" -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 "
  9. dnl when running phpize enable_maintainer_zts is not available
  10. if test -z "$enable_maintainer_zts"; then
  11. if test -f "$phpincludedir/main/php_config.h"; then
  12. ZTS=`grep '#define ZTS' $phpincludedir/main/php_config.h|$SED 's/#define ZTS//'`
  13. if test "$ZTS" -eq "1"; then
  14. enable_maintainer_zts="yes"
  15. fi
  16. fi
  17. fi
  18. if test $PHP_SQLITE3 != "yes"; then
  19. AC_MSG_CHECKING([for sqlite3 files in default path])
  20. for i in $PHP_SQLITE3 /usr/local /usr; do
  21. if test -r $i/include/sqlite3.h; then
  22. SQLITE3_DIR=$i
  23. AC_MSG_RESULT(found in $i)
  24. break
  25. fi
  26. done
  27. if test -z "$SQLITE3_DIR"; then
  28. AC_MSG_RESULT([not found])
  29. AC_MSG_ERROR([Please reinstall the sqlite distribution from http://www.sqlite.org])
  30. fi
  31. AC_MSG_CHECKING([for SQLite 3.3.9+])
  32. PHP_CHECK_LIBRARY(sqlite3, sqlite3_prepare_v2, [
  33. AC_MSG_RESULT(found)
  34. PHP_ADD_LIBRARY_WITH_PATH(sqlite3, $SQLITE3_DIR/$PHP_LIBDIR, SQLITE3_SHARED_LIBADD)
  35. PHP_ADD_INCLUDE($SQLITE3_DIR/include)
  36. ],[
  37. AC_MSG_RESULT([not found])
  38. AC_MSG_ERROR([Please install SQLite 3.3.9 first or check libsqlite3 is present])
  39. ],[
  40. -L$SQLITE3_DIR/$PHP_LIBDIR -lm
  41. ])
  42. PHP_CHECK_LIBRARY(sqlite3,sqlite3_key,[
  43. AC_DEFINE(HAVE_SQLITE3_KEY, 1, [have commercial sqlite3 with crypto support])
  44. ])
  45. PHP_CHECK_LIBRARY(sqlite3,sqlite3_column_table_name,[
  46. AC_DEFINE(SQLITE_ENABLE_COLUMN_METADATA, 1, [have sqlite3 with column metadata enabled])
  47. ])
  48. PHP_CHECK_LIBRARY(sqlite3,sqlite3_errstr,[
  49. AC_DEFINE(HAVE_SQLITE3_ERRSTR, 1, [have sqlite3_errstr function])
  50. ])
  51. PHP_CHECK_LIBRARY(sqlite3,sqlite3_load_extension,
  52. [],
  53. [AC_DEFINE(SQLITE_OMIT_LOAD_EXTENSION, 1, [have sqlite3 with extension support])
  54. ])
  55. else
  56. AC_MSG_CHECKING([bundled sqlite3 library])
  57. AC_MSG_RESULT([yes])
  58. sqlite3_extra_sources="libsqlite/sqlite3.c"
  59. if test "$enable_maintainer_zts" = "yes"; then
  60. threadsafe_flags="-DSQLITE_THREADSAFE=1"
  61. else
  62. threadsafe_flags="-DSQLITE_THREADSAFE=0"
  63. fi
  64. if test "$ZEND_DEBUG" = "yes"; then
  65. debug_flags="-DSQLITE_DEBUG=1"
  66. fi
  67. other_flags="-DSQLITE_ENABLE_FTS3=1 -DSQLITE_ENABLE_FTS4=1 -DSQLITE_ENABLE_FTS5=1 -DSQLITE_ENABLE_JSON1=1 -DSQLITE_CORE=1 -DSQLITE_ENABLE_COLUMN_METADATA=1"
  68. dnl As long as intl is not shared we can have ICU support
  69. if test "$PHP_INTL" = "yes" && test "$PHP_INTL_SHARED" != "yes"; then
  70. other_flags="$other_flags -DSQLITE_ENABLE_ICU=1"
  71. fi
  72. AC_DEFINE(HAVE_SQLITE3_ERRSTR, 1, [have sqlite3_errstr function])
  73. PHP_SQLITE3_CFLAGS="-I@ext_srcdir@/libsqlite $other_flags $threadsafe_flags $debug_flags"
  74. PHP_INSTALL_HEADERS([ext/sqlite3/libsqlite/sqlite3.h])
  75. fi
  76. AC_DEFINE(HAVE_SQLITE3,1,[ ])
  77. sqlite3_sources="sqlite3.c $sqlite3_extra_sources"
  78. PHP_NEW_EXTENSION(sqlite3, $sqlite3_sources, $ext_shared,,$PHP_SQLITE3_CFLAGS)
  79. PHP_ADD_BUILD_DIR([$ext_builddir/libsqlite])
  80. PHP_SUBST(SQLITE3_SHARED_LIBADD)
  81. fi