diff options
author | Anatol Belski <ab@php.net> | 2015-03-23 13:41:00 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2015-03-23 15:09:04 +0100 |
commit | 5539cb59721db79f548650c139b8195870cf24e2 (patch) | |
tree | 5da6cc77e5b504d22f55b49434c224bdabbdad91 | |
parent | 7a137154590e2a689076ee1ccaf2728da28def4e (diff) | |
download | php-git-5539cb59721db79f548650c139b8195870cf24e2.tar.gz |
indicate if an ext was forced shared globally
-rw-r--r-- | win32/build/confutils.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/win32/build/confutils.js b/win32/build/confutils.js index dc8170738f..d3258af291 100644 --- a/win32/build/confutils.js +++ b/win32/build/confutils.js @@ -1261,6 +1261,7 @@ function EXTENSION(extname, file_list, shared, cflags, dllname, obj_dir) if (shared == null) { if (force_all_shared()) { shared = true; + eval("PHP_" + EXT + "_SHARED = true;"); } else { eval("shared = PHP_" + EXT + "_SHARED;"); } |