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

« back to all changes in this revision

Viewing changes to modules/aaa/NWGNUauthnfil

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