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


version 1.3 version 1.4
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.3 1999/06/19 20:45:18 cvs Exp $)  AC_REVISION($Id: configure.in,v 1.4 1999/08/23 00:26:11 cvs Exp $)
   
 AC_INIT(CREDITS)  AC_INIT(CREDITS)
   
Line 52
 
Line 52
 AC_PATH_PROG(RM, rm)  AC_PATH_PROG(RM, rm)
 AC_PATH_PROG(AR, ar)  AC_PATH_PROG(AR, ar)
 AC_PATH_PROG(LATEX, latex)  AC_PATH_PROG(LATEX, latex)
   AC_PATH_PROG(GZIP, gzip)
   AC_PATH_PROG(GUNZIP, gunzip)
   if eval "test -n $GZIP -a -z $GUNZIP" ; then
       echo "Found gzip, but not gunzip - setting GUNZIP to gzip -c";
       GUNZIP="$GZIP -c"
   fi;
   
   if eval "test -z $COMPRESS"; then
    AC_PATH_PROG(COMPRESS, compress)
    AC_PATH_PROG(UNCOMPRESS, uncompress)
   fi
   
   AC_PATH_PROG(BZIP, bzip2)
   AC_PATH_PROG(BUNZIP, bunzip2)
   if eval "test -n $BZIP -a -z $BUNZIP" ; then
       echo "Found bzip2, but not bunzip2 - setting BUNZIP to bzip2 -c";
       BUNZIP="$BZIP -c"
   fi;
   
   if eval "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 "any files.";
   fi;
   
 AC_PATH_PROGS(BOURNE_SHELL, sh ksh bash)  AC_PATH_PROGS(BOURNE_SHELL, sh ksh bash)
   
Line 185
 
Line 208
 AC_DEFINE_UNQUOTED(PREFIXDIR, "${nprefix}")  AC_DEFINE_UNQUOTED(PREFIXDIR, "${nprefix}")
 AC_DEFINE_UNQUOTED(DATADIR, "${ndatadir}")  AC_DEFINE_UNQUOTED(DATADIR, "${ndatadir}")
 AC_DEFINE_UNQUOTED(LOCALDIR, "${nlocaldir}")  AC_DEFINE_UNQUOTED(LOCALDIR, "${nlocaldir}")
   AC_DEFINE_UNQUOTED(COMPRESS,"${COMPRESS}")
   AC_DEFINE_UNQUOTED(UNCOMPRESS,"${UNCOMPRESS}")
   AC_DEFINE_UNQUOTED(GZIP,"${GZIP}")
   AC_DEFINE_UNQUOTED(GUNZIP,"${GUNZIP}")
   AC_DEFINE_UNQUOTED(BZIP,"${BZIP}")
   AC_DEFINE_UNQUOTED(BUNZIP,"${BUNZIP}")
   
 datadir=${ndatadir}  datadir=${ndatadir}
 localstatedir=${nlocaldir}  localstatedir=${nlocaldir}


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

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