pike.git/
src/
configure.in
Branch:
Tag:
Non-build tags
All tags
No tags
2006-02-26
2006-02-26 04:01:59 by Martin Stjernholm <mast@lysator.liu.se>
2c2e841e7040d621c0c28c4dedf6ec725c6dff82 (
11
lines) (+
6
/-
5
)
[
Show
|
Annotate
]
Branch:
7.9
Fixed overcaching problem with computed goto switch.
Rev: src/configure.in:1.940
1:
-
AC_REVISION("$Id: configure.in,v 1.
939
2006/
01
/
13
20
:
17
:
21
grubba
Exp $")
+
AC_REVISION("$Id: configure.in,v 1.
940
2006/
02
/
26
04
:
01
:
59
mast
Exp $")
AC_INIT(interpret.c) AC_CONFIG_HEADER(machine.h)
2166:
# MinGW system. cat <<\EOF #!/bin/sh
-
# Automatically generated by $Id: configure.in,v 1.
939
2006/
01
/
13
20
:
17
:
21
grubba
Exp $.
+
# Automatically generated by $Id: configure.in,v 1.
940
2006/
02
/
26
04
:
01
:
59
mast
Exp $.
# MinGW-version. Do NOT edit. posix_name="`cat`" posix_prefix="/"
2204:
# Native POSIX system. cat <<\EOF #!/bin/sh
-
# Automatically generated by $Id: configure.in,v 1.
939
2006/
01
/
13
20
:
17
:
21
grubba
Exp $.
+
# Automatically generated by $Id: configure.in,v 1.
940
2006/
02
/
26
04
:
01
:
59
mast
Exp $.
# POSIX-version. Do NOT edit. cat EOF
2213:
# rntcl-style cat <<\EOF #!/bin/sh
-
# Automatically generated by $Id: configure.in,v 1.
939
2006/
01
/
13
20
:
17
:
21
grubba
Exp $.
+
# Automatically generated by $Id: configure.in,v 1.
940
2006/
02
/
26
04
:
01
:
59
mast
Exp $.
# RNTCL-version. Do NOT edit. sed -e "$PIKE_PATH_TRANSLATE" EOF
6137:
if test "$with_machine_code" = "yes" ; then AC_DEFINE_UNQUOTED(PIKE_BYTECODE_METHOD, [[PIKE_BYTECODE_`echo $pike_cv_machine_code_arch | tr '[a-z]' '[A-Z]'`]]) byte_code_format=$pike_cv_machine_code_arch
-
elif test "x$pike_cv_gcc_computed_goto" = "xyes"; then
+
elif test "
x$with_computed_goto" = "xyes" -a "
x$pike_cv_gcc_computed_goto" = "xyes"; then
AC_DEFINE(PIKE_BYTECODE_METHOD, PIKE_BYTECODE_GOTO) byte_code_format="computed goto" else