From 857f605911feae03aa672c870f9e868bd792016b Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Thu, 11 May 2000 01:04:32 +0000 Subject: [PATCH] r47: *** empty log message *** --- ChangeLog | 3 +++ INSTALL | 6 +++++- Makefile.am | 2 +- NEWS | 6 ++++-- config.h.in | 3 +++ configure.in | 15 ++++++++++----- 6 files changed, 26 insertions(+), 9 deletions(-) diff --git a/ChangeLog b/ChangeLog index e38556f..8227167 100644 --- 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 fb16ada..e87625f 100644 --- 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 diff --git a/Makefile.am b/Makefile.am index c2d2f85..cbe2168 100644 --- a/Makefile.am +++ b/Makefile.am @@ -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 6ecfdb9..c08b246 100644 --- 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 diff --git a/config.h.in b/config.h.in index 7828cc2..1c52ca1 100644 --- a/config.h.in +++ b/config.h.in @@ -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 diff --git a/configure.in b/configure.in index d2167b9..3586b11 100644 --- a/configure.in +++ b/configure.in @@ -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") -- 2.34.1