diff options
| author | Wez Furlong <wez@php.net> | 2003-12-05 02:41:00 +0000 |
|---|---|---|
| committer | Wez Furlong <wez@php.net> | 2003-12-05 02:41:00 +0000 |
| commit | 6201a56070f04e7c2b8a9adad70cbe4c739485a1 (patch) | |
| tree | 85a7aabe8900c0d4af2a14fd4dd708569b723cd7 /sapi/isapi | |
| parent | b842917d842693f770fb7128589bb7e31f633f41 (diff) | |
| download | php-git-6201a56070f04e7c2b8a9adad70cbe4c739485a1.tar.gz | |
use /Ox flag for release build (all optimizations on).
If no php_build dir is specified, then look for either of the two
"standard" things in reasonable locations.
Allow CHECK_LIB to search for the "same" library using a ; separated
list of alternatives.
Tweak nsapi config and remove redundant or unused flags.
Add ZTS checks for both isapi and nsapi configs.
Diffstat (limited to 'sapi/isapi')
| -rw-r--r-- | sapi/isapi/config.w32 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sapi/isapi/config.w32 b/sapi/isapi/config.w32 index 957fd01635..1a6cfd3be8 100644 --- a/sapi/isapi/config.w32 +++ b/sapi/isapi/config.w32 @@ -4,6 +4,10 @@ ARG_ENABLE('isapi', 'Build ISAPI version of PHP', 'no'); if (PHP_ISAPI == "yes") { + if (PHP_ZTS == "no") { + ERROR("ISAPI module requires an --enable-zts build of PHP"); + } + SAPI('isapi', 'php4isapi.c', 'php' + PHP_VERSION + 'isapi.dll', '/D PHP4ISAPI_EXPORTS'); ADD_FLAG('LDFLAGS_ISAPI', '/DEF:sapi\\isapi\\php4isapi.def'); } |
