home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
perl-5.003-src.tgz
/
tar.out
/
fsf
/
perl
/
configure
< prev
next >
Wrap
Text File
|
1996-09-30
|
2KB
|
131 lines
#! /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 <doughera@lafcol.lafayette.edu>
# and Matthew Green <mrg@mame.mu.oz.au>.
#
# Reformatted and modified for inclusion in the dist-3.0 package by
# Raphael Manfredi <ram@hptnos02.grenoble.hp.com>.
#
# 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
#
callme=$0
(exit $?0) || exec sh $0 $argv:q
opts=''
verbose=''
create='-e'
while test $# -gt 0; do
case $1 in
--help)
cat <<EOM
Usage: configure [options]
This is GNU configure-like front end for a metaconfig-generated Configure.
It emulates the following GNU configure options (must be fully spelled out):
--cache-file (ignored)
--help
--no-create
--prefix=PREFIX
--quiet
--silent
--verbose or -v
--version
And it honours these environment variables: CC, CFLAGS and DEFS.
EOM
exit 0
;;
--cache-file=*)
shift # Just ignore it.
;;
--srcdir=*)
shift # Just ignore it.
;;
--no-create)
create='-E'
shift
;;
--prefix=*)
arg=`echo $1 | sed 's/--prefix=/-Dprefix=/'`
opts="$opts $arg"
shift
;;
--quiet|--silent)
exec >/dev/null 2>&1
shift
;;
--verbose|-v)
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
if [ "$callme" != 'configure' ]
then
calldir=`dirname "$callme"`
curdir=`pwd`
cd $calldir
calldir=`pwd`
cd $curdir
if [ "$curdir" != "$calldir" ]
then
cp -R $calldir/* .
fi
fi
set X sh _Configure $copt $create $opts
shift
echo "$@"
exec "$@"