From: Kevin M. Rosenberg Date: Sat, 3 Jun 2000 07:57:39 +0000 (+0000) Subject: r65: *** empty log message *** X-Git-Tag: debian-4.5.3-3~952 X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=commitdiff_plain;h=65a64e4e54688d6c20405472aad7810118a00147 r65: *** empty log message *** --- diff --git a/ChangeLog b/ChangeLog index 7b9e5f9..a2d7527 100644 --- 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 diff --git a/configure.in b/configure.in index 4efaad3..b2c19d8 100644 --- a/configure.in +++ b/configure.in @@ -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"