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

« back to all changes in this revision

Viewing changes to modules/mappers/NWGNUrewrite

  • 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:
58
58
                        $(EOLIST)
59
59
 
60
60
XLFLAGS         += \
61
 
                        $(EOLIST)
 
61
                        $(EOLIST)
62
62
endif
63
63
 
64
64
ifeq "$(RELEASE)" "noopt"
72
72
                        $(EOLIST)
73
73
 
74
74
XLFLAGS         += \
75
 
                        $(EOLIST)
 
75
                        $(EOLIST)
76
76
endif
77
77
 
78
78
ifeq "$(RELEASE)" "release"
94
94
# This is used by the link 'name' directive to name the nlm.  If left blank
95
95
# TARGET_nlm (see below) will be used.
96
96
#
97
 
NLM_NAME                = rewrite
 
97
NLM_NAME        = rewrite
98
98
 
99
99
#
100
100
# This is used by the link '-desc ' directive. 
112
112
# If this is specified, it will override VERSION value in 
113
113
# $(AP_WORK)\build\NWGNUenvironment.inc
114
114
#
115
 
NLM_VERSION             =
 
115
NLM_VERSION     =
116
116
 
117
117
#
118
118
# If this is specified, it will override the default of 64K
138
138
#
139
139
# If these are specified it will be used by the link '-flags' directive
140
140
#
141
 
NLM_FLAGS               =  AUTOUNLOAD, PSEUDOPREEMPTION
 
141
NLM_FLAGS       = AUTOUNLOAD, PSEUDOPREEMPTION
142
142
 
143
143
#
144
144
# If this is specified it will be linked in with the XDCData option in the def 
145
145
# file instead of the default of $(NWOS)/apache.xdc.  XDCData can be disabled
146
146
# by setting APACHE_UNIPROC in the environment
147
147
#
148
 
XDCDATA         = 
 
148
XDCDATA         = 
149
149
 
150
150
#
151
151
# If there is an NLM target, put it here
173
173
# These will be added as a library command in the link.opt file.
174
174
#
175
175
FILES_nlm_libs = \
176
 
        libcpre.o \
 
176
        libcpre.o \
177
177
        $(EOLIST)
178
178
 
179
179
#
215
215
FILES_nlm_exports = \
216
216
        rewrite_module \
217
217
        $(EOLIST)
218
 
        
 
218
 
219
219
#   
220
220
# These are the OBJ files needed to create the LIB target above.
221
221
# Paths must all use the '/' character
222
222
#
223
223
FILES_lib_objs = \
224
 
                $(EOLIST)
 
224
        $(EOLIST)
225
225
 
226
226
#
227
227
# implement targets and dependancies (leave this section alone)
248
248
 
249
249
include $(AP_WORK)\build\NWGNUtail.inc
250
250
 
 
251