You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Greg Ames <gr...@us.ibm.com> on 2000/01/13 03:04:29 UTC

[PATCH] OS/390 binbuild problems in Apache 1.3

This patch takes care of a couple of binbuild problems in Apache 1.3.10:

1.  OS specific tests were failing to detect OS/390, causing the build to choke
when it tried to use DSO.
2.  Trim down the list of mods included in the binary to the usual set.

Regards,  Greg Ames

Re: [PATCH] OS/390 binbuild problems in Apache 1.3

Posted by Bill Stoddard <st...@raleigh.ibm.com>.
I have no way of testing this, but it appears to affect only OS/390 so I am
+1 for including it in 1.3.10. Jim?

Bill
----- Original Message -----
From: Greg Ames <gr...@us.ibm.com>
To: <ne...@apache.org>
Sent: Wednesday, January 12, 2000 9:04 PM
Subject: [PATCH] OS/390 binbuild problems in Apache 1.3


> This patch takes care of a couple of binbuild problems in Apache 1.3.10:
>
> 1.  OS specific tests were failing to detect OS/390, causing the build to
choke
> when it tried to use DSO.
> 2.  Trim down the list of mods included in the binary to the usual set.
>
> Regards,  Greg Ames
>


----------------------------------------------------------------------------
----


> --- apache-1.3/src/helpers/binbuild.sh Thu Dec  9 12:19:42 1999
> +++ binbuild.sh Wed Jan 12 21:46:40 2000
> @@ -8,7 +8,7 @@
>
>  OS=`src/helpers/GuessOS`
>  case "x$OS" in
> -  x*390)
CONFIGPARAM="--with-layout=BinaryDistribution --enable-module=most --enable-
module=log_agent --enable-module=log_referer --enable-module=example --enabl
e-module=mmap_static";;
> +  x*390*)
CONFIGPARAM="--with-layout=BinaryDistribution --enable-module=most";;
>        *)
CONFIGPARAM="--with-layout=BinaryDistribution --enable-module=most --enable-
shared=max";;
>  esac
>  APDIR=`pwd`
> @@ -272,7 +272,7 @@
>      if [ "x$TAR" != "x" ]
>      then
>        case "x$OS" in
> -        x*390) $TAR -cfU ../apache_$VER-$OS.tar -C .. apache_$VER;;
> +        x*390*) $TAR -cfU ../apache_$VER-$OS.tar -C .. apache_$VER;;
>       *) $TAR -cf ../apache_$VER-$OS.tar -C .. apache_$VER;;
>        esac
>        if [ "x$GZIP" != "x" ]
>