diff options
author | SATO Kentaro <kentaro@ranvis.com> | 2019-12-18 02:47:08 +0900 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2019-12-19 13:20:43 +0100 |
commit | 3e35b0898023e3e3c3350c21ed8ca69d0a1d7ec4 (patch) | |
tree | 77315d8307f3c7010c5deeb88c3c03eca32c56e9 /ext/pdo_pgsql | |
parent | 0f078f6e78c70ec544adea4b06c4aebfba356a8e (diff) | |
download | php-git-3e35b0898023e3e3c3350c21ed8ca69d0a1d7ec4.tar.gz |
Fix #78983: pdo_pgsql config.w32 cannot find libpq-fe.h
When configured with a path specified.
Diffstat (limited to 'ext/pdo_pgsql')
-rw-r--r-- | ext/pdo_pgsql/config.w32 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_pgsql/config.w32 b/ext/pdo_pgsql/config.w32 index 478b63ab70..47a8a0ecd9 100644 --- a/ext/pdo_pgsql/config.w32 +++ b/ext/pdo_pgsql/config.w32 @@ -4,7 +4,7 @@ ARG_WITH("pdo-pgsql", "PostgreSQL support for PDO", "no"); if (PHP_PDO_PGSQL != "no") { if (CHECK_LIB("libpq.lib", "pdo_pgsql", PHP_PDO_PGSQL) && - CHECK_HEADER_ADD_INCLUDE("libpq-fe.h", "CFLAGS_PDO_PGSQL", PHP_PDO_PGSQL + ";" + PHP_PHP_BUILD + "\\include\\pgsql;" + PHP_PHP_BUILD + "\\include\\libpq;")) { + CHECK_HEADER_ADD_INCLUDE("libpq-fe.h", "CFLAGS_PDO_PGSQL", PHP_PDO_PGSQL + "\\include;" + PHP_PHP_BUILD + "\\include\\pgsql;" + PHP_PHP_BUILD + "\\include\\libpq;")) { EXTENSION("pdo_pgsql", "pdo_pgsql.c pgsql_driver.c pgsql_statement.c"); if (CHECK_HEADER_ADD_INCLUDE("pg_config.h", "CFLAGS_PDO_PGSQL", PHP_PDO_PGSQL + ";" + PHP_PHP_BUILD + "\\include\\pgsql")) { |