Diff for /gforth/configure.in between versions 1.184 and 1.186

version 1.184, 2007/04/22 20:06:25 version 1.186, 2007/05/09 07:12:59
Line 86  dnl   --without-peephole disables peepho Line 86  dnl   --without-peephole disables peepho
 dnl                     but slower images.],  dnl                     but slower images.],
 dnl PEEPHOLE="$withval")  dnl PEEPHOLE="$withval")
   
   GCC_LD="\$(GCC)"
   EC_MODE="false"
   EC=""
   engine2="engine2.o"
   engine_fast2="engine-fast2.o"
   no_dynamic=""
   image_i=""
   signals_o="io.o signals.o"
   
 AC_ARG_WITH(ec,  AC_ARG_WITH(ec,
         AC_HELP_STRING([--with-ec=<arch>],          AC_HELP_STRING([--with-ec=<arch>],
                         [  Build gforth for systems without OS.]),                          [  Build gforth for systems without OS.]),
 [if test "$withval" = "no"; then  [if test "$withval" = "no"; then
   echo "defining hosted system"    echo "defining hosted system"
   EC_MODE="false"  
   EC=""  
   engine2="engine2.o"  
   engine_fast2="engine-fast2.o"  
   no_dynamic=""  
   image_i=""  
   signals_o="io.o signals.o"  
   GCC_LD="\$(GCC)"  
 else  else
   echo "defining standalone system (${withval})"    echo "defining standalone system (${withval})"
   AC_DEFINE(STANDALONE,,[Define if you want a Gforth without OS])    AC_DEFINE(STANDALONE,,[Define if you want a Gforth without OS])
Line 768  then Line 769  then
 fi  fi
 AC_REPLACE_FUNCS(memmove strtoul pow10 strerror strsignal atanh)  AC_REPLACE_FUNCS(memmove strtoul pow10 strerror strsignal atanh)
 AC_FUNC_FSEEKO  AC_FUNC_FSEEKO
 AC_CHECK_FUNCS(ftello dlopen sys_siglist getrusage)  AC_CHECK_FUNCS(ftello dlopen sys_siglist getrusage nanosleep)
 AC_CHECK_TYPES(stack_t,,,[#include <signal.h>])  AC_CHECK_TYPES(stack_t,,,[#include <signal.h>])
 AC_DECL_SYS_SIGLIST  AC_DECL_SYS_SIGLIST
 AC_CHECK_FUNC(getopt_long,[true],[AC_LIBOBJ(getopt) AC_LIBOBJ(getopt1)])  AC_CHECK_FUNC(getopt_long,[true],[AC_LIBOBJ(getopt) AC_LIBOBJ(getopt1)])

Removed from v.1.184  
changed lines
  Added in v.1.186


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