Annotation of embedaddon/php/sapi/isapi/config.w32, revision 1.1

1.1     ! misho       1: // vim:ft=javascript
        !             2: // $Id: config.w32 259731 2008-05-14 03:13:17Z auroraeosrose $
        !             3: 
        !             4: ARG_ENABLE('isapi', 'Build ISAPI version of PHP', 'no');
        !             5: 
        !             6: if (PHP_ISAPI == "yes") {
        !             7:        if (PHP_ZTS == "no") {
        !             8:                WARNING("ISAPI module requires an --enable-zts build of PHP");
        !             9:        } else {
        !            10:                SAPI('isapi', 'php5isapi.c', 'php' + PHP_VERSION + 'isapi.dll', '/D PHP5ISAPI_EXPORTS');
        !            11:                ADD_FLAG('LDFLAGS_ISAPI', '/DEF:sapi\\isapi\\php5isapi.def');
        !            12:        }
        !            13: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>