php-src/sapi/apache/config.w32

28 lines
959 B
Plaintext
Raw Normal View History

// vim:ft=javascript
// $Id$
ARG_ENABLE('apache', 'Build Apache 1.3.x version of PHP', 'yes');
ARG_WITH('apache-includes', 'Where to find Apache 1.3 headers', null);
ARG_WITH('apache-libs', 'Where to find Apache 1.3 libraries', null);
if (PHP_APACHE == "yes") {
2003-12-03 02:47:45 +00:00
if (!CHECK_HEADER_ADD_INCLUDE("httpd.h", "CFLAGS_APACHE", php_usual_include_suspects +
2003-12-03 14:29:45 +00:00
";" + PROGRAM_FILES + "\\Apache Group\\Apache\\include" +
2003-12-03 02:47:45 +00:00
";..\\php_build\\apache\\src\\include")) {
ERROR("Could not find apache headers");
}
2003-12-03 02:47:45 +00:00
if (!CHECK_LIB("ApacheCore.lib", "apache", php_usual_lib_suspects +
2003-12-03 14:29:45 +00:00
';' + PROGRAM_FILES + '\\Apache Group\\Apache\\libexec' +
2003-12-03 02:47:45 +00:00
';..\\php_build\\apache\\src\\corer')) {
ERROR("Could not find apache libraries");
}
2003-12-03 14:29:45 +00:00
// We need to play tricks to get our readdir.h used by apache
// headers
SAPI('apache', 'mod_php5.c sapi_apache.c php_apache.c',
'php' + PHP_VERSION + 'apache.dll',
2003-12-03 14:29:45 +00:00
'/D APACHEPHP4_EXPORTS /D APACHE_READDIR_H /I win32');
}