diff options
author | Jani Taskinen <jani@php.net> | 2009-09-24 18:01:17 +0000 |
---|---|---|
committer | Jani Taskinen <jani@php.net> | 2009-09-24 18:01:17 +0000 |
commit | 2c90fb8ea2df1f6ca17f5649b843db6c8c75a727 (patch) | |
tree | 6c16a3d00165621310147d88bd6d92d3415f6915 /ext/mysqlnd/mysqlnd_portability.h | |
parent | c3d66dbfedc5e99f9c1fbcffa97b78f904d0cbf7 (diff) | |
download | php-git-2c90fb8ea2df1f6ca17f5649b843db6c8c75a727.tar.gz |
- Fix the build issue with php_mysqlnd_config.h ending up in wrong build directory
Diffstat (limited to 'ext/mysqlnd/mysqlnd_portability.h')
-rw-r--r-- | ext/mysqlnd/mysqlnd_portability.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mysqlnd/mysqlnd_portability.h b/ext/mysqlnd/mysqlnd_portability.h index a4945a9da5..43cb505861 100644 --- a/ext/mysqlnd/mysqlnd_portability.h +++ b/ext/mysqlnd/mysqlnd_portability.h @@ -33,9 +33,9 @@ This file is public domain and comes with NO WARRANTY of any kind */ #endif /* __CYGWIN__ */ #if defined(_WIN32) || defined(_WIN64) || defined(__WIN32__) || defined(WIN32) -# include <ext/mysqlnd/config-win.h> +# include "ext/mysqlnd/config-win.h" #else -# include "ext/mysqlnd/php_mysqlnd_config.h" +# include <ext/mysqlnd/php_mysqlnd_config.h> #endif /* _WIN32... */ #ifdef HAVE_SYS_TYPES_H |