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 '
  
  
  

Reply via email to