version 1.4 | | version 1.5 |
---|
| | |
dnl Process this file with autoconf to produce a configure script. | | dnl Process this file with autoconf to produce a configure script. |
| | |
AC_REVISION($Id: configure.in,v 1.4 1999/08/23 00:26:11 cvs Exp $) | | AC_REVISION($Id: configure.in,v 1.5 2000/02/08 07:51:27 cvs Exp $) |
| | |
AC_INIT(CREDITS) | | AC_INIT(CREDITS) |
| | |
| | |
AC_PATH_PROG(LATEX, latex) | | AC_PATH_PROG(LATEX, latex) |
AC_PATH_PROG(GZIP, gzip) | | AC_PATH_PROG(GZIP, gzip) |
AC_PATH_PROG(GUNZIP, gunzip) | | AC_PATH_PROG(GUNZIP, gunzip) |
if eval "test -n $GZIP -a -z $GUNZIP" ; then | | |
| | if test -n "$GZIP" -a -z "$GUNZIP" ; then |
echo "Found gzip, but not gunzip - setting GUNZIP to gzip -c"; | | echo "Found gzip, but not gunzip - setting GUNZIP to gzip -c"; |
GUNZIP="$GZIP -c" | | GUNZIP="$GZIP -c" |
fi; | | fi; |
| | |
if eval "test -z $COMPRESS"; then | | if test -z "$COMPRESS" ; then |
AC_PATH_PROG(COMPRESS, compress) | | AC_PATH_PROG(COMPRESS, compress) |
AC_PATH_PROG(UNCOMPRESS, uncompress) | | AC_PATH_PROG(UNCOMPRESS, uncompress) |
fi | | fi |
| | |
AC_PATH_PROG(BZIP, bzip2) | | AC_PATH_PROG(BZIP, bzip2) |
AC_PATH_PROG(BUNZIP, bunzip2) | | AC_PATH_PROG(BUNZIP, bunzip2) |
if eval "test -n $BZIP -a -z $BUNZIP" ; then | | |
| | if test -n "$BZIP" -a -z "$BUNZIP" ; then |
echo "Found bzip2, but not bunzip2 - setting BUNZIP to bzip2 -c"; | | echo "Found bzip2, but not bunzip2 - setting BUNZIP to bzip2 -c"; |
BUNZIP="$BZIP -c" | | BUNZIP="$BZIP -c" |
fi; | | fi; |
| | |
if eval "test -z $COMPRESS -a -z $GZIP -a -z $BZIP2"; then | | if test -z "$COMPRESS" -a -z "$GZIP" -a -z "$BZIP2" ; then |
echo "Unable to find either compress, bzip2, or gzip - hope you don't plan on compressing"; | | echo "Unable to find either compress, bzip2, or gzip - hope you don't plan on compressing"; |
echo "any files."; | | echo "any files."; |
fi; | | fi; |