Diff for /gforth/configure.in between versions 1.310 and 1.311

version 1.310, 2012/07/02 21:59:10 version 1.311, 2012/07/19 23:32:25
Line 110  else Line 110  else
   platform=${withval}    platform=${withval}
 fi])  fi])
   
   AC_ARG_ENABLE(lib,
           AC_HELP_STRING([--enable-lib],
                          [  Compile Gforth as shared library (default disabled).]),
           ,enable_lib=no)
   if test "$enable_lib" != "no"; then
      AC_DEFINE(HAS_LIB,,[Define if you want to build as shared library])
      libengines=libgforths
      libinstall=libinstall
      LIB_VERSION=0:8:0
   fi
   AC_SUBST(libengines)
   AC_SUBST(libinstall)
   AC_SUBST(LIB_VERSION)
   
 AC_ARG_WITH(cross,  AC_ARG_WITH(cross,
         AC_HELP_STRING([--with-cross=<arch>],          AC_HELP_STRING([--with-cross=<arch>],
                         [  Build gforth using a cross compiler.]),                          [  Build gforth using a cross compiler.]),

Removed from v.1.310  
changed lines
  Added in v.1.311


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