Diff for /gforth/configure.in between versions 1.39 and 1.43

version 1.39, 1998/10/18 23:16:51 version 1.43, 1998/12/19 23:15:08
Line 1 Line 1
 dnl Process this file with autoconf to produce a configure script.  dnl Process this file with autoconf to produce a configure script.
   
 #Copyright (C) 1995,1996 Free Software Foundation, Inc.  #Copyright (C) 1995,1996,1997,1998 Free Software Foundation, Inc.
   
 #This file is part of Gforth.  #This file is part of Gforth.
   
Line 85  case "$ac_cv_sizeof_char_p" in Line 85  case "$ac_cv_sizeof_char_p" in
     ;;      ;;
 esac  esac
   
   AC_CHECK_SIZEOF(char)
 AC_CHECK_SIZEOF(short)  AC_CHECK_SIZEOF(short)
 AC_CHECK_SIZEOF(int)  AC_CHECK_SIZEOF(int)
 AC_CHECK_SIZEOF(long)  AC_CHECK_SIZEOF(long)
Line 92  AC_CHECK_SIZEOF(long long) Line 93  AC_CHECK_SIZEOF(long long)
   
 ac_cv_int_type_cell=none  ac_cv_int_type_cell=none
 case "$ac_cv_sizeof_char_p" in  case "$ac_cv_sizeof_char_p" in
     $ac_cv_sizeof_int)
       ac_cv_int_type_cell=int
       ;;
   $ac_cv_sizeof_short)    $ac_cv_sizeof_short)
     ac_cv_int_type_cell=short      ac_cv_int_type_cell=short
     ;;      ;;
   $ac_cv_sizeof_int)    $ac_cv_sizeof_char)
     ac_cv_int_type_cell=int      ac_cv_int_type_cell=char
     ;;      ;;
   $ac_cv_sizeof_long)    $ac_cv_sizeof_long)
     ac_cv_int_type_cell=long      ac_cv_int_type_cell=long
Line 276  dnl using sin here is no good idea since Line 280  dnl using sin here is no good idea since
 AC_CHECK_LIB(m,asin)  AC_CHECK_LIB(m,asin)
 AC_CHECK_FUNCS(dlopen)  AC_CHECK_FUNCS(dlopen)
 AC_CHECK_LIB(dl,dlopen)  AC_CHECK_LIB(dl,dlopen)
 AC_CHECK_LIB(kernel32,GetModuleHandle)  
 if test "$host_os" != "nextstep3"  if test "$host_os" != "nextstep3"
 then  then
         AC_FUNC_MEMCMP          AC_FUNC_MEMCMP
Line 300  AC_SUBST(machine) Line 303  AC_SUBST(machine)
 dnl AC_LINK_FILES(arch/$machine,arch/machine) #no longer needed  dnl AC_LINK_FILES(arch/$machine,arch/machine) #no longer needed
 AC_OUTPUT([  AC_OUTPUT([
 Makefile  Makefile
   gforthmi
 engine/Makefile  engine/Makefile
 doc/version.texi ],echo timestamp > stamp-h)  doc/version.texi ],echo timestamp > stamp-h)
   chmod +x gforthmi

Removed from v.1.39  
changed lines
  Added in v.1.43


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