- drop case senstive checks

PR:		127464
This commit is contained in:
Dirk Meyer 2008-09-28 07:42:24 +00:00
parent 589c238ace
commit fbb24f74e4

View file

@ -99,7 +99,7 @@ APACHE_SH?= etc/rc.d/apache.sh
PLIST_FILES+= ${APACHE_SH}
.if defined(WITH_APACHE_SUEXEC) && ${WITH_APACHE_SUEXEC} == yes
.if defined(WITH_APACHE_SUEXEC) && !defined(WITHOUT_APACHE_SUEXEC)
APACHE_SUEXEC_DOCROOT?=${DOCUMENT_ROOT}
APACHE_SUEXEC_LOG?=/var/log/httpd-suexec.log
@ -183,14 +183,14 @@ OPTIM+= -DFD_SETSIZE=${APACHE_FD_SETSIZE}
OPTIM+= -DFD_SETSIZE=1024
.endif
.if defined(APACHE_BUFFERED_LOGS) && ${APACHE_BUFFERED_LOGS} == yes
.if defined(APACHE_BUFFERED_LOGS)
OPTIM+= -DBUFFERED_LOGS
.endif
.if defined(APACHE_PERF_TUNING) && ${APACHE_PERF_TUNING} == yes
.if defined(APACHE_PERF_TUNING)
CFLAGS+= -O3
.endif
.if defined(WITH_APACHE_PERF_TUNING) && ${WITH_APACHE_PERF_TUNING} == yes
.if defined(WITH_APACHE_PERF_TUNING) && !defined(WITHOUT_APACHE_PERF_TUNING)
CFLAGS+= -O3
.endif