pike.git/
src/
configure.in
Branch:
Tag:
Non-build tags
All tags
No tags
2005-08-28
2005-08-28 18:51:54 by 0
92c58be45c780d510fd89f1a100001c56580bc5b (
13
lines) (+
8
/-
5
)
[
Show
|
Annotate
]
Branch:
7.9
Fix for newer Autoconf versions that broke memcmp optimization.
Rev: src/configure.in:1.913
1:
-
AC_REVISION("$Id: configure.in,v 1.
912
2005/08/28
12
:
21
:
20
jonasw Exp $")
+
AC_REVISION("$Id: configure.in,v 1.
913
2005/08/28
18
:
51
:
54
jonasw Exp $")
AC_INIT(interpret.c) AC_CONFIG_HEADER(machine.h)
2441:
# MinGW system. cat <<\EOF #!/bin/sh
-
# Automatically generated by $Id: configure.in,v 1.
912
2005/08/28
12
:
21
:
20
jonasw Exp $.
+
# Automatically generated by $Id: configure.in,v 1.
913
2005/08/28
18
:
51
:
54
jonasw Exp $.
# MinGW-version. Do NOT edit. posix_name="`cat`" posix_prefix="/"
2479:
# Native POSIX system. cat <<\EOF #!/bin/sh
-
# Automatically generated by $Id: configure.in,v 1.
912
2005/08/28
12
:
21
:
20
jonasw Exp $.
+
# Automatically generated by $Id: configure.in,v 1.
913
2005/08/28
18
:
51
:
54
jonasw Exp $.
# POSIX-version. Do NOT edit. cat EOF
2488:
# rntcl-style cat <<\EOF #!/bin/sh
-
# Automatically generated by $Id: configure.in,v 1.
912
2005/08/28
12
:
21
:
20
jonasw Exp $.
+
# Automatically generated by $Id: configure.in,v 1.
913
2005/08/28
18
:
51
:
54
jonasw Exp $.
# RNTCL-version. Do NOT edit. sed -e "$PIKE_PATH_TRANSLATE" EOF
4085:
AC_FUNC_MEMCMP
-
if test "x$ac_cv_func_memcmp_clean" = "xyes"; then
+
# Old Autoconf set memcmp_clean while newer define memcmp_working
+
if test "x$ac_cv_func_memcmp_clean" = "xyes"
-o \
+
"x$ac_cv_func_memcmp_working" = "xyes"
; then
AC_DEFINE(HAVE_MEMCMP) fi