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

« back to all changes in this revision

Viewing changes to modules/proxy/NWGNUproxybalancer

  • 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:
29
29
# These flags will come after CFLAGS
30
30
#
31
31
XCFLAGS         += \
32
 
                        -prefix pre_nw.h \
33
32
                        $(EOLIST)
34
33
 
35
34
#
59
58
                        $(EOLIST)
60
59
 
61
60
XLFLAGS         += \
62
 
                        $(EOLIST)
 
61
                        $(EOLIST)
63
62
endif
64
63
 
65
64
ifeq "$(RELEASE)" "noopt"
73
72
                        $(EOLIST)
74
73
 
75
74
XLFLAGS         += \
76
 
                        $(EOLIST)
 
75
                        $(EOLIST)
77
76
endif
78
77
 
79
78
ifeq "$(RELEASE)" "release"
95
94
# This is used by the link 'name' directive to name the nlm.  If left blank
96
95
# TARGET_nlm (see below) will be used.
97
96
#
98
 
NLM_NAME                = proxybalancer
 
97
NLM_NAME        = proxybalancer
99
98
 
100
99
#
101
100
# This is used by the link '-desc ' directive. 
113
112
# If this is specified, it will override VERSION value in 
114
113
# $(AP_WORK)\build\NWGNUenvironment.inc
115
114
#
116
 
NLM_VERSION             =
 
115
NLM_VERSION     =
117
116
 
118
117
#
119
118
# If this is specified, it will override the default of 64K
139
138
#
140
139
# If these are specified it will be used by the link '-flags' directive
141
140
#
142
 
NLM_FLAGS               =  AUTOUNLOAD, PSEUDOPREEMPTION
 
141
NLM_FLAGS       = AUTOUNLOAD, PSEUDOPREEMPTION
143
142
 
144
143
#
145
144
# If this is specified it will be linked in with the XDCData option in the def 
146
145
# file instead of the default of $(NWOS)/apache.xdc.  XDCData can be disabled
147
146
# by setting APACHE_UNIPROC in the environment
148
147
#
149
 
XDCDATA         = 
 
148
XDCDATA         = 
150
149
 
151
150
#
152
151
# If there is an NLM target, put it here
176
175
# These will be added as a library command in the link.opt file.
177
176
#
178
177
FILES_nlm_libs = \
179
 
        libcpre.o \
 
178
        libcpre.o \
180
179
        $(EOLIST)
181
180
 
182
181
#
225
224
# Don't link with Winsock if standard sockets are being used
226
225
ifndef USE_STDSOCKETS
227
226
FILES_nlm_Ximports += @ws2nlm.imp \
228
 
               $(EOLIST)
 
227
        $(EOLIST)
229
228
endif
230
229
 
231
230
#   
234
233
FILES_nlm_exports = \
235
234
        proxy_balancer_module \
236
235
        $(EOLIST)
237
 
        
 
236
 
238
237
#   
239
238
# These are the OBJ files needed to create the LIB target above.
240
239
# Paths must all use the '/' character
241
240
#
242
241
FILES_lib_objs = \
243
 
                $(EOLIST)
 
242
        $(EOLIST)
244
243
 
245
244
#
246
245
# implement targets and dependancies (leave this section alone)
269
268
 
270
269
include $(AP_WORK)\build\NWGNUtail.inc
271
270
 
 
271