You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.3 KiB

--- apache_1.3.27/configure.orig Tue May 21 14:24:59 2002
+++ apache_1.3.27/configure Mon Feb 10 11:08:40 2003
@@ -1216,10 +1216,10 @@
## or we cannot support the case where the relative
## path is just the emtpy one, i.e. ""]
##
-runtimedir_relative=`echo $runtimedir | sed -e "s:^$prefix/*::" -e 's:\(.\)$:\1/:'`
-logfiledir_relative=`echo $logfiledir | sed -e "s:^$prefix/*::" -e 's:\(.\)$:\1/:'`
-sysconfdir_relative=`echo $sysconfdir | sed -e "s:^$prefix/*::" -e 's:\(.\)$:\1/:'`
-libexecdir_relative=`echo $libexecdir | sed -e "s:^$prefix/*::" -e 's:\(.\)$:\1/:'`
+runtimedir_relative="$runtimedir/"
+logfiledir_relative="$logfiledir/"
+sysconfdir_relative="$sysconfdir/"
+libexecdir_relative="$libexecdir/"
##
## check and debug
--- apache_1.3.27/src/Configure.dist 2003-06-11 11:59:51.000000000 +0200
+++ apache_1.3.27/src/Configure 2003-06-11 12:00:44.000000000 +0200
@@ -1192,12 +1192,14 @@
*-solaris2*)
if [ "x`$CC -v 2>&1 | grep gcc`" != "x" ]; then
CFLAGS_SHLIB="-fPIC"
+ LDFLAGS_SHLIB="-shared"
+ LDFLAGS_SHLIB_EXPORT="-Wl,-E"
else
CFLAGS_SHLIB="-KPIC"
+ LDFLAGS_SHLIB="-G"
+ LDFLAGS_SHLIB_EXPORT=""
fi
- LDFLAGS_SHLIB="-G"
LDFLAGS_MOD_SHLIB=$LDFLAGS_SHLIB
- LDFLAGS_SHLIB_EXPORT=""
SHLIB_SUFFIX_DEPTH=1
;;
*-sunos4*)