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

« back to all changes in this revision

Viewing changes to modules/NWGNUmakefile

  • 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
# Declare the sub-directories to be built here
 
3
#
 
4
# To build with exerimental modules set the environment 
 
5
#  variable EXPERIMENTAL=1
 
6
 
 
7
SUBDIRS = \
 
8
        aaa \
 
9
        cache \
 
10
        dav\main \
 
11
        dav\fs \
 
12
        dav\lock \
 
13
        echo \
 
14
        generators \
 
15
        loggers \
 
16
        mappers \
 
17
        metadata \
 
18
        proxy \
 
19
        filters \
 
20
        database \
 
21
        $(EOLIST) 
 
22
 
 
23
# If LDAPSDK has been defined then build the util_ldap module
 
24
ifneq "$(LDAPSDK)" ""
 
25
SUBDIRS += ldap \
 
26
        $(EOLIST)
 
27
endif
 
28
 
 
29
# If OSSLSDK has been defined then build the mod_ssl module
 
30
ifndef USE_STDSOCKETS
 
31
ifneq "$(OSSLSDK)" ""
 
32
SUBDIRS += ssl \
 
33
        $(EOLIST)
 
34
endif
 
35
endif
 
36
 
 
37
#If the mod_edir directory exists then build the mod_edir module
 
38
ifeq "$(wildcard $(AP_WORK)\modules\mod_edir)" "$(AP_WORK)\modules\mod_edir"
 
39
SUBDIRS += mod_edir \
 
40
               $(EOLIST)
 
41
endif
 
42
 
 
43
# Allow the experimental modules to be built if EXPERIMENTAL is defined
 
44
ifdef EXPERIMENTAL
 
45
SUBDIRS += experimental \
 
46
               $(EOLIST)
 
47
endif
 
48
 
 
49
# Allow the experimental modules to be built if EXPERIMENTAL is defined
 
50
ifdef DEBUG
 
51
SUBDIRS += debug \
 
52
               $(EOLIST)
 
53
endif
 
54
 
 
55
 
 
56
#
 
57
# Get the 'head' of the build environment.  This includes default targets and
 
58
# paths to tools
 
59
#
 
60
 
 
61
include $(AP_WORK)\build\NWGNUhead.inc
 
62
 
 
63
#
 
64
# build this level's files
 
65
 
 
66
ifeq "$(wildcard NWGNUmakefile.mak)" "NWGNUmakefile.mak" 
 
67
include NWGNUmakefile.mak
 
68
endif
 
69
 
 
70
#
 
71
# You can use this target if all that is needed is to copy files to the
 
72
# installation area
 
73
#
 
74
install :: nlms FORCE
 
75