nuke quakeforge-config.in and quakeforge-config as it's broken and will be

replaced with a better setup (pkg-config)
This commit is contained in:
Bill Currie 2002-09-30 18:19:38 +00:00
parent b46ff2f728
commit fd8f019d57
2 changed files with 1 additions and 74 deletions

View file

@ -1966,7 +1966,6 @@ AC_SUBST(RANLIB)
dnl Output files
AC_OUTPUT(
Makefile
quakeforge-config
quakeforge.lsm
include/Makefile
@ -2049,7 +2048,7 @@ AC_OUTPUT(
RPM/quakeforge.conf
RPM/quakeforge.spec,
chmod +x quakeforge-config RPM/build_rpm
chmod +x RPM/build_rpm
if test -n "$AR" -a "$AR" != "ar"; then
sed -e 's/^AR="ar"$/AR="'$AR'"/' libtool > libtool.qf
if cmp -s libtool.qf libtool; then

View file

@ -1,72 +0,0 @@
#! /bin/sh
prefix=@prefix@
exec_prefix=@exec_prefix@
includedir=@includedir@
libdir=@libdir@
usage()
{
cat <<EOF
Usage: quakeforge-config [OPTION]
Known values for OPTION are:
--prefix=DIR change quakeforge prefix [default $prefix]
--libs print quakeforge linking information
--cflags print pre-processor and compiler flags
--help display this help and exit
--version output version information
EOF
exit $1
}
if test $# -eq 0; then
usage 1
fi
cflags=false
libs=false
while test $# -gt 0; do
case "$1" in
-*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
*) optarg= ;;
esac
case "$1" in
--prefix=*)
prefix=$optarg
;;
--prefix)
echo $prefix
;;
--version)
echo @VERSION@
exit 0
;;
--help)
usage 0
;;
--cflags)
echo @FIXME@
;;
--libs)
echo @FIXME@
;;
*)
usage
exit 1
;;
esac
shift
done
exit 0