diff options
author | y-uti <y.uchiyama.1015@gmail.com> | 2016-03-26 18:56:25 +0900 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2016-07-25 09:46:00 +0200 |
commit | 6ed71363714a6225a69d748d3b8ab2e565e1ea44 (patch) | |
tree | ca7f9bb4f812ee22eeb39d5effc08c66ec77f52f /win32 | |
parent | 138fea83fe880749005cf764e9843feb56331a9d (diff) | |
download | php-git-6ed71363714a6225a69d748d3b8ab2e565e1ea44.tar.gz |
Make phpize use PHP_PREFIX as the default location (windows)
The default path to where an extension is installed should be
PHP_PREFIX/ext on windows.
Diffstat (limited to 'win32')
-rw-r--r-- | win32/build/config.w32.phpize.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/build/config.w32.phpize.in b/win32/build/config.w32.phpize.in index 09e82d73bf..70b4dc5e83 100644 --- a/win32/build/config.w32.phpize.in +++ b/win32/build/config.w32.phpize.in @@ -40,7 +40,7 @@ DEFINE("BASE_INCLUDES", "/I " + PHP_DIR + "/include /I " + PHP_DIR + "/include/m toolset_setup_common_cflags();
-ARG_WITH('prefix', 'PHP installation prefix', '');
+ARG_WITH('prefix', 'PHP installation prefix', PHP_PREFIX); ARG_WITH('mp', 'Tell Visual Studio use up to [n,auto,disable] processes for compilation', 'auto');
var PHP_MP_DISABLED = true;
if (VS_TOOLSET && PHP_MP != 'disable') {
|