Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
executable file
·
39 lines (35 loc) · 1.66 KB

File metadata and controls

executable file
·
39 lines (35 loc) · 1.66 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
27
28
29
30
31
32
33
34
35
36
37
38
39
// vim:ft=javascript
// $Id$
ARG_ENABLE('apache2filter', 'Build Apache 2.x filter', 'no');
if (PHP_APACHE2FILTER != "no") {
if (PHP_ZTS == "no") {
WARNING("Apache2 module requires an --enable-zts build of PHP on windows");
} else if (CHECK_HEADER_ADD_INCLUDE("httpd.h", "CFLAGS_APACHE2FILTER", PHP_PHP_BUILD + "\\include\\apache2") &&
CHECK_LIB("libhttpd.lib", "apache2filter", PHP_PHP_BUILD + "\\lib\\apache2") &&
CHECK_LIB("libapr.lib", "apache2filter", PHP_PHP_BUILD + "\\lib\\apache2") &&
CHECK_LIB("libaprutil.lib", "apache2filter", PHP_PHP_BUILD + "\\lib\\apache2")
) {
SAPI('apache2filter', 'sapi_apache2.c apache_config.c php_functions.c',
'php' + PHP_VERSION + 'apache2_filter.dll',
'/D PHP_APACHE2_EXPORTS /I win32');
} else {
WARNING("Could not find apache2 filter libraries/headers");
}
}
ARG_ENABLE('apache2-2filter', 'Build Apache 2.2.x filter', 'no');
if (PHP_APACHE2_2FILTER != "no") {
if (PHP_ZTS == "no") {
WARNING("Apache2 module requires an --enable-zts build of PHP on windows");
} else if (CHECK_HEADER_ADD_INCLUDE("httpd.h", "CFLAGS_APACHE2_2FILTER", PHP_PHP_BUILD + "\\include\\apache2_2") &&
CHECK_LIB("libhttpd.lib", "apache2_2filter", PHP_PHP_BUILD + "\\lib\\apache2_2") &&
CHECK_LIB("libapr-1.lib", "apache2_2filter", PHP_PHP_BUILD + "\\lib\\apache2_2") &&
CHECK_LIB("libaprutil-1.lib", "apache2_2filter", PHP_PHP_BUILD + "\\lib\\apache2_2")
) {
SAPI('apache2_2filter', 'sapi_apache2.c apache_config.c php_functions.c',
'php' + PHP_VERSION + 'apache2_2_filter.dll',
'/D PHP_APACHE2_EXPORTS /I win32',
'sapi\\apache2_2filter');
} else {
WARNING("Could not find apache2.2 filter libraries/headers");
}
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.