]> granicus.if.org Git - apache/commitdiff
OS specific patches for IBM's OS/390.
authorMartin Kraemer <martin@apache.org>
Thu, 9 Dec 1999 17:19:42 +0000 (17:19 +0000)
committerMartin Kraemer <martin@apache.org>
Thu, 9 Dec 1999 17:19:42 +0000 (17:19 +0000)
Submitted by:   Ovies Brabson <oviesb@us.ibm.com>
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

index e6c3a4b4a9f9f4d0ce0574695193d1402208385e..16eb20263c4cdfcff48a23da2e1b099ac1f4de65 100755 (executable)
@@ -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