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

« back to all changes in this revision

Viewing changes to modules/debug/NWGNUmakefile

  • 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:
59
59
                        $(EOLIST)
60
60
 
61
61
XLFLAGS         += \
62
 
                        $(EOLIST)
 
62
                        $(EOLIST)
63
63
endif
64
64
 
65
65
ifeq "$(RELEASE)" "noopt"
73
73
                        $(EOLIST)
74
74
 
75
75
XLFLAGS         += \
76
 
                        $(EOLIST)
 
76
                        $(EOLIST)
77
77
endif
78
78
 
79
79
ifeq "$(RELEASE)" "release"
95
95
# This is used by the link 'name' directive to name the nlm.  If left blank
96
96
# TARGET_nlm (see below) will be used.
97
97
#
98
 
NLM_NAME                =
 
98
NLM_NAME        =
99
99
 
100
100
#
101
101
# This is used by the link '-desc ' directive. 
113
113
# If this is specified, it will override VERSION value in 
114
114
# $(AP_WORK)\build\NWGNUenvironment.inc
115
115
#
116
 
NLM_VERSION             =
 
116
NLM_VERSION     =
117
117
 
118
118
#
119
119
# If this is specified, it will override the default of 64K
139
139
#
140
140
# If these are specified it will be used by the link '-flags' directive
141
141
#
142
 
NLM_FLAGS               =
 
142
NLM_FLAGS       =
143
143
 
144
144
#
145
145
# If this is specified it will be linked in with the XDCData option in the def 
146
146
# file instead of the default of $(NWOS)/apache.xdc.  XDCData can be disabled
147
147
# by setting APACHE_UNIPROC in the environment
148
148
#
149
 
XDCDATA         = 
 
149
XDCDATA         = 
150
150
 
151
151
#
152
152
# If there is an NLM target, put it here
155
155
        $(OBJDIR)/moddumpio.nlm \
156
156
        $(OBJDIR)/modbucketeer.nlm \
157
157
        $(EOLIST)
158
 
        
159
158
 
160
159
#
161
160
# If there is an LIB target, put it here
210
209
#
211
210
FILES_nlm_exports = \
212
211
        $(EOLIST)
213
 
        
 
212
 
214
213
#   
215
214
# These are the OBJ files needed to create the LIB target above.
216
215
# Paths must all use the '/' character
217
216
#
218
217
FILES_lib_objs = \
219
 
                $(EOLIST)
 
218
        $(EOLIST)
220
219
 
221
220
#
222
221
# implement targets and dependancies (leave this section alone)
231
230
# correct place.  (See $(AP_WORK)\build\NWGNUhead.inc for examples)
232
231
#
233
232
install :: nlms FORCE
234
 
        copy $(OBJDIR)\*.nlm $(INSTALL)\Apache2\modules\*.*
 
233
        copy $(OBJDIR)\*.nlm $(INSTALL)\$(BASEDIR)\modules\*.*
235
234
 
236
235
#
237
236
# Any specialized rules here
243
242
#
244
243
 
245
244
include $(AP_WORK)\build\NWGNUtail.inc
246
 
        
 
245
 
 
246