summaryrefslogtreecommitdiff
path: root/ext/mysqlnd/config9.m4
blob: 83b3b019e8736d82b8e07022c5929c0bf06a45b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
dnl
dnl $Id$
dnl config.m4 for mysqlnd driver


PHP_ARG_ENABLE(mysqlnd_threading, whether to enable threaded fetch in mysqlnd,
[  --enable-mysqlnd-threading  mysqlnd: Enable threaded fetch], no, no)


dnl If some extension uses mysqlnd it will get compiled in PHP core
if test "$PHP_MYSQLND_ENABLED" = "yes"; then
  mysqlnd_sources="mysqlnd.c mysqlnd_charset.c mysqlnd_wireprotocol.c \
                   mysqlnd_ps.c mysqlnd_loaddata.c mysqlnd_palloc.c \
                   mysqlnd_ps_codec.c mysqlnd_statistics.c mysqlnd_qcache.c\
				   mysqlnd_result.c mysqlnd_result_meta.c mysqlnd_debug.c\
				   mysqlnd_block_alloc.c php_mysqlnd.c"

  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])
  AC_DEFINE([HAVE_MYSQLND], 1, [Whether mysqlnd is enabled])

  dnl Windows uses config.w32 thus this code is safe for now
  if test "$PHP_MYSQLND_THREADING" = "yes"; then
    PHP_BUILD_THREAD_SAFE
    AC_DEFINE([MYSQLND_THREADED], 1, [Whether mysqlnd threading is enabled])
  fi


  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
  ],[
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
  ])
fi