Return-Path: Delivered-To: apache-cvs-archive@hyperreal.org Received: (qmail 27011 invoked by uid 6000); 13 Aug 1999 15:05:51 -0000 Received: (qmail 27001 invoked by uid 2016); 13 Aug 1999 15:05:50 -0000 Delivered-To: apcore-apache-1.3-cvs@apache.org Received: (qmail 26999 invoked by uid 240); 13 Aug 1999 15:05:49 -0000 Date: 13 Aug 1999 15:05:49 -0000 Message-ID: <19990813150549.26998.qmail@hyperreal.org> From: bjh@hyperreal.org To: apache-1.3-cvs@apache.org Subject: cvs commit: apache-1.3 configure Sender: apache-cvs-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org bjh 99/08/13 08:05:49 Modified: . configure Log: Translate module names to dll names for OS/2 so that they are no more than 8 characters long and have an extension of "dll" instead of "so". Revision Changes Path 1.101 +9 -0 apache-1.3/configure Index: configure =================================================================== RCS file: /home/cvs/apache-1.3/configure,v retrieving revision 1.100 retrieving revision 1.101 diff -u -r1.100 -r1.101 --- configure 1999/08/13 06:36:16 1.100 +++ configure 1999/08/13 15:05:48 1.101 @@ -1423,6 +1423,15 @@ done IFS="$OIFS" +# translate module names to dll names for OS/2 so that they are no more +# than 8 characters long and have an extension of "dll" instead of "so" +case $PLATFORM in + *OS/2* ) + echo $SEO "s%/mod_\\(.\\{1,8\\}\\).*\\.so%/\\1\\.dll%" >>$sedsubst + echo $SEO "s%/\\(lib.*\\)\\.so$%/\\1.dll%" >>$sedsubst + ;; +esac + # split sedsubst into chunks of 50 commands # to workaround limits in braindead seds files=`$AWK <$sedsubst '