From 18c9c86b110d5ba76a2b0d44f6be9f73fa0aeae1 Mon Sep 17 00:00:00 2001 From: Nick Ing-Simmons Date: Sat, 8 Nov 1997 15:07:24 +0000 Subject: [PATCH] Remove 'configure' leaving configure.gnu and Configure Win32 ignores case and keeps trying to update repository copy of 'configure' or 'Configure' with the other. p4raw-id: //depot/ansiperl@214 --- MANIFEST | 3 +- configure | 124 -------------------------------------------------------------- 2 files changed, 1 insertion(+), 126 deletions(-) delete mode 100755 configure diff --git a/MANIFEST b/MANIFEST index 6c6780c..53ffcab 100644 --- a/MANIFEST +++ b/MANIFEST @@ -4,8 +4,7 @@ Changes5.000 Differences between 4.x and 5.000 Changes5.001 Differences between 5.000 and 5.001 Changes5.002 Differences between 5.001 and 5.002 Changes5.003 Differences between 5.002 and 5.003 -configure Crude emulation of GNU configure -configure.gnu Copy of configure (for case-insensitive systems) +configure.gnu Crude emulation of GNU configure Configure Portability tool Copying The GNU General Public License EXTERN.h Included before foreign .h files diff --git a/configure b/configure deleted file mode 100755 index e101147..0000000 --- a/configure +++ /dev/null @@ -1,124 +0,0 @@ -#! /bin/sh -# -# $Id: configure,v 3.0.1.1 1995/07/25 14:16:21 ram Exp $ -# -# GNU configure-like front end to metaconfig's Configure. -# -# Written by Andy Dougherty -# and Matthew Green . -# -# Reformatted and modified for inclusion in the dist-3.0 package by -# Raphael Manfredi . -# -# This script belongs to the public domain and may be freely redistributed. -# -# The remaining of this leading shell comment may be removed if you -# include this script in your own package. -# -# $Log: configure,v $ -# Revision 3.0.1.1 1995/07/25 14:16:21 ram -# patch56: created -# - -(exit $?0) || exec sh $0 $argv:q - -case "$0" in -*configure) - if cmp $0 `echo $0 | sed -e s/configure/Configure/` >/dev/null; then - echo "Your configure and Configure scripts seem to be identical." - echo "This can happen on filesystems that aren't fully case sensitive." - echo "You'll have to explicitly extract Configure and run that." - exit 1 - fi - ;; -esac - -opts='' -verbose='' -create='-e' -while test $# -gt 0; do - case $1 in - --help) - cat </dev/null 2>&1 - shift - ;; - --verbose) - verbose=true - shift - ;; - --version) - copt="$copt -V" - shift - ;; - --*) - opt=`echo $1 | sed 's/=.*//'` - echo "This GNU configure front end does not understand $opt" - exit 1 - ;; - *) - opts="$opts $1" - shift - ;; - esac -done - -case "$CC" in -'') ;; -*) opts="$opts -Dcc='$CC'";; -esac - -# Join DEFS and CFLAGS together. -ccflags='' -case "$DEFS" in -'') ;; -*) ccflags=$DEFS;; -esac -case "$CFLAGS" in -'') ;; -*) ccflags="$ccflags $CFLAGS";; -esac -case "$ccflags" in -'') ;; -*) opts="$opts -Dccflags='$ccflags'";; -esac - -# Don't use -s if they want verbose mode -case "$verbose" in -'') copt="$copt -ds";; -*) copt="$copt -d";; -esac - -set X sh Configure $copt $create $opts -shift -echo "$@" -exec "$@" -- 2.7.4