~ubuntu-branches/ubuntu/feisty/apache2/feisty

« back to all changes in this revision

Viewing changes to support/NWGNUrotlogs

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Barth
  • Date: 2006-12-09 21:05:45 UTC
  • mfrom: (0.6.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20061209210545-h70s0xaqc2v8vqr2
Tags: 2.2.3-3.2
* Non-maintainer upload.
* 043_ajp_connection_reuse: Patch from upstream Bugzilla, fixing a critical
  issue with regard to connection reuse in mod_proxy_ajp.
  Closes: #396265

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Make sure all needed macro's are defined
 
3
#
 
4
 
 
5
#
 
6
# Get the 'head' of the build environment if necessary.  This includes default
 
7
# targets and paths to tools
 
8
#
 
9
 
 
10
ifndef EnvironmentDefined
 
11
include $(AP_WORK)\build\NWGNUhead.inc
 
12
endif
 
13
 
 
14
#
 
15
# These directories will be at the beginning of the include list, followed by
 
16
# INCDIRS
 
17
#
 
18
XINCDIRS        += \
 
19
                        $(NWOS) \
 
20
                        $(APR)/include \
 
21
                        $(APR)/misc/netware \
 
22
                        $(APR) \
 
23
                        $(EOLIST)
 
24
 
 
25
#
 
26
# These flags will come after CFLAGS
 
27
#
 
28
XCFLAGS         += \
 
29
                        $(EOLIST)
 
30
 
 
31
#
 
32
# These defines will come after DEFINES
 
33
#
 
34
XDEFINES        += \
 
35
                        $(EOLIST)
 
36
 
 
37
#
 
38
# These flags will be added to the link.opt file
 
39
#
 
40
XLFLAGS         += \
 
41
                        $(EOLIST)
 
42
 
 
43
#
 
44
# These values will be appended to the correct variables based on the value of
 
45
# RELEASE
 
46
#
 
47
ifeq "$(RELEASE)" "debug"
 
48
XINCDIRS        += \
 
49
                        $(EOLIST)
 
50
 
 
51
XCFLAGS         += \
 
52
                        $(EOLIST)
 
53
 
 
54
XDEFINES        += \
 
55
                        $(EOLIST)
 
56
 
 
57
XLFLAGS         += \
 
58
                        $(EOLIST)
 
59
endif
 
60
 
 
61
ifeq "$(RELEASE)" "noopt"
 
62
XINCDIRS        += \
 
63
                        $(EOLIST)
 
64
 
 
65
XCFLAGS         += \
 
66
                        $(EOLIST)
 
67
 
 
68
XDEFINES        += \
 
69
                        $(EOLIST)
 
70
 
 
71
XLFLAGS         += \
 
72
                        $(EOLIST)
 
73
endif
 
74
 
 
75
ifeq "$(RELEASE)" "release"
 
76
XINCDIRS        += \
 
77
                        $(EOLIST)
 
78
 
 
79
XCFLAGS         += \
 
80
                        $(EOLIST)
 
81
 
 
82
XDEFINES        += \
 
83
                        $(EOLIST)
 
84
 
 
85
XLFLAGS         += \
 
86
                        $(EOLIST)
 
87
endif
 
88
 
 
89
#
 
90
# These are used by the link target if an NLM is being generated
 
91
# This is used by the link 'name' directive to name the nlm.  If left blank
 
92
# TARGET_nlm (see below) will be used.
 
93
#
 
94
NLM_NAME                = rotlogs
 
95
 
 
96
#
 
97
# This is used by the link '-desc ' directive. 
 
98
# If left blank, NLM_NAME will be used.
 
99
#
 
100
NLM_DESCRIPTION = Apache $(VERSION_STR) Log Rotation Utility for NetWare
 
101
 
 
102
#
 
103
# This is used by the '-threadname' directive.  If left blank,
 
104
# NLM_NAME Thread will be used.
 
105
#
 
106
NLM_THREAD_NAME = rotlogs
 
107
 
 
108
#
 
109
# This is used by the '-screenname' directive.  If left blank,
 
110
# 'Apache for NetWare' Thread will be used.
 
111
#
 
112
NLM_SCREEN_NAME = DEFAULT
 
113
 
 
114
#
 
115
# If this is specified, it will override VERSION value in 
 
116
# $(AP_WORK)\build\NWGNUenvironment.inc
 
117
#
 
118
NLM_VERSION             =
 
119
 
 
120
#
 
121
# If this is specified, it will override the default of 64K
 
122
#
 
123
NLM_STACK_SIZE  = 98304
 
124
 
 
125
 
 
126
#
 
127
# If this is specified it will be used by the link '-entry' directive
 
128
#
 
129
NLM_ENTRY_SYM   = _LibCPrelude
 
130
 
 
131
#
 
132
# If this is specified it will be used by the link '-exit' directive
 
133
#
 
134
NLM_EXIT_SYM    = _LibCPostlude
 
135
 
 
136
#
 
137
# If this is specified it will be used by the link '-check' directive
 
138
#
 
139
NLM_CHECK_SYM   =
 
140
 
 
141
#
 
142
# If these are specified it will be used by the link '-flags' directive
 
143
#
 
144
NLM_FLAGS               =  AUTOUNLOAD, PSEUDOPREEMPTION, MULTIPLE
 
145
 
 
146
#
 
147
# If this is specified it will be linked in with the XDCData option in the def 
 
148
# file instead of the default of $(NWOS)/apache.xdc.  XDCData can be disabled
 
149
# by setting APACHE_UNIPROC in the environment
 
150
#
 
151
XDCDATA         = 
 
152
 
 
153
#
 
154
# If there is an NLM target, put it here
 
155
#
 
156
TARGET_nlm = \
 
157
        $(OBJDIR)/rotlogs.nlm \
 
158
        $(EOLIST)
 
159
 
 
160
#
 
161
# If there is an LIB target, put it here
 
162
#
 
163
TARGET_lib = \
 
164
        $(EOLIST)
 
165
 
 
166
#
 
167
# These are the OBJ files needed to create the NLM target above.
 
168
# Paths must all use the '/' character
 
169
#
 
170
FILES_nlm_objs = \
 
171
        $(OBJDIR)/rotatelogs.o \
 
172
        $(EOLIST)
 
173
 
 
174
#
 
175
# These are the LIB files needed to create the NLM target above.
 
176
# These will be added as a library command in the link.opt file.
 
177
#
 
178
FILES_nlm_libs = \
 
179
        libcpre.o \
 
180
        $(EOLIST)
 
181
 
 
182
#
 
183
# These are the modules that the above NLM target depends on to load.
 
184
# These will be added as a module command in the link.opt file.
 
185
#
 
186
FILES_nlm_modules = \
 
187
        aprlib \
 
188
        libc \
 
189
        $(EOLIST)
 
190
 
 
191
#
 
192
# If the nlm has a msg file, put it's path here
 
193
#
 
194
FILE_nlm_msg =
 
195
 
 
196
#
 
197
# If the nlm has a hlp file put it's path here
 
198
#
 
199
FILE_nlm_hlp =
 
200
 
 
201
#
 
202
# If this is specified, it will override $(NWOS)\copyright.txt.
 
203
#
 
204
FILE_nlm_copyright =
 
205
 
 
206
#
 
207
# Any additional imports go here
 
208
#
 
209
FILES_nlm_Ximports = \
 
210
        @$(APR)/aprlib.imp \
 
211
        @libc.imp \
 
212
        $(EOLIST)
 
213
 
 
214
#   
 
215
# Any symbols exported to here
 
216
#
 
217
FILES_nlm_exports = \
 
218
        $(EOLIST)
 
219
        
 
220
#   
 
221
# These are the OBJ files needed to create the LIB target above.
 
222
# Paths must all use the '/' character
 
223
#
 
224
FILES_lib_objs = \
 
225
                $(EOLIST)
 
226
 
 
227
#
 
228
# implement targets and dependancies (leave this section alone)
 
229
#
 
230
 
 
231
libs :: $(OBJDIR) $(TARGET_lib)
 
232
 
 
233
nlms :: libs $(TARGET_nlm)
 
234
 
 
235
#
 
236
# Updated this target to create necessary directories and copy files to the 
 
237
# correct place.  (See $(AP_WORK)\build\NWGNUhead.inc for examples)
 
238
#
 
239
install :: nlms FORCE
 
240
 
 
241
#
 
242
# Any specialized rules here
 
243
#
 
244
 
 
245
#
 
246
# Include the 'tail' makefile that has targets that depend on variables defined
 
247
# in this makefile
 
248
#
 
249
 
 
250
include $(AP_WORK)\build\NWGNUtail.inc
 
251