r34: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 3 May 2000 19:52:25 +0000 (19:52 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 3 May 2000 19:52:25 +0000 (19:52 +0000)
ChangeLog
config.h.in
configure.in

index d69b11c6d02db48835da74ce912aa78cdfb35e95..e67686f2744b465e98ae55c85e2d24d550c9b859 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 0.5.2-b3 - 4/30/200
     More code cleanup with reorganizing libraries
+    Added --log and --exp to sdf-1
+    Allowed negative numbers for window levels in CGI interface
        
 0.5.2-b2 - 4/30/200
     Continued code cleanup
index 1c7a32c54063697c0d4da33b21bf5478013ffcf0..7828cc2951a2a600f68c9a4a043cddf6570b1d14 100644 (file)
 /* Define if you have the <getopt.h> header file.  */
 #undef HAVE_GETOPT_H
 
+/* Define if you have the <inttypes.h> header file.  */
+#undef HAVE_INTTYPES_H
+
 /* Define if you have the <math.h> header file.  */
 #undef HAVE_MATH_H
 
+/* Define if you have the <netinet/in.h> header file.  */
+#undef HAVE_NETINET_IN_H
+
 /* Define if you have the <setjmp.h> header file.  */
 #undef HAVE_SETJMP_H
 
 /* Define if you have the <stddef.h> header file.  */
 #undef HAVE_STDDEF_H
 
+/* Define if you have the <stdint.h> header file.  */
+#undef HAVE_STDINT_H
+
 /* Define if you have the <stdio.h> header file.  */
 #undef HAVE_STDIO_H
 
+/* Define if you have the <stdlib.h> header file.  */
+#undef HAVE_STDLIB_H
+
 /* Define if you have the <string.h> header file.  */
 #undef HAVE_STRING_H
 
 /* Define if you have the <sys/fcntl.h> header file.  */
 #undef HAVE_SYS_FCNTL_H
 
+/* Define if you have the <sys/param.h> header file.  */
+#undef HAVE_SYS_PARAM_H
+
 /* Define if you have the <sys/stat.h> header file.  */
 #undef HAVE_SYS_STAT_H
 
index 45a3342426ee8786e65856659ff10604e7bcf4c1..d99301354cac1e8729ac4cdb4d8babdb53841edc 100644 (file)
@@ -4,7 +4,7 @@ dnl Must reset CDPATH so that bash's cd does not print to stdout
 dnl CDPATH=
 
 AC_INIT(src/ctrec.c)
-AM_INIT_AUTOMAKE(ctsim,0.5.2-b3)
+AM_INIT_AUTOMAKE(ctsim,0.5.2-b4)
 AM_CONFIG_HEADER(config.h)
 
 dnl Checks for programs.
@@ -29,7 +29,7 @@ AC_CHECK_LIB(ncurses, main, [ncurses=true], [ncurses=false])
  
 dnl Checks for header files.
 AC_HEADER_STDC
-AC_CHECK_HEADERS(fcntl.h unistd.h getopt.h sys/fcntl.h setjmp.h stdarg.h stddef.h sys/types.h sys/stat.h string.h ctype.h math.h stdio.h)
+AC_CHECK_HEADERS(fcntl.h unistd.h getopt.h sys/fcntl.h setjmp.h stdarg.h stddef.h sys/types.h sys/stat.h string.h ctype.h math.h stdio.h netinet/in.h inttypes.h sys/param.h stdint.h stdlib.h)
 
 dnl Checks for typedefs, structures, and compiler characteristics.
 AC_C_CONST
@@ -191,7 +191,7 @@ if test -n "$cgibindir" -o -n "$cgibinurl" ; then
 fi
 
 if test -n "$htmldir" ; then
-  htmldata=ctsim.html
+  htmldata=simulate.html
   AC_SUBST(htmldata)
 fi
 AM_CONDITIONAL(USE_HTML, test -n "$htmldir")
@@ -294,4 +294,4 @@ if test -n "$lamdir" ; then
   AC_SUBST(ctlamlibs)
 fi
 
-AC_OUTPUT(Makefile libezplot/Makefile src/Makefile libgraph/Makefile libkmath/Makefile Makefile libk/Makefile libir/Makefile libcio/Makefile man/Makefile cgi-bin/ctsim.cgi cgi-bin/Makefile html/ctsim.html html/Makefile include/Makefile getopt/Makefile src/sample-ctrec.sh cgi-bin/ctsim.conf)
+AC_OUTPUT(Makefile libezplot/Makefile src/Makefile libgraph/Makefile libkmath/Makefile Makefile libk/Makefile libir/Makefile libcio/Makefile man/Makefile cgi-bin/ctsim.cgi cgi-bin/Makefile html/simulate.html html/Makefile include/Makefile getopt/Makefile src/sample-ctrec.sh cgi-bin/ctsim.conf)