Diff for /gforth/configure.in between versions 1.268 and 1.269

version 1.268, 2009/02/15 22:13:32 version 1.269, 2009/03/17 17:35:02
Line 824  AC_CHECK_PROGS(TEXI2DVI,texi2dvi4a2ps te Line 824  AC_CHECK_PROGS(TEXI2DVI,texi2dvi4a2ps te
 dnl MacOS X has a libtool that does something else  dnl MacOS X has a libtool that does something else
 AC_CHECK_PROGS(GNU_LIBTOOL,"glibtool --tag=CC" libtool)  AC_CHECK_PROGS(GNU_LIBTOOL,"glibtool --tag=CC" libtool)
   
 if test -n "$GNU_LIBTOOL"; then  dnl Checks for library functions
   dnl This check is just for making later checks link with libm.
   dnl using sin here is no good idea since it is built-into gcc and typechecked
   AC_CHECK_LIB(m,asin)
   AC_CHECK_LIB(ltdl,lt_dlinit)
   
   if test -n "$GNU_LIBTOOL" -a $ac_cv_lib_ltdl_lt_dlinit = yes; then
   build_libcc_named=build-libcc-named    build_libcc_named=build-libcc-named
 else  else
   build_libcc_named=""    build_libcc_named=""
 fi  fi
 AC_SUBST(build_libcc_named)  AC_SUBST(build_libcc_named)
   
   
 dnl Checks for library functions  
 dnl This check is just for making later checks link with libm.  
 dnl using sin here is no good idea since it is built-into gcc and typechecked  
 AC_CHECK_LIB(m,asin)  
 AC_CHECK_LIB(ltdl,lt_dlinit)  
 #check for libffi 2.x  #check for libffi 2.x
 AC_CHECK_HEADER(ffi.h,FFI_H_NAME=ffi.h,)  AC_CHECK_HEADER(ffi.h,FFI_H_NAME=ffi.h,)
 if test -z "$FFI_H_NAME"; then  if test -z "$FFI_H_NAME"; then

Removed from v.1.268  
changed lines
  Added in v.1.269


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