Branch: Tag:

1999-10-23

1999-10-23 06:52:07 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>

lexer now accepts really really large numbers :)

Rev: src/block_alloc.h:1.13
Rev: src/configure.in:1.325
Rev: src/language.yacc:1.128
Rev: src/las.c:1.93
Rev: src/las.h:1.22
Rev: src/lexer.h:1.8
Rev: src/modules/Gmp/configure.in:1.8
Rev: src/opcodes.c:1.48
Rev: src/pike_memory.c:1.49
Rev: src/pike_memory.h:1.12
Rev: src/stralloc.c:1.70
Rev: src/stralloc.h:1.37

1: - AC_REVISION("$Id: configure.in,v 1.324 1999/10/19 01:11:30 grubba Exp $") + AC_REVISION("$Id: configure.in,v 1.325 1999/10/23 06:51:23 hubbe Exp $")   AC_INIT(interpret.c)   AC_CONFIG_HEADER(machine.h)   
440:   AC_ARG_WITH(thread-trace,[ --with-trace-threads enable individual tracing of threads],[AC_DEFINE(TRACE_THREADS)],[])   AC_ARG_WITH(compiler-trace,[ --with-compiler-trace enable tracing of the compiler],[AC_DEFINE(YYDEBUG)],[])   AC_ARG_WITH(security, [ --with-security enable internal pike security system],[AC_DEFINE(PIKE_SECURITY)],[]) - AC_ARG_WITH(bignums, [ --with-bignums enable internal conversion to bignums],[AC_DEFINE(AUTO_BIGNUM)],[]) + AC_ARG_WITH(bignums, [ --with-bignums enable internal conversion to bignums],[],[])    -  + if test "x$with_bignums" = xyes; then +  AC_DEFINE(AUTO_BIGNUM) +  if test "x$with_gmp" == xno; then +  AC_MSG_ERROR([Cannot compile --with-bignums without the GMP library + Either install GMP on your system or run configure with + the option --without-bignums. + ]) +  else :; fi + else :; fi +    if test "x$with_poll" = "xyes"; then    AC_DEFINE(HAVE_AND_USE_POLL)   else :; fi