rse 98/04/19 09:03:42
Modified: . STATUS configure
src CHANGES
Log:
Fix "configure --prefix=/somewhere --compat"
Submitted by: Lars Eilebrecht
Reviewed by: Ralf S. Engelschall
Revision Changes Path
1.306 +1 -0 apache-1.3/STATUS
Index: STATUS
===================================================================
RCS file: /export/home/cvs/apache-1.3/STATUS,v
retrieving revision 1.305
retrieving revision 1.306
diff -u -r1.305 -r1.306
--- STATUS 1998/04/19 12:31:26 1.305
+++ STATUS 1998/04/19 16:03:38 1.306
@@ -46,6 +46,7 @@
* Ralf's Configure fix for AWK's failing with "string to long" error
* Ralf's fix for stderr logging to make sure default loglevel is honored
* Ralf's cast for dlopen's arg1 under OSF1 and FreeBSD 2.2.x
+ * Lars' fix for the prefix setup on configure --compat
Available Patches:
1.11 +0 -1 apache-1.3/configure
Index: configure
===================================================================
RCS file: /export/home/cvs/apache-1.3/configure,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- configure 1998/04/15 10:03:46 1.10
+++ configure 1998/04/19 16:03:38 1.11
@@ -346,7 +346,6 @@
customized_includedir=1
;;
--compat)
- prefix='/usr/local/apache'
exec_prefix='$prefix'
bindir='$exec_prefix/bin'
sbindir='$exec_prefix/bin'
1.775 +4 -0 apache-1.3/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.774
retrieving revision 1.775
diff -u -r1.774 -r1.775
--- CHANGES 1998/04/19 12:31:27 1.774
+++ CHANGES 1998/04/19 16:03:40 1.775
@@ -1,5 +1,9 @@
Changes with Apache 1.3b7
+ *) Because /usr/local/apache is the default prefix the ``configure
+ --compat'' option no longer has to set prefix, again. This way the
+ --compat option honors a leading --prefix option. [Lars Eilebrecht]
+
*) PORT: Cast the first argument of dlopen() in ap_os_dso_load()
to `char *' under OSF1 and FreeBSD 2.x where it is defined this way
to avoid "discard const" warnings. [Ralf S. Engelschall]