summaryrefslogtreecommitdiff
path: root/ext/mysqlnd/config9.m4
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>2009-09-22 14:43:37 +0000
committerAndrey Hristov <andrey@php.net>2009-09-22 14:43:37 +0000
commit26f5344ed00de440e58c6ca4b58723ea49aafddd (patch)
treeb08f164e7ef6d4196e7fb80cb6a07d6263b780fa /ext/mysqlnd/config9.m4
parente4be0b369c46d3cb30ec180188ed8a56e8948c2b (diff)
downloadphp-git-26f5344ed00de440e58c6ca4b58723ea49aafddd.tar.gz
Check for the different types and create the
corresponding configuration file, so it can be used by mysqli, even if mysqlnd is not enabled at all.
Diffstat (limited to 'ext/mysqlnd/config9.m4')
-rw-r--r--ext/mysqlnd/config9.m47
1 files changed, 4 insertions, 3 deletions
diff --git a/ext/mysqlnd/config9.m4 b/ext/mysqlnd/config9.m4
index 46b9699b54..591865a80f 100644
--- a/ext/mysqlnd/config9.m4
+++ b/ext/mysqlnd/config9.m4
@@ -18,8 +18,6 @@ if test "$PHP_MYSQLND_ENABLED" = "yes"; then
PHP_NEW_EXTENSION(mysqlnd, $mysqlnd_sources, no)
PHP_ADD_BUILD_DIR([ext/mysqlnd], 1)
- PHP_INSTALL_HEADERS([ext/mysqlnd])
- PHP_INSTALL_HEADERS([$ext_builddir/php_mysqlnd_config.h])
dnl Windows uses config.w32 thus this code is safe for now
if test "$PHP_MYSQLND_THREADING" = "yes"; then
@@ -27,6 +25,10 @@ if test "$PHP_MYSQLND_ENABLED" = "yes"; then
AC_DEFINE([MYSQLND_THREADED], 1, [Use mysqlnd internal threading])
fi
+fi
+ PHP_INSTALL_HEADERS([ext/mysqlnd])
+ PHP_INSTALL_HEADERS([$ext_builddir/php_mysqlnd_config.h])
+
dnl This creates a file so it has to be after above macros
PHP_CHECK_TYPES([int8 uint8 int16 uint16 int32 uint32 uchar ulong int8_t uint8_t int16_t uint16_t int32_t uint32_t int64_t uint64_t], [
$ext_builddir/php_mysqlnd_config.h
@@ -38,4 +40,3 @@ if test "$PHP_MYSQLND_ENABLED" = "yes"; then
#include <stdint.h>
#endif
])
-fi