r47: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Thu, 11 May 2000 01:04:32 +0000 (01:04 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Thu, 11 May 2000 01:04:32 +0000 (01:04 +0000)
ChangeLog
INSTALL
Makefile.am
NEWS
config.h.in
configure.in

index e38556ff06cdfb6943701c8b0f376ad5f5cabf88..822716741e7864e9c5e2a20450ed9f52f4da305c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+0.5.2-b6 - 5/6/2000
+   Added Microsoft VC compatibility
+       
 0.5.2-b5 - 5/7/2000
    Continued conversion to ANSI C      
    Removed old CRT routines
diff --git a/INSTALL b/INSTALL
index fb16ada79c4b180ca775c103d903e3b94c9c16cf..e87625f701addea0d6a1841b43fbb316759bbcaa 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -41,7 +41,11 @@ Platforms Supported
 -------------------
 
 Recent development is with GNU/Linux. I have tested compilation on
-FreeBSD v4.0, BSD/OS v3.0, and Solaris v8.
+FreeBSD v4.0, BSD/OS v3.0, and Solaris v8, and Microsoft Visual C++ v6.
+
+Microsoft Windows Installation
+------------------------------
+Run make.bat from the root directory
 
 
 Basic Installation
index c2d2f85d70cc7cd3d92c0ba1113ec160e2f5f7cc..cbe2168a7761492d48127171b22e963d9cce1afd 100644 (file)
@@ -11,7 +11,7 @@ EXTRA_DIRS2=
 endif
 
 SUBDIRS=$(EXTRA_DIRS1) $(EXTRA_DIRS2) libcio libk libkmath libir src man html cgi-bin include 
-
+EXTRA_DIST=acsite.m4 make.bat
 
 
 
diff --git a/NEWS b/NEWS
index 6ecfdb90a7b1394f029da7f3f04e714bfcfe4b8e..c08b246f3f44edfa22d4d0d15e304db9f79768b9 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,6 @@
-0.5.0
-April 27, 2000
+0.5.2 - May 11, 2000
+Numerous bug fixes
+Added Microsoft Windows compatibility
 
+0.5.0 - April 27, 2000
 This is the first open source release
index 7828cc2951a2a600f68c9a4a043cddf6570b1d14..1c52ca164c02c957ef75144a5ba55bbf73ab8d81 100644 (file)
@@ -42,6 +42,9 @@
 /* Define is have interactive graphics */
 #undef HAVE_INTERACTIVE_GRAPHICS
 
+/* Define if you have the snprintf function.  */
+#undef HAVE_SNPRINTF
+
 /* Define if you have the strtod function.  */
 #undef HAVE_STRTOD
 
index d2167b9dde7f6b539c5767b7bdb48012dce7c6cb..3586b1179d9866237827b313371c4678392bb1be 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-b5)
+AM_INIT_AUTOMAKE(ctsim,0.5.2)
 AM_CONFIG_HEADER(config.h)
 
 dnl Checks for programs.
@@ -40,7 +40,7 @@ AC_STRUCT_TM
 
 dnl Checks for library functions.
 AC_FUNC_VPRINTF
-AC_CHECK_FUNCS(strtod strtol)
+AC_CHECK_FUNCS(strtod strtol snprintf)
 AC_CHECK_FUNC(basename)
 AC_CHECK_FUNC(setjmp)
 AC_CHECK_FUNC(getopt_long,
@@ -83,9 +83,14 @@ dnl Check for debug mode
 AC_ARG_ENABLE(debug,
 [  --enable-debug          Turn on debugging],
 [case "${enableval}" in
-  yes) debug=true ;;
-  no)  debug=false ;;
-  *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
+  yes) debug=true 
+       CFLAGS="$CFLAGS -g"
+       ;;
+  no)  debug=false 
+       CFLAGS="$CFLAGS -O2"
+       ;;
+  *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) 
+       ;;
 esac],[debug=false])
 AM_CONDITIONAL(DEBUG, test "$debug" = "true")