summaryrefslogtreecommitdiff
path: root/ext/mysqli/config.w32
blob: 03d28b1990a624f0c148aafd0a245515e278fe7c (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
43
44
// $Id$
// vim:ft=javascript

// Note: The extension name is "mysqli", you enable it with "--with-mysqli".
// Passing value "mysqlnd" to it enables the bundled
// client library to connect to the MySQL server, i.e. no external MySQL
// client library is needed to perform the build.

ARG_WITH("mysqli", "MySQLi support", "no");

if (PHP_MYSQLI != "no") {

  mysqli_source =
        "mysqli.c " +
        "mysqli_api.c " +
        "mysqli_driver.c " +
        "mysqli_embedded.c " +
        "mysqli_exception.c " +
        "mysqli_fe.c " +
        "mysqli_nonapi.c " +
        "mysqli_prop.c " +
        "mysqli_report.c " +
        "mysqli_warning.c";

  if (PHP_MYSQLI != "mysqlnd") {
    if (CHECK_LIB("libmysql.lib", "mysqli", PHP_MYSQLI) &&
        CHECK_HEADER_ADD_INCLUDE("mysql.h", "CFLAGS_MYSQLI", PHP_MYSQLI + 
                                 "\\include;" + PHP_PHP_BUILD +
                                 "\\include\\mysql;" + PHP_MYSQLI)) {
      // No "mysqli_repl.c" when using "mysqlnd"
      mysqli_extra_sources = "mysqli_repl.c";
      EXTENSION("mysqli", mysqli_source + " " + mysqli_extra_sources);
      AC_DEFINE('HAVE_MYSQLILIB', 1, 'Have MySQLi library');
    } else {
      WARNING("mysqli not enabled; libraries and headers not found");
    }

  } else {

    EXTENSION("mysqli", mysqli_source);
    AC_DEFINE('HAVE_MYSQLILIB', 1, 'Have MySQLi library');
    ADD_EXTENSION_DEP('mysqli', 'mysqlnd', true);
  }
}