Difference for ./configure.in from version 1.4 to 1.5


version 1.4 version 1.5
Line 1
 
Line 1
 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)
   
Line 54
 
Line 54
 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;


Legend:
line(s) removed in v.1.4 
line(s) changed
 line(s) added in v.1.5

File made using version 1.98 of cvs2html by leaf at 2011-07-21 16:57