summaryrefslogtreecommitdiff
path: root/www/apache13-fp/files/patch-aa
blob: 1ac59f83f9e2676cb773a0d4ad02f6c0a9e2454c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
*** src/Configuration.orig	Sun Jul  6 06:20:07 1997
--- src/Configuration	Tue Jul 15 01:18:42 1997
***************
*** 41,49 ****
  # Settings here have priority; If not set, Configure will attempt to guess
  # the C compiler, and set OPTIM to '-O2'
  #
! EXTRA_CFLAGS=
  EXTRA_LFLAGS=
! EXTRA_LIBS=
  EXTRA_INCLUDES=
  
  #CC=
--- 41,62 ----
  # Settings here have priority; If not set, Configure will attempt to guess
  # the C compiler, and set OPTIM to '-O2'
  #
! EXTRA_CFLAGS= \
! -DHTTPD_ROOT=\"${PREFIX}/etc/apache/\" \
! -DDOCUMENT_LOCATION=\"${PREFIX}/www/data/\" \
! -DSERVER_CONFIG_FILE=\"httpd.conf\" \
! -DRESOURCE_CONFIG_FILE=\"srm.conf\" \
! -DTYPES_CONFIG_FILE=\"mime.types\" \
! -DACCESS_CONFIG_FILE=\"access.conf\" \
! -DDEFAULT_PATH=\"/bin:/usr/bin:${PREFIX}/bin\" \
! -DSUEXEC_BIN=\"${PREFIX}/sbin/suexec\" \
! -DDEFAULT_XFERLOG=\"/var/log/httpd-access.log\" \
! -DDEFAULT_ERRORLOG=\"/var/log/httpd-error.log\" \
! -DDEFAULT_PIDLOG=\"/var/run/httpd.pid\" \
! -DDEFAULT_SCOREBOARD=\"/var/run/apache_runtime_status\" \
! -DDEFAULT_LOCKFILE=\"/var/spool/lock/accept.lock\"
  EXTRA_LFLAGS=
! EXTRA_LIBS=-lmd
  EXTRA_INCLUDES=
  
  #CC=
***************
*** 162,173 ****
  ## STATUS=yes (see the Rules section near the start of this file) to allow
  ## full status information.  Check conf/access.conf on how to enable this.
  
! # Module status_module       mod_status.o
  
  ## The Info module displays configuration information for the server and 
  ## all included modules. It's very useful for debugging.
  
! # Module info_module         mod_info.o
  
  ## mod_include translates server-side include (SSI) statements in text files.
  ## mod_dir handles requests on directories and directory indexes.
--- 175,186 ----
  ## STATUS=yes (see the Rules section near the start of this file) to allow
  ## full status information.  Check conf/access.conf on how to enable this.
  
! Module status_module       mod_status.o
  
  ## The Info module displays configuration information for the server and 
  ## all included modules. It's very useful for debugging.
  
! Module info_module         mod_info.o
  
  ## mod_include translates server-side include (SSI) statements in text files.
  ## mod_dir handles requests on directories and directory indexes.
***************
*** 209,215 ****
  ## mod_rewrite allows for powerful URI-to-URI and URI-to-filename mapping,
  ## using regular expressions.
  
! # Module rewrite_module      mod_rewrite.o
  
  ##
  ## Access control and authentication modules. 
--- 222,228 ----
  ## mod_rewrite allows for powerful URI-to-URI and URI-to-filename mapping,
  ## using regular expressions.
  
! Module rewrite_module      mod_rewrite.o
  
  ##
  ## Access control and authentication modules. 
***************
*** 227,233 ****
  ## "gdbm" package if not and possibly adjust EXTRA_LIBS. (This may be
  ## done by Configure at a later date)
  
! # Module db_auth_module      mod_auth_db.o
  # Module dbm_auth_module     mod_auth_dbm.o
  
  ## msql_auth checks against an mSQL database.  You must have mSQL installed
--- 240,246 ----
  ## "gdbm" package if not and possibly adjust EXTRA_LIBS. (This may be
  ## done by Configure at a later date)
  
! Module db_auth_module      mod_auth_db.o
  # Module dbm_auth_module     mod_auth_dbm.o
  
  ## msql_auth checks against an mSQL database.  You must have mSQL installed
***************
*** 244,267 ****
  ## "digest" implements HTTP Digest Authentication rather than the less 
  ## secure Basic Auth used by the other modules.
  
! # Module digest_module       mod_digest.o
  
  ## Optional response header manipulation modules. 
  ##
  ## cern_meta mimics the behavior of the CERN web server with regards to 
  ## metainformation files.  
  
! # Module cern_meta_module    mod_cern_meta.o
  
  ## The expires module can apply Expires: headers to resources,
  ## as a function of access time or modification time.
  
! # Module expires_module      mod_expires.o
  
  ## The headers module can set arbitrary HTTP response headers,
  ## as configured in server, vhost, access.conf or .htaccess configs
  
! # Module headers_module      mod_headers.o
  
  ## Miscellaneous modules
  ##
--- 257,280 ----
  ## "digest" implements HTTP Digest Authentication rather than the less 
  ## secure Basic Auth used by the other modules.
  
! Module digest_module       mod_digest.o
  
  ## Optional response header manipulation modules. 
  ##
  ## cern_meta mimics the behavior of the CERN web server with regards to 
  ## metainformation files.  
  
! Module cern_meta_module    mod_cern_meta.o
  
  ## The expires module can apply Expires: headers to resources,
  ## as a function of access time or modification time.
  
! Module expires_module      mod_expires.o
  
  ## The headers module can set arbitrary HTTP response headers,
  ## as configured in server, vhost, access.conf or .htaccess configs
  
! Module headers_module      mod_headers.o
  
  ## Miscellaneous modules
  ##