~ubuntu-branches/ubuntu/intrepid/apache2/intrepid

« back to all changes in this revision

Viewing changes to modules/generators/NWGNUmod_cgi

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Fritsch
  • Date: 2007-10-18 19:35:40 UTC
  • mfrom: (0.13.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20071018193540-u9bl0154m45xppyj
Tags: 2.2.6-2
* Avoid calling apr_pollset_poll() and accept_func() when the listening
  sockets have already been closed on graceful stop or reload. This
  hopefully fixes processes not being killed (closes: #445263, #447164)
  and the "Bad file descriptor: apr_socket_accept: (client socket)"
  error message (closes: #400918, #443310)
* Allow logresolve to process long lines (Closes: #331631)
* Remove duplicate config examples (Closes: #294662)
* Include README.backtrace describing how to create a backtrace
* Add CVE reference to 2.2.6-1 changelog entry

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
# These flags will come after CFLAGS
31
31
#
32
32
XCFLAGS         += \
33
 
                        -prefix pre_nw.h \
34
33
                        $(EOLIST)
35
34
 
36
35
#
60
59
                        $(EOLIST)
61
60
 
62
61
XLFLAGS         += \
63
 
                        $(EOLIST)
 
62
                        $(EOLIST)
64
63
endif
65
64
 
66
65
ifeq "$(RELEASE)" "noopt"
74
73
                        $(EOLIST)
75
74
 
76
75
XLFLAGS         += \
77
 
                        $(EOLIST)
 
76
                        $(EOLIST)
78
77
endif
79
78
 
80
79
ifeq "$(RELEASE)" "release"
96
95
# This is used by the link 'name' directive to name the nlm.  If left blank
97
96
# TARGET_nlm (see below) will be used.
98
97
#
99
 
NLM_NAME                = mod_cgi
 
98
NLM_NAME        = mod_cgi
100
99
 
101
100
#
102
101
# This is used by the link '-desc ' directive. 
114
113
# If this is specified, it will override VERSION value in 
115
114
# $(AP_WORK)\build\NWGNUenvironment.inc
116
115
#
117
 
NLM_VERSION             =
 
116
NLM_VERSION     =
118
117
 
119
118
#
120
119
# If this is specified, it will override the default of 64K
140
139
#
141
140
# If these are specified it will be used by the link '-flags' directive
142
141
#
143
 
NLM_FLAGS               =  AUTOUNLOAD, PSEUDOPREEMPTION
 
142
NLM_FLAGS       = AUTOUNLOAD, PSEUDOPREEMPTION
144
143
 
145
144
#
146
145
# If this is specified it will be linked in with the XDCData option in the def 
147
146
# file instead of the default of $(NWOS)/apache.xdc.  XDCData can be disabled
148
147
# by setting APACHE_UNIPROC in the environment
149
148
#
150
 
XDCDATA         = 
 
149
XDCDATA         = 
151
150
 
152
151
#
153
152
# If there is an NLM target, put it here
175
174
# These will be added as a library command in the link.opt file.
176
175
#
177
176
FILES_nlm_libs = \
178
 
        libcpre.o \
 
177
        libcpre.o \
179
178
        $(EOLIST)
180
179
 
181
180
#
217
216
FILES_nlm_exports = \
218
217
        cgi_module \
219
218
        $(EOLIST)
220
 
        
 
219
 
221
220
#   
222
221
# These are the OBJ files needed to create the LIB target above.
223
222
# Paths must all use the '/' character
224
223
#
225
224
FILES_lib_objs = \
226
 
                $(EOLIST)
 
225
        $(EOLIST)
227
226
 
228
227
#
229
228
# implement targets and dependancies (leave this section alone)
250
249
 
251
250
include $(AP_WORK)\build\NWGNUtail.inc
252
251
 
 
252