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

« back to all changes in this revision

Viewing changes to support/NWGNUhtdbm

  • 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:
56
56
                        $(EOLIST)
57
57
 
58
58
XLFLAGS         += \
59
 
                        $(EOLIST)
 
59
                        $(EOLIST)
60
60
endif
61
61
 
62
62
ifeq "$(RELEASE)" "noopt"
70
70
                        $(EOLIST)
71
71
 
72
72
XLFLAGS         += \
73
 
                        $(EOLIST)
 
73
                        $(EOLIST)
74
74
endif
75
75
 
76
76
ifeq "$(RELEASE)" "release"
92
92
# This is used by the link 'name' directive to name the nlm.  If left blank
93
93
# TARGET_nlm (see below) will be used.
94
94
#
95
 
NLM_NAME                = htdbm
 
95
NLM_NAME        = htdbm
96
96
 
97
97
#
98
98
# This is used by the link '-desc ' directive.
116
116
# If this is specified, it will override VERSION value in
117
117
# $(AP_WORK)\build\NWGNUenvironment.inc
118
118
#
119
 
NLM_VERSION             =
 
119
NLM_VERSION     =
120
120
 
121
121
#
122
122
# If this is specified, it will override the default of 64K
142
142
#
143
143
# If these are specified it will be used by the link '-flags' directive
144
144
#
145
 
NLM_FLAGS               = AUTOUNLOAD, PSEUDOPREEMPTION
 
145
NLM_FLAGS       = AUTOUNLOAD, PSEUDOPREEMPTION
146
146
 
147
147
#
148
148
# If this is specified it will be linked in with the XDCData option in the def
149
149
# file instead of the default of $(NWOS)/apache.xdc.  XDCData can be disabled
150
150
# by setting APACHE_UNIPROC in the environment
151
151
#
152
 
XDCDATA         =
 
152
XDCDATA         =
153
153
 
154
154
#
155
155
# If there is an NLM target, put it here
177
177
# These will be added as a library command in the link.opt file.
178
178
#
179
179
FILES_nlm_libs = \
180
 
        libcpre.o \
 
180
        libcpre.o \
181
181
        $(EOLIST)
182
182
 
183
183
#
223
223
# Paths must all use the '/' character
224
224
#
225
225
FILES_lib_objs = \
226
 
                $(EOLIST)
 
226
        $(EOLIST)
227
227
 
228
228
#
229
229
# implement targets and dependancies (leave this section alone)
250
250
 
251
251
include $(AP_WORK)\build\NWGNUtail.inc
252
252
 
 
253