Diff for /gforth/configure.in between versions 1.315 and 1.316

version 1.315, 2012/10/05 23:48:26 version 1.316, 2012/10/07 21:07:18
Line 20  dnl Process this file with autoconf to p Line 20  dnl Process this file with autoconf to p
   
 dnl We use some automake macros here,  dnl We use some automake macros here,
 dnl but don't use automake for creating Makefile.in  dnl but don't use automake for creating Makefile.in
 AC_INIT([gforth],[0.7.9-20120730],[https://savannah.gnu.org/bugs/?func=addbug&group=gforth])  AC_INIT([gforth],[0.7.9-20121007],[https://savannah.gnu.org/bugs/?func=addbug&group=gforth])
 AC_PREREQ(2.54)  AC_PREREQ(2.54)
 #snapshots have numbers major.minor.release-YYYYMMDD  #snapshots have numbers major.minor.release-YYYYMMDD
 #note that lexicographic ordering must be heeded.  #note that lexicographic ordering must be heeded.
 #I.e., 0.4.1-YYYYMMDD must not exist before 0.4.1!  #I.e., 0.4.1-YYYYMMDD must not exist before 0.4.1!
 UPDATED="July 30, 2012"  UPDATED="October 7, 2012"
 AC_SUBST(UPDATED)  AC_SUBST(UPDATED)
 AC_CONFIG_HEADERS(engine/config.h)  AC_CONFIG_HEADERS(engine/config.h)
   
Line 762  AC_SUBST(disasm_fs) Line 762  AC_SUBST(disasm_fs)
 AC_PATH_PROG(INSTALL_INFO,install-info,[echo '>>>>Please make info dir entry:'],$PATH:/sbin:/usr/sbin:/usr/local/sbin)  AC_PATH_PROG(INSTALL_INFO,install-info,[echo '>>>>Please make info dir entry:'],$PATH:/sbin:/usr/sbin:/usr/local/sbin)
   
 case "$host_os" in  case "$host_os" in
         *win32*)  
                 # !!!FIXME!!! problems with cygwin and ';' as path separator  
                 DIRSEP="\\\\"  
                 PATHSEP=";"  
                 #we want the builtins of command.com/cmd.exe and its  
                 # handling of .com files.  
                 #$COMSPEC contains the name of the Windows shell;  
                 # the ./ is there, because the bash does not recognize  
                 # absolute DOS filenames  
                 DEFAULTSYSTEMPREFIX="./$COMSPEC /c "  
                 ;;  
         *darwin*)          *darwin*)
                   #dar*win* must be first, not to confuse with cygwin, win32 or similar
                 #Darwin uses some funny preprocessor by default; eliminate it:                  #Darwin uses some funny preprocessor by default; eliminate it:
                 AC_MSG_NOTICE([using -no-cpp-precomp on Darwin])                  AC_MSG_NOTICE([using -no-cpp-precomp on Darwin])
                 CFLAGS="$CFLAGS -no-cpp-precomp"                  CFLAGS="$CFLAGS -no-cpp-precomp"
Line 784  case "$host_os" in Line 774  case "$host_os" in
                 #http://mail.python.org/pipermail/pythonmac-sig/2005-October/015190.html                  #http://mail.python.org/pipermail/pythonmac-sig/2005-October/015190.html
                 AC_DEFINE_UNQUOTED(MACOSX_DEPLOYMENT_TARGET,"10.3",[an environment variable value needed by libtool on some MacOS X versions])                  AC_DEFINE_UNQUOTED(MACOSX_DEPLOYMENT_TARGET,"10.3",[an environment variable value needed by libtool on some MacOS X versions])
                 ;;                  ;;
           *win*)
                   # !!!FIXME!!! problems with cygwin and ';' as path separator
                   DIRSEP="/" # normal dirsep
                   PATHSEP=";" # semicolon as pathsep
                   #we want the builtins of command.com/cmd.exe and its
                   # handling of .com files.
                   #$COMSPEC contains the name of the Windows shell;
                   # the ./ is there, because the bash does not recognize
                   # absolute DOS filenames
                   DEFAULTSYSTEMPREFIX="./$COMSPEC /c "
                   ;;
         *linux*)          *linux*)
                 DIRSEP="/"                  DIRSEP="/"
                 PATHSEP=":"                  PATHSEP=":"
Line 1062  AC_CONFIG_FILES([ Line 1063  AC_CONFIG_FILES([
 Makefile  Makefile
 Makedist  Makedist
 gforthmi  gforthmi
   gforthmi.sh
 vmgen  vmgen
 machpc.fs  machpc.fs
 envos.fs  envos.fs

Removed from v.1.315  
changed lines
  Added in v.1.316


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>