r65: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 3 Jun 2000 07:57:39 +0000 (07:57 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 3 Jun 2000 07:57:39 +0000 (07:57 +0000)
ChangeLog
configure.in

index 7b9e5f9c91f578b1e388f29478613a828c39e0f0..a2d75275ddf82452217fbc9f4aceee5ebde1847d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,7 @@
    Added support for 64-bit (IA64) CPU
    Removed broken B-spline interpolation
    Added support for cygwin platform under Windows 2000
+   Added support for 16-bit PNG graphics
        
 0.5.4-b2 - 5/16/2000
    Added compile-time configuration of endian order
index 4efaad3b199b140404f0cf7fb4a1c4f13e7f5e1e..b2c19d8355d81133b40c718fd812bec806efe3ea 100644 (file)
@@ -76,12 +76,12 @@ AC_FUNC_VPRINTF
 AC_CHECK_FUNCS(strtod strtol snprintf htonl)
 AC_CHECK_FUNC(basename)
 AC_CHECK_FUNC(setjmp)
-if ${OSTYPE} == "cygwin" ; then
+if test "${OSTYPE}" = "cygwin" ; then
   getopt_long=false
 else
   AC_CHECK_FUNC(getopt_long, [ getopt_long=true ], [ getopt_long=false ])
 fi
-if test getopt_long == "false" ; then
+if test "${getopt_long}" = "false" ; then
   my_includes="$myincludes -I../getopt"
   AC_DEFINE(HAVE_GETOPT_LONG)
   ctlibs_base="$ctlibs_base -lgetopt"