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

« back to all changes in this revision

Viewing changes to modules/cache/NWGNUmem_cach

  • 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:
66
66
                        $(EOLIST)
67
67
 
68
68
XLFLAGS         += \
69
 
                        $(EOLIST)
 
69
                        $(EOLIST)
70
70
endif
71
71
 
72
72
ifeq "$(RELEASE)" "noopt"
80
80
                        $(EOLIST)
81
81
 
82
82
XLFLAGS         += \
83
 
                        $(EOLIST)
 
83
                        $(EOLIST)
84
84
endif
85
85
 
86
86
ifeq "$(RELEASE)" "release"
102
102
# This is used by the link 'name' directive to name the nlm.  If left blank
103
103
# TARGET_nlm (see below) will be used.
104
104
#
105
 
NLM_NAME                = mem_cach
 
105
NLM_NAME        = mem_cach
106
106
 
107
107
#
108
108
# This is used by the link '-desc ' directive. 
120
120
# If this is specified, it will override VERSION value in 
121
121
# $(AP_WORK)\build\NWGNUenvironment.inc
122
122
#
123
 
NLM_VERSION             = 
 
123
NLM_VERSION     = 
124
124
 
125
125
#
126
126
# If this is specified, it will override the default of 64K
146
146
#
147
147
# If this is specified it will be used by the link '-flags' directive
148
148
#
149
 
NLM_FLAGS               = AUTOUNLOAD, PSEUDOPREEMPTION
 
149
NLM_FLAGS       = AUTOUNLOAD, PSEUDOPREEMPTION
150
150
 
151
151
#
152
152
# If this is specified it will be linked in with the XDCData option in the def 
153
153
# file instead of the default of $(NWOS)/apache.xdc.  XDCData can be disabled
154
154
# by setting APACHE_UNIPROC in the environment
155
155
#
156
 
XDCDATA         = 
 
156
XDCDATA         = 
157
157
 
158
158
#
159
159
# Declare all target files (you must add your files here)
188
188
# These will be added as a library command in the link.opt file.
189
189
#
190
190
FILES_nlm_libs = \
191
 
        libcpre.o \
 
191
        libcpre.o \
192
192
        $(EOLIST)
193
193
 
194
194
#
232
232
FILES_nlm_exports = \
233
233
        mem_cache_module \
234
234
        $(EOLIST)
235
 
        
 
235
 
236
236
#       @cache.imp \
237
237
#   
238
238
# These are the OBJ files needed to create the LIB target above.
239
239
# Paths must all use the '/' character
240
240
#
241
241
FILES_lib_objs = \
242
 
                $(EOLIST)
 
242
        $(EOLIST)
243
243
 
244
244
#
245
245
# implement targets and dependancies (leave this section alone)
267
267
include $(AP_WORK)\build\NWGNUtail.inc
268
268
 
269
269
 
270