From 27e7900bb6bfafa3d5a66707b102017183fc056c Mon Sep 17 00:00:00 2001 From: Martin Kraemer Date: Thu, 9 Dec 1999 17:19:42 +0000 Subject: [PATCH] OS specific patches for IBM's OS/390. Submitted by: Ovies Brabson Reviewed by: Martin Kraemer, Paul Gilmartin git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84262 13f79535-47bb-0310-9956-ffa450edef68 --- build/binbuild.sh | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/build/binbuild.sh b/build/binbuild.sh index e6c3a4b4a9..16eb20263c 100755 --- a/build/binbuild.sh +++ b/build/binbuild.sh @@ -6,12 +6,14 @@ # This script falls under the Apache License. # See http://www.apache.org/docs/LICENSE - -CONFIGPARAM="--with-layout=BinaryDistribution --enable-module=most --enable-shared=max" +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 --enable-module=mmap_static";; + *) CONFIGPARAM="--with-layout=BinaryDistribution --enable-module=most --enable-shared=max";; +esac APDIR=`pwd` APDIR=`basename $APDIR` VER=`echo $APDIR |sed s/apache_//` -OS=`src/helpers/GuessOS` TAR="`src/helpers/PrintPath tar`" GTAR="`src/helpers/PrintPath gtar`" GZIP="`src/helpers/PrintPath gzip`" @@ -269,7 +271,10 @@ else else if [ "x$TAR" != "x" ] then - $TAR -cf ../apache_$VER-$OS.tar -C .. apache_$VER + case "x$OS" in + 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" ] then $GZIP ../apache_$VER-$OS.tar -- 2.50.1