summaryrefslogtreecommitdiff
path: root/sapi/apache/config.w32
blob: d9a69bfc125f78662ca44571f438882046b37510 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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") {

	if (!CHECK_HEADER_ADD_INCLUDE("httpd.h", "CFLAGS_APACHE", php_usual_include_suspects +
			";C:\\Program Files\\Apache Group\\Apache\\include" +
			";..\\php_build\\apache\\src\\include")) {
		ERROR("Could not find apache headers");
	}

	if (!CHECK_LIB("ApacheCore.lib", "apache", php_usual_lib_suspects +
			';C:\\Program Files\\Apache Group\\Apache\\libexec' +
			';..\\php_build\\apache\\src\\corer')) {
		ERROR("Could not find apache libraries");
	}

	SAPI('apache', 'mod_php5.c sapi_apache.c php_apache.c',
			'php' + PHP_VERSION + 'apache.dll',
			'/D APACHEPHP4_EXPORTS /D APACHE_READDIR_H');
}