Revision 662

Date:
2017/08/24 17:17:14
Author:
ahitrov
Revision Log:
Start in foreground

Files:

Legend:

 
Added
 
Removed
 
Modified
  • utf8/core/config.mk

     
    53 53 MAX_REQUESTS_PER_CHILD ?= 10000
    54 54
    55 55 DEVELOPMENT ?= NO
    56 FOREGROUND ?= NO
    56 57
    57 58 OPTIONS_EXPIRE ?= 600
    58 59
  • utf8/core/GNUmakefile

     
    1111 1111 apache_start: check_conf_installed
    1112 1112 @${call is_alive,${PROJ_VAR}/${PROJECT}/run/httpd.pid}; \
    1113 1113 FLAGS=`perl -e 'print " -DDEVELOPMENT" if lc "${DEVELOPMENT}" eq "yes";'`; \
    1114 FLAGS=$$FLAGS`perl -e 'print " -F" if lc "${FOREGROUND}" eq "yes";'`; \
    1114 1115 FLAGS=$$FLAGS`perl -e ' \
    1115 1116 if (lc "${RSYSLOG_ENABLE}" eq "yes") { print " -DRSYSLOG"; } \
    1116 1117 elsif (lc "${CRONOLOG_ENABLE}" eq "yes") { print " -DCRONOLOG"; } \
  • utf8/core/ports/all/libapreq/GNUmakefile

     
    12 12
    13 13 PERL_MAKEMAKER = yes
    14 14 MASTER_CPAN_SUBDIR = Apache
    15 PORT_DEPENDS = mod_perl
    16 # Apache-Test
    15 PORT_DEPENDS = mod_perl \
    16 Apache-Test
    17 17
    18 18 CONFIGURE_POSTCMD = ${MAKE_RECURSIVE} post-configure
    19 19