9d2b70 | 2003-02-09 | Martin Stjernholm | | AC_REVISION("$Id: configure.in,v 1.684 2003/02/09 15:41:10 mast Exp $")
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | AC_INIT(interpret.c)
|
af5647 | 1996-12-03 | Fredrik Hübinette (Hubbe) | | AC_CONFIG_HEADER(machine.h)
|
51bd9e | 1996-10-09 | Fredrik Hübinette (Hubbe) | |
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | rm -f config.warnings 2>/dev/null
|
6aa4d7 | 2002-06-25 | Henrik Grubbström (Grubba) | | if test "0`echo 'if(AC_ACVERSION >= 2.50)1'|bc`" = "01"; then
|
aa47bd | 2002-06-25 | Henrik Grubbström (Grubba) | | if test "x$cache_file" = "x/dev/null"; then
cache_file=./config.cache
if test -r "$cache_file"; then
echo "loading cache $cache_file"
. $cache_file
else
echo "creating cache $cache_file"
> $cache_file
fi
fi
|
4969eb | 2002-12-19 | Marcus Comstedt | | else
PIKE_MSG_WARN([configure script has been generated with autoconf 2.13 or earlier.])
|
aa47bd | 2002-06-25 | Henrik Grubbström (Grubba) | | fi
|
ea2406 | 1997-04-01 | Henrik Grubbström (Grubba) | | # We want an absolute path to the source-dir.
case "$srcdir" in
/*)
;;
*)
oldsrcdir="$srcdir"
srcdir="`cd \"$srcdir\";pwd`"
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | AC_MSG_WARN([
Converted $oldsrcdir to $srcdir,
If this does not work, please use an absolute path to the configure script.
])
|
ea2406 | 1997-04-01 | Henrik Grubbström (Grubba) | | ;;
esac
|
c334a0 | 2001-03-27 | Henrik Grubbström (Grubba) | | # Attempt to use bash instead of /bin/sh to run configure
# since bash is usually several orders of magnitude faster
# on machines that have a real /bin/sh.
|
27152b | 2002-12-14 | Henrik Grubbström (Grubba) | | # Some OS's also have a seriously broken /bin/sh (eg NetBSD).
|
c334a0 | 2001-03-27 | Henrik Grubbström (Grubba) | | if test "x$CONFIG_SHELL" = "x"; then
AC_PATH_PROG(bash_prog, bash, no)
if test "x$ac_cv_path_bash_prog" = "xno"; then :; else
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | AC_MSG_WARN([
Found bash as $ac_cv_path_bash_prog.
|
c334a0 | 2001-03-27 | Henrik Grubbström (Grubba) | | Will attempt to restart configure with bash for performance.
If this fails, please set CONFIG_SHELL to /bin/sh before starting configure.
])
CONFIG_SHELL="$ac_cv_path_bash_prog"
export CONFIG_SHELL
echo $CONFIG_SHELL "$srcdir/configure" $ac_configure_args
|
89b28a | 2001-05-31 | Fredrik Hübinette (Hubbe) | | eval exec $CONFIG_SHELL "$srcdir/configure" $ac_configure_args
exit 17
|
c334a0 | 2001-03-27 | Henrik Grubbström (Grubba) | | fi
else :; fi
|
27152b | 2002-12-14 | Henrik Grubbström (Grubba) | | AC_PROG_MAKE_SET
|
42496b | 2002-12-14 | Henrik Grubbström (Grubba) | |
rm "conftest_VPATH.in" 2>/dev/null
|
f156cc | 2002-12-14 | Henrik Grubbström (Grubba) | | touch "$srcdir/conftest_VPATH.in"
|
bad86f | 2002-12-14 | Henrik Grubbström (Grubba) | | if test -f conftest_VPATH.in; then :; else
|
27152b | 2002-12-14 | Henrik Grubbström (Grubba) | | # Not building in source tree.
AC_MSG_CHECKING([whether ${MAKE-make} supports VPATH])
AC_CACHE_VAL(pike_cv_make_supports_VPATH, [
cat > conftestmake <<EOF
VPATH=.:$srcdir
|
22e80f | 2002-12-14 | Henrik Grubbström (Grubba) | | .SUFFIXES: .in .out
.in.out:
|
27152b | 2002-12-14 | Henrik Grubbström (Grubba) | | cat "\$<" >"\$@"
EOF
pike_cv_make_supports_VPATH=no
|
f156cc | 2002-12-14 | Henrik Grubbström (Grubba) | | if ${MAKE-make} -f conftestmake conftest_VPATH.out >/dev/null 2>&5; then
if test -f conftest_VPATH.out; then
|
27152b | 2002-12-14 | Henrik Grubbström (Grubba) | | pike_cv_make_supports_VPATH=yes
else :; fi
else :; fi
|
f156cc | 2002-12-14 | Henrik Grubbström (Grubba) | | rm -f conftestmake conftest_VPATH.out
|
27152b | 2002-12-14 | Henrik Grubbström (Grubba) | | ])
AC_MSG_RESULT($pike_cv_make_supports_VPATH)
if test "x$pike_cv_make_supports_VPATH" = "xno"; then
|
fbbc94 | 2002-12-15 | Henrik Grubbström (Grubba) | | AC_ERROR([
Building in a separate directory is not supported without VPATH.
|
27152b | 2002-12-14 | Henrik Grubbström (Grubba) | |
|
fbbc94 | 2002-12-15 | Henrik Grubbström (Grubba) | | Build in the source directory, or try another make (eg gnumake).
])
exit 1
|
27152b | 2002-12-14 | Henrik Grubbström (Grubba) | | else :; fi
fi
|
f156cc | 2002-12-14 | Henrik Grubbström (Grubba) | | rm "$srcdir/conftest_VPATH.in" 2>/dev/null
|
27152b | 2002-12-14 | Henrik Grubbström (Grubba) | |
|
3084f2 | 2002-12-07 | Mirar (Pontus Hagland) | | AC_ARG_ENABLE(make_conf, MY_DESCR([--disable-make.conf],
[do not use settings from /etc/make.conf]),
[], [enable_make_conf=yes])
|
48ae53 | 1996-10-09 | Fredrik Hübinette (Hubbe) | | if test "x${CFLAGS-}" = x ; then
|
51bd9e | 1996-10-09 | Fredrik Hübinette (Hubbe) | | cflags_is_set=no
|
48ae53 | 1996-10-09 | Fredrik Hübinette (Hubbe) | | else
cflags_is_set=yes
|
51bd9e | 1996-10-09 | Fredrik Hübinette (Hubbe) | | fi
|
c67b69 | 1996-11-16 | Fredrik Hübinette (Hubbe) | | if test "x${CPPFLAGS-}" = x ; then
cppflags_is_set=no
else
cppflags_is_set=yes
fi
if test "x${LDFLAGS-}" = x ; then
ldflags_is_set=no
else
ldflags_is_set=yes
fi
|
bd841c | 2002-12-10 | Henrik Grubbström (Grubba) | | if test "x$enable_make_conf" = x"yes" -a -f /etc/make.conf; then
set >conftest.tmp
echo Using settings from /etc/make.conf...
source /etc/make.conf
set | diff -u conftest.tmp - | grep '^+C'
|
b702f3 | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN([Using settings from /etc/make.conf.])
|
bd841c | 2002-12-10 | Henrik Grubbström (Grubba) | | fi
|
a1c502 | 2001-10-06 | Henrik Grubbström (Grubba) | | AC_ARG_WITH(cflags, MY_DESCR([--with-cflags=cflags],
[specify extra c compiler flags]),
[ CFLAGS="$with_cflags $CFLAGS" ])
AC_ARG_WITH(cppflags, MY_DESCR([--with-cppflags=cppflags],
[specify extra c preprocessor flags]),
[ CPPFLAGS="$with_cppflags $CPPFLAGS" ])
AC_ARG_WITH(ldflags, MY_DESCR([--with-ldflags=ldflags],
[specify extra linker flags]),
[ LDFLAGS="$with_ldflags $LDFLAGS" ])
|
f2e5eb | 2001-04-25 | Henrik Grubbström (Grubba) | |
|
7b3941 | 1997-02-06 | Fredrik Hübinette (Hubbe) | | for ac_site_file in $CONFIG_SITE; do
if test -r "$ac_site_file"; then
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN([You are using a site file to initialize configure, please
|
7b3941 | 1997-02-06 | Fredrik Hübinette (Hubbe) | | note that this can lead to problems if anything in
$ac_site_file is not correct. If Pike does not compile, or
does not run, please try this to compile Pike again:
rm ./config.cache ; CONFIG_SITE=x ./configure ; make])
fi
done
|
a1c502 | 2001-10-06 | Henrik Grubbström (Grubba) | | AC_ARG_ENABLE(binary, MY_DESCR([--disable-binary],
|
a92414 | 2002-11-18 | Henrik Grubbström (Grubba) | | [do not configure for binary build, only do tests for precompilation stuff]),
|
a1c502 | 2001-10-06 | Henrik Grubbström (Grubba) | | [], [enable_binary=yes])
|
417454 | 2001-01-26 | Martin Stjernholm | |
if test "x$enable_binary" = "xno"; then
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN([
|
c6f4a8 | 2002-01-27 | Martin Stjernholm | |
Short-circuiting configure tests for binary building. Only some
targets in the Makefile can be used, typically those that only
operates on the source directory, e.g. depend.
])
|
5c9db4 | 2002-01-27 | Martin Stjernholm | | AC_DEFINE(DISABLE_BINARY)
|
417454 | 2001-01-26 | Martin Stjernholm | | else
|
1acce8 | 2001-01-27 | Martin Stjernholm | | if test ! -z "$pike_cv_prog_CC_save" -a ! -z "$CC" -a "$CC" != "$pike_cv_prog_CC_save"
then
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN([CC is different than last time Pike was compiled,
|
1acce8 | 2001-01-27 | Martin Stjernholm | | It is probably best to delete ./config.cache before proceeding])
fi
|
7b3941 | 1997-02-06 | Fredrik Hübinette (Hubbe) | |
|
1acce8 | 2001-01-27 | Martin Stjernholm | | pike_cv_prog_CC_save="$CC"
|
7b3941 | 1997-02-06 | Fredrik Hübinette (Hubbe) | |
|
c6f4a8 | 2002-01-27 | Martin Stjernholm | | fi
|
abeefc | 2002-04-30 | Martin Stjernholm | | AC_ARG_ENABLE(noopt-retry, MY_DESCR([--disable-noopty-retry],
|
a92414 | 2002-11-18 | Henrik Grubbström (Grubba) | | [do not retry compilation without optimizations if it fails]),
|
abeefc | 2002-04-30 | Martin Stjernholm | | [], [noopt_retry=yes])
|
c6f4a8 | 2002-01-27 | Martin Stjernholm | | # Do the below even when --disable-binary is used, since we need a
# real $CPP, and AC_PROG_CPP wants AC_PROG_CC to be called earlier.
# $CC will be overridden with a dummy later on.
# MY_AC_PROG_CC
# The above has problems if the smartlink binary is removed. /grubba
AC_PROG_CC
AC_PROG_CPP
|
2ed72c | 2000-09-17 | Henrik Grubbström (Grubba) | |
#############################################################################
|
c6f4a8 | 2002-01-27 | Martin Stjernholm | | if test "x$enable_binary" != "xno"; then
|
1acce8 | 2001-01-27 | Martin Stjernholm | | AC_ISC_POSIX
AC_AIX
AC_MINIX
fi
|
2ed72c | 2000-09-17 | Henrik Grubbström (Grubba) | |
#############################################################################
|
482797 | 2000-09-16 | Henrik Grubbström (Grubba) | |
|
6cefa1 | 2000-09-27 | Henrik Grubbström (Grubba) | | # option, cache_name, variable
AC_DEFUN(AC_SYS_COMPILER_FLAG,
[
AC_MSG_CHECKING($1)
AC_CACHE_VAL(pike_cv_option_$2,
[
OLD_CFLAGS="[$]CFLAGS"
CFLAGS="[$]OLD_CFLAGS $1"
|
2c412d | 2002-04-06 | Marcus Comstedt | | old_ac_link="[$]ac_link"
ac_link="[$]old_ac_link 2>conftezt.out.2"
|
ffff62 | 2001-03-19 | Henrik Grubbström (Grubba) | | AC_TRY_RUN([
int foo;
int main(int argc, char **argv)
{
|
a92414 | 2002-11-18 | Henrik Grubbström (Grubba) | | /* The following code triggs gcc:s generation of aline opcodes,
|
ffff62 | 2001-03-19 | Henrik Grubbström (Grubba) | | * which some versions of as does not support.
*/
if (argc > 0) argc = 0;
return argc;
}
],pike_cv_option_$2=yes,
|
6cefa1 | 2000-09-27 | Henrik Grubbström (Grubba) | | pike_cv_option_$2=no, [
AC_TRY_LINK([], [], pike_cv_option_$2=yes, pike_cv_option_$2=no)
])
CFLAGS="[$]OLD_CFLAGS"
|
2c412d | 2002-04-06 | Marcus Comstedt | | ac_link="[$]old_ac_link"
|
7edeb7 | 2002-08-16 | Henrik Grubbström (Grubba) | | if grep -i 'unrecognized option' <conftezt.out.2 >/dev/null; then
|
2c412d | 2002-04-06 | Marcus Comstedt | | pike_cv_option_$2=no
|
7edeb7 | 2002-08-16 | Henrik Grubbström (Grubba) | | elif grep -i 'unknown option' <conftezt.out.2 >/dev/null; then
# cc/HPUX says the following regarding -q64:
#
# cc: warning 422: Unknown option "6" ignored.
# cc: warning 422: Unknown option "4" ignored.
pike_cv_option_$2=no
elif grep -i 'optimizer bugs' <conftezt.out.2 >/dev/null; then
|
5ffbb1 | 2002-08-12 | Henrik Grubbström (Grubba) | | # gcc/FreeBSD-4.6/alpha says the following regarding -O2:
#
# cc1: warning:
# ***
# *** The -O2 flag TRIGGERS KNOWN OPTIMIZER BUGS ON THIS PLATFORM
# ***
|
7edeb7 | 2002-08-16 | Henrik Grubbström (Grubba) | | pike_cv_option_$2=no
|
902d64 | 2002-09-03 | Henrik Grubbström (Grubba) | | elif grep -i 'not found' <conftezt.out.2 >/dev/null; then
# cc/AIX says the following regarding +O3:
#
# cc: 1501-228 input file +O3 not found
pike_cv_option_$2=no
|
98d2f1 | 2002-09-07 | Henrik Grubbström (Grubba) | | elif grep -i 'ignored' <conftezt.out.2 >/dev/null; then
# gcc/AIX says the following regarding -fpic:
#
# cc1: warning: -fpic ignored (all code is position independent)
pike_cv_option_$2=no
|
7edeb7 | 2002-08-16 | Henrik Grubbström (Grubba) | | else :; fi
|
2c412d | 2002-04-06 | Marcus Comstedt | | rm conftezt.out.2
|
6cefa1 | 2000-09-27 | Henrik Grubbström (Grubba) | | ])
if test x"[$]pike_cv_option_$2" = "xyes" ; then
$3="[$]$3 $1"
case "$3" in
OPTIMIZE)
CFLAGS="[$]CFLAGS $1"
;;
esac
AC_MSG_RESULT(yes)
$5
else
AC_MSG_RESULT(no)
$4
fi
])
# arch, option, cache_name, variable
AC_DEFUN(AC_SYS_CPU_COMPILER_FLAG,
[
if test "`uname -m 2>/dev/null`" = "$1" ; then
AC_SYS_COMPILER_FLAG($2,$3,$4,$5,$6)
$7
fi
])
# os, option, cache_name, variable
AC_DEFUN(AC_SYS_OS_COMPILER_FLAG,
[
if test "x$pike_cv_sys_os" = "x$1" ; then
AC_SYS_COMPILER_FLAG($2,$3,$4,$5,$6)
$7
fi
])
define([DO_IF_OS],
[
if test "x$pike_cv_sys_os" = "x$1" ; then
$2
fi
])
define([DO_IF_CPU],
[
if test "`uname -m 2>/dev/null`" = "$1" ; then
$2
fi
])
#############################################################################
|
1ab51d | 2001-06-29 | Henrik Grubbström (Grubba) | | if test "x$GCC" = "x"; then
GCC=no
|
9b6287 | 2002-10-03 | Henrik Grubbström (Grubba) | | else
|
b933a6 | 2002-10-03 | Henrik Grubbström (Grubba) | | :;
|
9b6287 | 2002-10-03 | Henrik Grubbström (Grubba) | | fi
|
1ab51d | 2001-06-29 | Henrik Grubbström (Grubba) | |
|
482797 | 2000-09-16 | Henrik Grubbström (Grubba) | | if test "x$GCC" = "xno" -a "x$TCC" = "xno"; then
#
# We want 64bit mode if possible.
#
|
6cefa1 | 2000-09-27 | Henrik Grubbström (Grubba) | | AC_SYS_COMPILER_FLAG(-q64, q64, CFLAGS)
|
482797 | 2000-09-16 | Henrik Grubbström (Grubba) | |
if test "x$ac_cv_prog_cc_cross" = "xyes"; then
|
a92414 | 2002-11-18 | Henrik Grubbström (Grubba) | | # The AIX 5L/cc beta can not generate working binaries without a
|
482797 | 2000-09-16 | Henrik Grubbström (Grubba) | | # data-segment...
|
a92414 | 2002-11-18 | Henrik Grubbström (Grubba) | | AC_MSG_CHECKING([if we are really using a cross-compiler])
|
6cefa1 | 2000-09-27 | Henrik Grubbström (Grubba) | |
|
7fcd07 | 2000-09-16 | Henrik Grubbström (Grubba) | | AC_CACHE_VAL(pike_cv_datasegment_required, [
ac_cv_prog_cc_cross=no;
AC_TRY_RUN([int foo;main(){return(0);}], [
|
482797 | 2000-09-16 | Henrik Grubbström (Grubba) | | pike_cv_datasegment_required=yes
|
7fcd07 | 2000-09-16 | Henrik Grubbström (Grubba) | | ], [
|
482797 | 2000-09-16 | Henrik Grubbström (Grubba) | | pike_cv_datasegment_required=no
|
7fcd07 | 2000-09-16 | Henrik Grubbström (Grubba) | | ac_cv_prog_cc_cross=yes
], [
pike_cv_datasegment_required=no
ac_cv_prog_cc_cross=yes
])
|
482797 | 2000-09-16 | Henrik Grubbström (Grubba) | | ])
if test "x$pike_cv_datasegment_required" = "xyes"; then
AC_MSG_RESULT([no -- Applying data-segment kludge])
ac_cv_prog_cc_cross=no
cat >conftest.c <<EOF
static int foo;
EOF
pike_cv_datasegemnt_file=no
if AC_TRY_EVAL(ac_compile); then
if test -f "conftest.$ac_objext"; then
rm -f "data-segment.$ac_objext"
if mv "conftest.$ac_objext" "data-segment.$ac_objext"; then
if test -f "`pwd`/data-segment.$ac_objext"; then
pike_cv_datasegemnt_file="`pwd`/data-segment.$ac_objext"
else
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN(Lost track of data-segment kludge-file.)
|
482797 | 2000-09-16 | Henrik Grubbström (Grubba) | | fi
else
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN(Failed to rename data-segment kludge-file.)
|
482797 | 2000-09-16 | Henrik Grubbström (Grubba) | | fi
else
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN(Can not find data-segment kludgefile.)
|
482797 | 2000-09-16 | Henrik Grubbström (Grubba) | | fi
else
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN(Failed to compile data-segment kludge.)
|
482797 | 2000-09-16 | Henrik Grubbström (Grubba) | | fi
if test "x$pike_cv_datasegment_file" = "xno"; then
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN(Some tests may yield false results.)
|
482797 | 2000-09-16 | Henrik Grubbström (Grubba) | | else
LIBS="$pike_cv_datasegment_file $LIBS"
export LIBS
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN(Data-segment kludge applied.)
|
482797 | 2000-09-16 | Henrik Grubbström (Grubba) | | fi
else
AC_MSG_RESULT(yes)
fi
fi
|
fdcf1c | 2002-10-04 | Henrik Grubbström (Grubba) | | else
if test "x$TCC" = "xyes"; then
AC_MSG_CHECKING(if we can use pragma TenDRA longlong)
AC_CACHE_VAL(pike_cv_pragma_tendra_longlong, [
AC_TRY_COMPILE([
#pragma TenDRA longlong type allow
|
0c1535 | 2002-10-05 | Henrik Grubbström (Grubba) | | ], [], [ pike_cv_pragma_tendra_longlong=yes
|
fdcf1c | 2002-10-04 | Henrik Grubbström (Grubba) | | ], [ pike_cv_pragma_tendra_longlong=no ])
])
if test "x$pike_cv_pragma_tendra_longlong" = "xyes"; then
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_PRAGMA_TENDRA_LONGLONG)
else
AC_MSG_RESULT(no)
fi
AC_MSG_CHECKING(if we can use pragma TenDRA set longlong type)
AC_CACHE_VAL(pike_cv_pragma_tendra_set_longlong_type, [
AC_TRY_COMPILE([
#ifdef HAVE_TENDRA_LONGLONG
#pragma TenDRA longlong type allow
#endif /* HAVE_TENDRA_LONGLONG */
#pragma TenDRA set longlong type : long long
long long foo;
|
0c1535 | 2002-10-05 | Henrik Grubbström (Grubba) | | ], [], [ pike_cv_pragma_tendra_set_longlong_type=yes
|
fdcf1c | 2002-10-04 | Henrik Grubbström (Grubba) | | ], [ pike_cv_pragma_tendra_set_longlong_type=no ])
])
if test "x$pike_cv_pragma_tendra_set_longlong_type" = "xyes"; then
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_PRAGMA_TENDRA_SET_LONGLONG_TYPE)
else
AC_MSG_RESULT(no)
fi
else :; fi
|
482797 | 2000-09-16 | Henrik Grubbström (Grubba) | | fi
|
18be80 | 2000-03-02 | Fredrik Hübinette (Hubbe) | | #############################################################################
|
1acce8 | 2001-01-27 | Martin Stjernholm | | if test "x$enable_binary" != "xno"; then
|
18be80 | 2000-03-02 | Fredrik Hübinette (Hubbe) | | #
# The purpose of this test is to check that there is no filesystem
# caching preventing pike from compiling correctly.
#
|
d4f9e9 | 2000-05-19 | Martin Stjernholm | | AC_MSG_CHECKING([filesystem synchronization])
|
18be80 | 2000-03-02 | Fredrik Hübinette (Hubbe) | |
AC_CACHE_VAL(pike_cv_filesystem_syncronization,
[
pike_cv_filesystem_syncronization=working
AC_EGREP_CPP(true, [ true ], , pike_cv_filesystem_syncronization=broken)
AC_EGREP_CPP(false, [ false ], , pike_cv_filesystem_syncronization=broken)
AC_EGREP_CPP(yes, [ yes ], , pike_cv_filesystem_syncronization=broken)
AC_EGREP_CPP(no, [ no ], , pike_cv_filesystem_syncronization=broken)
AC_EGREP_CPP(near, [ far ], pike_cv_filesystem_syncronization=broken, )
AC_EGREP_CPP(up, [ up ], , pike_cv_filesystem_syncronization=broken)
AC_EGREP_CPP(down, [ down], , pike_cv_filesystem_syncronization=broken)
])
AC_MSG_RESULT($pike_cv_filesystem_syncronization)
if test "x$pike_cv_filesystem_syncronization" = xbroken ; then
AC_MSG_ERROR([Filesystem caching is too aggressive. If you are using
Samba, make sure to have the following line in your smb.conf:
oplocks = False
])
exit 1
fi
|
1acce8 | 2001-01-27 | Martin Stjernholm | | fi
|
417454 | 2001-01-26 | Martin Stjernholm | | #############################################################################
|
c6f4a8 | 2002-01-27 | Martin Stjernholm | | LIBDIR=`(cd $srcdir/../lib ; pwd)`
BINDIR=`(cd $srcdir/../bin ; pwd)`
|
3c9dc1 | 2002-08-01 | Martin Nilsson | | MANDIR=`(cd $srcdir/../man ; pwd)`
|
8c392e | 2003-01-02 | Henrik Grubbström (Grubba) | | DOCDIR=`(cd $srcdir/../refdoc ; pwd)`
|
3c9dc1 | 2002-08-01 | Martin Nilsson | | BASEDIR=`(cd $srcdir/.. ; pwd)`
|
c6f4a8 | 2002-01-27 | Martin Stjernholm | | BUILDDIR=`pwd`
AC_SUBST(LIBDIR)
AC_SUBST(BINDIR)
|
3c9dc1 | 2002-08-01 | Martin Nilsson | | AC_SUBST(MANDIR)
|
8c392e | 2003-01-02 | Henrik Grubbström (Grubba) | | AC_SUBST(DOCDIR)
|
3c9dc1 | 2002-08-01 | Martin Nilsson | | AC_SUBST(BASEDIR)
|
c6f4a8 | 2002-01-27 | Martin Stjernholm | | AC_SUBST(BUILDDIR)
#############################################################################
|
417454 | 2001-01-26 | Martin Stjernholm | | #
|
c6f4a8 | 2002-01-27 | Martin Stjernholm | | # Some cross-compilation support and --disable-binary stuff
|
417454 | 2001-01-26 | Martin Stjernholm | | #
|
c6f4a8 | 2002-01-27 | Martin Stjernholm | | if test "x$enable_binary" = "xno"; then
CROSS=yes
else
CROSS="$ac_cv_prog_cc_cross"
fi
|
417454 | 2001-01-26 | Martin Stjernholm | | AC_SUBST(CROSS)
|
c6f4a8 | 2002-01-27 | Martin Stjernholm | | if test "x$enable_binary" = "xno"; then
CC="$BINDIR/nobinary_dummy cc"
RUNPIKE="USE_PIKE"
RUNTPIKE="USE_PIKE"
elif test "x$ac_cv_prog_cc_cross" = "xyes"; then
RUNPIKE="DEFAULT_RUNPIKE"
|
417454 | 2001-01-26 | Martin Stjernholm | | RUNTPIKE="USE_PIKE"
else
|
c6f4a8 | 2002-01-27 | Martin Stjernholm | | RUNPIKE="DEFAULT_RUNPIKE"
|
417454 | 2001-01-26 | Martin Stjernholm | | RUNTPIKE="USE_TPIKE"
fi
|
c6f4a8 | 2002-01-27 | Martin Stjernholm | | AC_SUBST(RUNPIKE)
|
417454 | 2001-01-26 | Martin Stjernholm | | AC_SUBST(RUNTPIKE)
#############################################################################
if test "x$enable_binary" != "xno"; then
# The following tests are only relevant if we intend to build binaries.
|
690098 | 1999-05-07 | Fredrik Hübinette (Hubbe) | | #############################################################################
AC_CHECK_HEADERS(fnord/fnord/fnord.h)
|
54be21 | 1999-05-12 | Henrik Grubbström (Grubba) | | AC_MSG_CHECKING([if CHECK_HEADERS works])
|
690098 | 1999-05-07 | Fredrik Hübinette (Hubbe) | | if test "x$ac_cv_header_fnord_fnord_fnord_h" = xyes ; then
|
54be21 | 1999-05-12 | Henrik Grubbström (Grubba) | | AC_MSG_RESULT(no)
|
690098 | 1999-05-07 | Fredrik Hübinette (Hubbe) | | exit 1
fi
|
54be21 | 1999-05-12 | Henrik Grubbström (Grubba) | | AC_MSG_RESULT(yes)
|
613bc5 | 2000-08-28 | Henrik Grubbström (Grubba) | |
#############################################################################
|
8cf37d | 1997-01-27 | Per Hedbor | |
|
842161 | 2001-06-29 | Fredrik Hübinette (Hubbe) | | AC_MSG_CHECKING(if we can allocate large auto variables)
AC_CACHE_VAL(pike_cv_C_supports_large_auto, [
AC_TRY_LINK([
#include <stdio.h>
int eat_stack(int foo)
{
char large_array[131072] = "";
int i, sum = 0;
for (i = 0; i < foo; i++) {
|
a92414 | 2002-11-18 | Henrik Grubbström (Grubba) | | /* Make sure the compiler does not optimize away the array. */
|
842161 | 2001-06-29 | Fredrik Hübinette (Hubbe) | | large_array[i] = sum;
sum += foo;
}
for (i = 0; i < foo; i++) {
sum += large_array[i] - large_array[foo-1-i];
}
return sum;
}
], [
return !eat_stack(4711);
], [
pike_cv_C_supports_large_auto=yes
], [
pike_cv_C_supports_large_auto=no
])
])
if test "$pike_cv_C_supports_large_auto" = "yes"; then
AC_MSG_RESULT([yes - good])
else
AC_MSG_RESULT([no])
AC_MSG_CHECKING([if we can make a workaround by defining _chkstk to call __chkstk])
AC_CACHE_VAL([pike_cv_kludge__chkstk],
[
AC_TRY_LINK([
#include <stdio.h>
int eat_stack(int foo)
{
char large_array[131072] = "";
int i, sum = 0;
for (i = 0; i < foo; i++) {
|
a92414 | 2002-11-18 | Henrik Grubbström (Grubba) | | /* Make sure the compiler does not optimize away the array. */
|
842161 | 2001-06-29 | Fredrik Hübinette (Hubbe) | | large_array[i] = sum;
sum += foo;
}
for (i = 0; i < foo; i++) {
sum += large_array[i] - large_array[foo-1-i];
}
return sum;
}
extern size_t __chkstk();
size_t _chkstk() { return __chkstk(); }
], [
return !eat_stack(4711);
], [
pike_cv_kludge__chkstk=yes
], [
pike_cv_kludge__chkstk=no
])
])
if test "$pike_cv_kludge__chkstk" = "yes"; then
AC_MSG_RESULT([yes - applying workaround])
AC_DEFINE(HAVE_BROKEN_CHKSTK)
else
AC_MSG_RESULT([no])
AC_ERROR([Your C compiler does not link code that uses large auto variables.
Please check config.log, and fix the problem.])
exit 1
fi
fi
#############################################################################
|
e48c38 | 1998-07-29 | Marcus Comstedt | | if test $ac_cv_prog_gcc = yes; then
AC_MSG_CHECKING(for libgcc file name)
AC_CACHE_VAL(pike_cv_libgcc_filename,
[
pike_cv_libgcc_filename="`${CC-cc} -print-libgcc-file-name`"
if test -z "$pike_cv_libgcc_filename"; then
pike_cv_libgcc_filename=no
else
if test -f "$pike_cv_libgcc_filename"; then
:
else
pike_cv_libgcc_filename=no
fi
fi
])
AC_MSG_RESULT($pike_cv_libgcc_filename)
if test x"$pike_cv_libgcc_filename" = xno; then
LIBGCC=""
else
LIBGCC="$pike_cv_libgcc_filename"
fi
else
LIBGCC=""
fi
AC_SUBST(LIBGCC)
|
2565f4 | 1997-02-26 | Fredrik Hübinette (Hubbe) | | #############################################################################
|
d1e3fe | 1999-03-06 | Henrik Grubbström (Grubba) | | ## Build smartlink
|
af5ef8 | 1999-05-28 | Henrik Grubbström (Grubba) | | AC_CHECK_HEADERS(stdlib.h string.h unistd.h sys/stat.h sys/types.h sys/errno.h)
|
d1e3fe | 1999-03-06 | Henrik Grubbström (Grubba) | |
if test -x /usr/bin/uname 2>/dev/null; then
UNAME=`/usr/bin/uname -sr`
elif test -x /bin/uname 2>/dev/null; then
UNAME=`/bin/uname -sr`
else
UNAME=unknown
fi
|
613bc5 | 2000-08-28 | Henrik Grubbström (Grubba) | | # We need some special hacks when running slowaris
AC_PATH_PROG(uname_prog,uname,no)
AC_MSG_CHECKING(operating system)
AC_CACHE_VAL(pike_cv_sys_os,
[
if test "$uname_prog" != "no"; then
|
7cfebe | 2001-09-23 | Marcus Comstedt | | # uname on UNICOS doesn't work like other people's uname...
if getconf CRAY_RELEASE >/dev/null 2>&1; then
pike_cv_sys_os="UNICOS"
else
pike_cv_sys_os="`uname`"
fi
|
613bc5 | 2000-08-28 | Henrik Grubbström (Grubba) | |
case "$pike_cv_sys_os" in
SunOS)
case "`uname -r`" in
5.*) pike_cv_sys_os="Solaris" ;;
esac
;;
|
dc8308 | 2000-09-15 | Henrik Grubbström (Grubba) | | Monterey64)
# According to the release notes, the string "Monterey64"
# will be changed to "AIX" in the final release.
# (Monterey 64 is also known as AIX 5L).
pike_cv_sys_os="AIX"
;;
|
ae6fed | 2002-08-17 | Henrik Grubbström (Grubba) | | *Windows*|*windows*)
pike_cv_sys_os="Windows_NT"
;;
|
613bc5 | 2000-08-28 | Henrik Grubbström (Grubba) | | esac
else
pike_cv_sys_os="Not Solaris"
fi
])
AC_MSG_RESULT($pike_cv_sys_os)
if test "$GCC" = "yes"; then :; else
#
# Special hack for HP-UX stupid cc
#
if test "$pike_cv_sys_os" = "HP-UX"; then
AC_TRY_COMPILE([int foo(int bar);],[],[],
[
OLD_CC="${CC-cc}"
OLD_CFLAGS="$CFLAGS"
case "/$CC" in
*/smartlink\ cc)
if test -x /usr/bin/cc; then
CC="`echo $CC|sed -e 's/ cc/ \/usr\/bin\/cc/`"
else
: ;
fi
;;
esac
CFLAGS="-Ae +Olibcalls $CFLAGS"
AC_TRY_COMPILE([int foo(int bar);],[],[],[
CC="$OLD_CC"
CFLAGS="$OLD_CFLAGS"
])
pike_cv_prog_CC="${CC}"
])
fi
fi
if test "$pike_cv_sys_os" = "Solaris" ; then
AC_DEFINE(SOLARIS)
else
:
fi
|
25e474 | 2002-10-13 | Xavier Beaudouin | | # Workaround for compiling Pike on some OS that have some clues
|
827dda | 2002-10-04 | Xavier Beaudouin | | case "$pike_cv_sys_os" in
CYGWIN*)
|
25e474 | 2002-10-13 | Xavier Beaudouin | | # Cygwin have both Windows includes and Unix ones.
# Hiding them make it a somewhat Unix compliant OS.
|
827dda | 2002-10-04 | Xavier Beaudouin | | echo 'Cygwin host detected. Enabling workarounds...'
|
ba0a65 | 2002-10-09 | Xavier Beaudouin | | # winsock.h, winbase.h, winsock2.h, windows.h, wingdi.h, windef.h
|
827dda | 2002-10-04 | Xavier Beaudouin | | # are part of VC api but given as headers in cygwin. We
# should detect them when using cygwin
ac_cv_header_wingdi_h="no"
|
ba0a65 | 2002-10-09 | Xavier Beaudouin | | ac_cv_header_windef_h="no"
|
827dda | 2002-10-04 | Xavier Beaudouin | | ac_cv_header_winsock_h="no"
ac_cv_header_winsock2_h="no"
ac_cv_header_winbase_h="no"
ac_cv_header_windows_h="no"
;;
|
25e474 | 2002-10-13 | Xavier Beaudouin | | FreeBSD*)
# FreeBSD have other naming convention for gtk-config and sdl-config
if test "x${GTK_CONFIG}" == "x"; then
GTK_CONFIG=`which gtk12-config`
|
aa5ac7 | 2002-10-13 | Xavier Beaudouin | | export GTK_CONFIG
|
25e474 | 2002-10-13 | Xavier Beaudouin | | fi
if test "x${SDL_CONFIG}" == "x"; then
SDL_CONFIG=`which sdl11-config`
|
aa5ac7 | 2002-10-13 | Xavier Beaudouin | | export SDL_CONFIG
|
25e474 | 2002-10-13 | Xavier Beaudouin | | fi
;;
|
827dda | 2002-10-04 | Xavier Beaudouin | | esac
|
ac423c | 2003-01-16 | David Hedbor | | # Strip smartlink from $CC
REALCC="`echo $CC|sed -e 's/.*smartlink //'`"
|
904127 | 1999-03-06 | Henrik Grubbström (Grubba) | | # FIXME: Add proper tests
|
71561a | 2002-08-21 | Henrik Grubbström (Grubba) | | AC_MSG_CHECKING([for ld.so run path method])
AC_CACHE_VAL(pike_cv_ld_so_run_path_method, [
case "$UNAME" in
OSF1\ V4.*|OSF1\ V5.*|OSF1\ V6.*)
pike_cv_run_path_method=rpath
|
d1e3fe | 1999-03-06 | Henrik Grubbström (Grubba) | | ;;
|
71561a | 2002-08-21 | Henrik Grubbström (Grubba) | | HPUX\ 11.*)
pike_cv_run_path_method=plus_b
|
108dde | 2000-10-31 | Henrik Grubbström (Grubba) | | ;;
|
71561a | 2002-08-21 | Henrik Grubbström (Grubba) | | IRIX\ 6.*)
pike_cv_run_path_method=rpath
|
d1e3fe | 1999-03-06 | Henrik Grubbström (Grubba) | | ;;
|
71561a | 2002-08-21 | Henrik Grubbström (Grubba) | | IRIX\ 5.*)
pike_cv_run_path_method=rpath
|
d1e3fe | 1999-03-06 | Henrik Grubbström (Grubba) | | ;;
|
71561a | 2002-08-21 | Henrik Grubbström (Grubba) | | SunOS\ 5.*)
if test "$TCC" = "yes"; then
# tcc doesn't know about -R
pike_cv_run_path_method=wl_r
else
pike_cv_run_path_method=r
fi
|
d1e3fe | 1999-03-06 | Henrik Grubbström (Grubba) | | ;;
|
71561a | 2002-08-21 | Henrik Grubbström (Grubba) | | Linux\ 2.*)
|
1375c8 | 2003-01-16 | David Hedbor | | if test "x$REALCC" = "xicc"; then
|
d4fc87 | 2003-01-16 | David Hedbor | | pike_cv_run_path_method=qoption
else
pike_cv_run_path_method=wl
fi
|
d1e3fe | 1999-03-06 | Henrik Grubbström (Grubba) | | ;;
|
71561a | 2002-08-21 | Henrik Grubbström (Grubba) | | UnixWare\ 7.*|OpenUNIX\ 8.*)
if test "$ac_cv_prog_gcc" = "yes"; then
pike_cv_run_path_method=xlinker_yp_
else
pike_cv_run_path_method=yp_
fi
|
ed7aeb | 2000-06-16 | Henrik Grubbström (Grubba) | | ;;
|
71561a | 2002-08-21 | Henrik Grubbström (Grubba) | | *)
pike_cv_run_path_method=ld_library_path
|
d1e3fe | 1999-03-06 | Henrik Grubbström (Grubba) | | ;;
|
71561a | 2002-08-21 | Henrik Grubbström (Grubba) | | esac
])
|
fdb387 | 2002-08-21 | Henrik Grubbström (Grubba) | | case "$pike_cv_run_path_method" in
|
71561a | 2002-08-21 | Henrik Grubbström (Grubba) | | rpath)
AC_DEFINE(USE_RPATH)
AC_MSG_RESULT([use -rpath])
;;
plus_b)
AC_DEFINE(USE_PLUS_b)
AC_MSG_RESULT([use +b])
;;
yp_)
AC_DEFINE(USE_YP_)
AC_MSG_RESULT([use -Yp,])
;;
xlinker_yp_)
AC_DEFINE(USE_XLINKER_YP_)
AC_MSG_RESULT([use -Xlinker -Yp, -Xlinker])
;;
wl_r)
AC_DEFINE(USE_Wl_R)
AC_MSG_RESULT([use -Wl,-R])
;;
r)
AC_DEFINE(USE_R)
AC_MSG_RESULT([use -R])
;;
wl)
AC_DEFINE(USE_Wl)
AC_MSG_RESULT([use -Wl,-rpath])
;;
|
d4fc87 | 2003-01-16 | David Hedbor | | qoption)
AC_DEFINE(USE_Qoption)
AC_MSG_RESULT([use -Qoption,ld,-rpath])
;;
|
71561a | 2002-08-21 | Henrik Grubbström (Grubba) | | ld_library_path|*)
AC_DEFINE(USE_LD_LIBRARY_PATH)
AC_MSG_RESULT([use LD_LIBRARY_PATH/LD_RUN_PATH])
;;
|
2565f4 | 1997-02-26 | Fredrik Hübinette (Hubbe) | | esac
|
71561a | 2002-08-21 | Henrik Grubbström (Grubba) | |
|
d1e3fe | 1999-03-06 | Henrik Grubbström (Grubba) | | # Fix a smartlink
SMARTLINK="$BUILDDIR/smartlink"
|
904127 | 1999-03-06 | Henrik Grubbström (Grubba) | | AC_MSG_CHECKING(if $SMARTLINK exists is up to date and works)
|
ba012d | 1999-04-25 | Henrik Grubbström (Grubba) | | if ls -1tr "$SMARTLINK${ac_exeext}" "$srcdir/smartlink.$ac_ext" 2>/dev/null | head -1 | grep "smartlink.$ac_ext" >/dev/null 2>&5 && "$SMARTLINK" -v >/dev/null 2>&5; then
|
d1e3fe | 1999-03-06 | Henrik Grubbström (Grubba) | | AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
|
7e4d4e | 2000-12-13 | Fredrik Hübinette (Hubbe) | | SMARTBUILDCC="${REALCC-cc}"
|
d1e3fe | 1999-03-06 | Henrik Grubbström (Grubba) | |
|
9f8523 | 2000-11-26 | Henrik Grubbström (Grubba) | | if echo foo "$CC" | egrep 'rntc.|rnt.cl' >/dev/null; then
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN([rntcc/rntcl/rnticl/rntecl detected.])
|
7e4d4e | 2000-12-13 | Fredrik Hübinette (Hubbe) | | AC_PATH_PROGS(SMARTBUILDCC,gcc cc egcs,gcc, $PATH:$EXTRA_PATH)
echo Using $SMARTBUILDCC to compile smartlink.
|
cf3990 | 2001-01-19 | Henrik Grubbström (Grubba) | | else
|
325c1f | 2001-01-19 | Henrik Grubbström (Grubba) | | if test "x$ac_cv_prog_cc_cross" = "xyes"; then
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN([Crosscompiler detected.])
|
cf3990 | 2001-01-19 | Henrik Grubbström (Grubba) | | AC_PATH_PROGS(SMARTBUILDCC, gcc cc egcs, gcc, /usr/bin:/bin/:/usr/ccs/bin:/usr/local/bin:$PATH:$EXTRA_PATH)
echo Using $SMARTBUILDCC to compile smartlink.
fi
|
7e4d4e | 2000-12-13 | Fredrik Hübinette (Hubbe) | | fi
|
d1e3fe | 1999-03-06 | Henrik Grubbström (Grubba) | |
|
7e4d4e | 2000-12-13 | Fredrik Hübinette (Hubbe) | | rm -f "$SMARTLINK"
|
d1e3fe | 1999-03-06 | Henrik Grubbström (Grubba) | |
|
7e4d4e | 2000-12-13 | Fredrik Hübinette (Hubbe) | | AC_MSG_CHECKING(whether smartlink compiles)
|
d1e3fe | 1999-03-06 | Henrik Grubbström (Grubba) | |
|
7e4d4e | 2000-12-13 | Fredrik Hübinette (Hubbe) | | link_cmd='${SMARTBUILDCC-cc} -o smartlink${ac_exeext} $CFLAGS -I. $CPPFLAGS $LDFLAGS $srcdir/smartlink.$ac_ext $LIBS 2>&5'
if { (eval echo Compiling smartlink: \"$link_cmd\") 1>&5; (eval $link_cmd) 2>&5; } && "$BUILDDIR/smartlink" -v >/dev/null 2>&5; then
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no - use the sh script)
SMARTLINK="$BINDIR/smartlink"
|
d1e3fe | 1999-03-06 | Henrik Grubbström (Grubba) | | fi
fi
CC="$SMARTLINK $REALCC"
pike_cv_prog_CC="$CC"
|
d5efba | 1998-01-23 | Henrik Grubbström (Grubba) | |
|
424d9c | 1999-05-02 | Fredrik Hübinette (Hubbe) | | AC_SUBST(SMARTLINK)
AC_SUBST(REALCC)
|
d5efba | 1998-01-23 | Henrik Grubbström (Grubba) | | export REALCC SMARTLINK
|
d166d6 | 2000-08-06 | Henrik Grubbström (Grubba) | | AC_MSG_CHECKING([for a fallback compiler])
# Strip smartlink from $FALLBACK_CC
FALLBACK_CC="`echo $FALLBACK_CC|sed -e 's/.*smartlink //'`"
if test "x$FALLBACK_CC" = "x"; then
AC_MSG_RESULT(no)
else
FALLBACK_CC="$SMARTLINK $FALLBACK_CC"
AC_MSG_RESULT($FALLBACK_CC)
fi
AC_SUBST(FALLBACK_CC)
export FALLBACK_CC
|
2565f4 | 1997-02-26 | Fredrik Hübinette (Hubbe) | | #############################################################################
|
1acce8 | 2001-01-27 | Martin Stjernholm | | fi #if test "x$enable_binary" != "xno"
#############################################################################
|
2565f4 | 1997-02-26 | Fredrik Hübinette (Hubbe) | |
|
ed1fae | 2002-08-14 | Henrik Grubbström (Grubba) | | # Restore the -O2 that the default AC_PROG_CC adds.
|
d4fc87 | 2003-01-16 | David Hedbor | |
|
7e37bb | 2002-08-20 | Henrik Grubbström (Grubba) | | AC_SYS_COMPILER_FLAG(+O3,plus_O3,OPTIMIZE, [
AC_SYS_COMPILER_FLAG(-O2,O2,OPTIMIZE, [
AC_SYS_COMPILER_FLAG(-O,O,OPTIMIZE)
])
])
|
de575a | 1999-05-29 | Henrik Grubbström (Grubba) | |
|
613bc5 | 2000-08-28 | Henrik Grubbström (Grubba) | | if test "$GCC" = "yes"; then
|
dc8308 | 2000-09-15 | Henrik Grubbström (Grubba) | | if test "$cflags_is_set" = "no"; then
|
ed1fae | 2002-08-14 | Henrik Grubbström (Grubba) | | AC_SYS_COMPILER_FLAG(-pipe, pipe, OPTIMIZE)
|
613bc5 | 2000-08-28 | Henrik Grubbström (Grubba) | | fi
|
5c8e89 | 1995-10-29 | Fredrik Hübinette (Hubbe) | | fi
|
2901d3 | 1998-08-05 | Fredrik Hübinette (Hubbe) | | LD='$(CC) $(CFLAGS)'
|
37428e | 2001-10-05 | Fredrik Hübinette (Hubbe) | | LC_REQ="-lc"
|
080971 | 1998-02-27 | Marcus Comstedt | |
|
de1608 | 1997-06-03 | Fredrik Hübinette (Hubbe) | | case "$pike_cv_sys_os" in
|
f4215b | 2002-08-30 | H. William Welliver III | | Darwin*)
LC_REQ="-lc -lcc_dynamic"
;;
|
de1608 | 1997-06-03 | Fredrik Hübinette (Hubbe) | | SCO*)
|
77b282 | 1997-10-04 | Henrik Grubbström (Grubba) | | case "$CFLAGS" in
|
2a7fc8 | 1999-11-29 | Boyd Lynn Gerber | | *-belf*)
AC_SYS_COMPILER_FLAG(-belf,sco_belf_option,CFLAGS,[],[
case "$LDFLAGS" in
*-belf*) ;;
*)
echo "Adding -belf option to ldflags."
LDFLAGS="$LDFLAGS -belf"
;;
esac
])
;;
|
de1608 | 1997-06-03 | Fredrik Hübinette (Hubbe) | | *)
|
2a7fc8 | 1999-11-29 | Boyd Lynn Gerber | | AC_SYS_COMPILER_FLAG(-belf,belf,CFLAGS)
|
77b282 | 1997-10-04 | Henrik Grubbström (Grubba) | | ;;
esac
case "$LDFLAGS" in
*-belf*) ;;
*)
|
dda906 | 1999-08-15 | Boyd Lynn Gerber | | AC_SYS_COMPILER_FLAG(-belf,belf,LDFLAGS)
|
de1608 | 1997-06-03 | Fredrik Hübinette (Hubbe) | | ;;
esac
;;
|
2b4903 | 1998-03-05 | Henrik Grubbström (Grubba) | | SunOS*)
# gcc on SunOS 4 forgets to define this:
echo "SunOS. Adding -D__USE_FIXED_PROTOTYPES__"
CFLAGS="$CFLAGS -D__USE_FIXED_PROTOTYPES__"
;;
|
080971 | 1998-02-27 | Marcus Comstedt | | BSD/OS*)
|
1807bd | 2000-11-28 | Fredrik Hübinette (Hubbe) | | case "`uname -r`" in
|
e9e9d8 | 2001-09-22 | Henrik Grubbström (Grubba) | | [4-9].*) ;;
|
1807bd | 2000-11-28 | Fredrik Hübinette (Hubbe) | | *) LD="$BINDIR/smartlink shlicc";;
esac
|
080971 | 1998-02-27 | Marcus Comstedt | | ;;
|
bcb538 | 2001-08-23 | Boyd Lynn Gerber | | UnixWare*|OpenUNIX*)
|
2a7fc8 | 1999-11-29 | Boyd Lynn Gerber | | case "$CFLAGS" in
*-Kalloca*) ;;
*)
if test "$GCC" != "yes"; then
# We are using built-in inline function
CFLAGS="$CFLAGS -Kalloca"
CXX="$CXX -DNO_CPLUSPLUS_ALLOCA"
|
37428e | 2001-10-05 | Fredrik Hübinette (Hubbe) | | LC_REQ=""
|
2a7fc8 | 1999-11-29 | Boyd Lynn Gerber | | fi
;;
esac
|
9ab446 | 1998-11-06 | Honza Petrous | | ;;
|
d4fc87 | 2003-01-16 | David Hedbor | | Linux*)
|
1375c8 | 2003-01-16 | David Hedbor | | if test "x$REALCC" = "xicc"; then
|
d4fc87 | 2003-01-16 | David Hedbor | | LC_REQ=""
fi
;;
|
de1608 | 1997-06-03 | Fredrik Hübinette (Hubbe) | | esac
|
dcad55 | 1996-08-03 | Fredrik Hübinette (Hubbe) | |
|
080971 | 1998-02-27 | Marcus Comstedt | | AC_SUBST(LD)
|
37428e | 2001-10-05 | Fredrik Hübinette (Hubbe) | | AC_SUBST(LC_REQ)
|
080971 | 1998-02-27 | Marcus Comstedt | |
|
de1608 | 1997-06-03 | Fredrik Hübinette (Hubbe) | | #############################################################################
|
f6c337 | 1998-09-29 | Henrik Grubbström (Grubba) | |
|
a1c502 | 2001-10-06 | Henrik Grubbström (Grubba) | | AC_ARG_WITH(patch_gcc, MY_DESCR([--with-patch-gcc],
[attempt to patch the UA32 relocation bug.]),
[], [with_patch_gcc=no])
|
b09bef | 2001-01-25 | Henrik Grubbström (Grubba) | |
|
ac61a2 | 2001-12-06 | Henrik Grubbström (Grubba) | | AC_ARG_WITH(force_ua32, MY_DESCR([--with-force-ua32],
[ignore the UA32 relocation bug.]),
[], [with_force_ua32=no])
|
348fca | 1999-05-29 | Henrik Grubbström (Grubba) | | # Some sanity checks.
|
4313c9 | 2000-01-15 | Fredrik Hübinette (Hubbe) | | if test "$GCC" = "yes" -a "$pike_cv_sys_os" = "Solaris" && test "`uname -p`" = "sparc"; then
|
348fca | 1999-05-29 | Henrik Grubbström (Grubba) | | # Solaris/sparc:
# Check that gnu ld isn't used.
# It's usually hidden in $prefix/sparc-sun-solaris2.?/bin/.
# NOTE: M4 uses [] as quotes.
gcc_ld_path="`$CC -v 2>&1 | sed -e '1,1s/[[^\/]]*\(\/.*\/\)[[^\/]]*$/\1/p;d' | sed -e '/lib\/gcc-lib\//s/lib\/gcc-lib\///;s/\/[[0-9]]*\.[[0-9]]*\.[[0-9]]*\/$/\/bin/'`"
if test "x$gcc_ld_path" = "x"; then :; else
|
4d012e | 2000-01-19 | Wilhelm Köhler | | if test -d "$gcc_ld_path/."; then
if "$gcc_ld_path/ld" -v 2>&1 | grep -i GNU >/dev/null; then
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN([GNU ld found on Solaris sparc system ($gcc_ld_path/ld).])
PIKE_MSG_WARN([This may cause the dynamic module support to fail.])
|
4d012e | 2000-01-19 | Wilhelm Köhler | | else :; fi
|
348fca | 1999-05-29 | Henrik Grubbström (Grubba) | | else :; fi
fi
unset gcc_ld_path
|
999815 | 1999-05-30 | Henrik Grubbström (Grubba) | |
# Watch out for gcc-2.8.1 on Solaris 7 sparc machines. It generates
# assembler code which contains .uaword directives, which in turn
# generates code with R_SPARC_UA32 relocations, which /usr/bin/ld.so
# has buggy support for (it doesn't relocate the MSB).
# Check that gcc doesn't generate uaword opcodes
AC_MSG_CHECKING(if your gcc generates uaword opcodes)
AC_CACHE_VAL(pike_cv_gcc_uaword, [
cat > conftest.c <<EOF
char *foo[[]] = { "bar" };
EOF
pike_compile='${CC-cc} -S $CFLAGS $CPPFLAGS conftest.c 1>&5'
pike_cv_gcc_uaword=no
if { (eval echo configure: \"$pike_compile\") >&5; (eval $pike_compile) 2>&5; }; then
if grep ".uaword" conftest.s 2>&5 >/dev/null; then
echo "configure: result contains .uaword:" >&5
cat conftest.s >&5
pike_cv_gcc_uaword=yes
else :; fi
else
echo "configure: failed program was:" >&5
cat conftest.c >&5
fi
rm -rf conftest.*
])
|
cfd7c9 | 1999-05-30 | Henrik Grubbström (Grubba) | | AC_MSG_RESULT($pike_cv_gcc_uaword)
|
999815 | 1999-05-30 | Henrik Grubbström (Grubba) | |
# Check if as generates R_SPARC_UA32 relocations from .uaword.
if test "$pike_cv_gcc_uaword" = "yes"; then
AC_MSG_CHECKING([if your as generates R_SPARC_UA32 relocations])
AC_CACHE_VAL(pike_cv_as_r_sparc_ua32, [
AC_TRY_ASSEMBLE([
.section ".rodata"
.align 8
.STRING:
.asciz "String"
.section ".data"
.align 4
.type string,#object
.size string,4
string:
.uaword .STRING
],[
if /usr/ccs/bin/elfdump -r conftest.o | grep -i R_SPARC_UA32 >/dev/null 2>&AC_FD_CC; then
pike_cv_ac_r_sparc_ua32=yes
else
pike_cv_ac_r_sparc_ua32=no
fi
],[
pike_cv_ac_r_sparc_ua32=no
])
])
AC_MSG_RESULT($pike_cv_ac_r_sparc_ua32)
if test "$pike_cv_ac_r_sparc_ua32" = "yes"; then
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN([Your gcc/as combo may generate R_SPARC_UA32 relocations.])
PIKE_MSG_WARN([R_SPARC_UA32 relocations are unsupported in Solaris >= 2.3,])
PIKE_MSG_WARN([and have broken support in Solaris 7.])
|
b09bef | 2001-01-25 | Henrik Grubbström (Grubba) | |
|
ac61a2 | 2001-12-06 | Henrik Grubbström (Grubba) | | if test "x$with_patch_gcc$with_force_ua32" = "xnono"; then
|
b09bef | 2001-01-25 | Henrik Grubbström (Grubba) | | if test -d "/var/sadm/patch/107058-01/."; then
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN([Back out patch 107058-01, or])
PIKE_MSG_WARN([recompile gcc with a modified config/sparc/sol2.h.])
|
b09bef | 2001-01-25 | Henrik Grubbström (Grubba) | | else
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN([Recompile gcc with a modified config/sparc/sol2.h.])
|
b09bef | 2001-01-25 | Henrik Grubbström (Grubba) | | fi
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN([])
PIKE_MSG_WARN([You may want to try binary patching gcc.])
PIKE_MSG_WARN([In that case rerun configure with --with-patch-gcc.])
PIKE_MSG_WARN([NOTE: Binary patching is highly experimental and risky,])
PIKE_MSG_WARN([ and may break your existing gcc even more.])
PIKE_MSG_WARN([])
PIKE_MSG_WARN([R_SPARC_UA32 relocations are supported on some versions])
PIKE_MSG_WARN([of Solaris. If you want to try a binary with R_SPARC_UA32])
PIKE_MSG_WARN([relocations, rerun configure with --with-force-ua32.])
PIKE_MSG_WARN([])
|
b09bef | 2001-01-25 | Henrik Grubbström (Grubba) | | exit 1
fi
|
4b21e7 | 2002-05-08 | John W. Pierce | | if test "x$with_patch_gcc" = "xno"; then :; else
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN([Will attempt to patch gcc.])
|
b09bef | 2001-01-25 | Henrik Grubbström (Grubba) | |
|
ac61a2 | 2001-12-06 | Henrik Grubbström (Grubba) | | AC_MSG_CHECKING([for cc1])
if test "x$with_patch_gcc" = "xyes"; then
cc1="`$CC -v 2>&1|sed -e '/\//s!^[[^/]]*\(/.*\)/specs$!\1/cc1!p' -ed`"
else
cc1="$with_patch_gcc";
fi
if test -f "$cc1"; then
AC_MSG_RESULT($cc1)
else
AC_MSG_RESULT(not found. Tried $cc1)
exit 1
fi
|
b09bef | 2001-01-25 | Henrik Grubbström (Grubba) | |
|
ac61a2 | 2001-12-06 | Henrik Grubbström (Grubba) | | AC_MSG_CHECKING(if $cc1 looks unpatched)
if /usr/bin/strings "$cc1" | grep uaword >/dev/null 2>&1; then
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no -- strange)
exit 1
fi
|
b09bef | 2001-01-25 | Henrik Grubbström (Grubba) | |
|
ac61a2 | 2001-12-06 | Henrik Grubbström (Grubba) | | AC_MSG_CHECKING(if patch_cc1 compiles)
link_cmd='${CC-cc} -o patch_cc1${ac_exeext} $CFLAGS -I. $CPPFLAGS $LDFLAGS $srcdir/patch_cc1.$ac_ext $LIBS 2>&5'
if { (eval echo Compiling patch_cc1: \"$link_cmd\") 1>&5; (eval $link_cmd) 2>&5; } && "$BUILDDIR/patch_cc1" -v >/dev/null 2>&5; then
AC_MSG_RESULT(yes)
|
b09bef | 2001-01-25 | Henrik Grubbström (Grubba) | |
|
ac61a2 | 2001-12-06 | Henrik Grubbström (Grubba) | | if test -f "$cc1.patched"; then
AC_MSG_ERROR([$cc1.patched already exists.
|
2c2ffa | 2001-01-26 | Henrik Grubbström (Grubba) | | Please move it out of the way.])
|
ac61a2 | 2001-12-06 | Henrik Grubbström (Grubba) | | exit 1;
fi
|
b09bef | 2001-01-25 | Henrik Grubbström (Grubba) | |
|
ac61a2 | 2001-12-06 | Henrik Grubbström (Grubba) | | if test -f "$cc1.orig"; then
AC_MSG_ERROR([$cc1.orig already exists.
|
2c2ffa | 2001-01-26 | Henrik Grubbström (Grubba) | | Please move it out of the way.])
|
ac61a2 | 2001-12-06 | Henrik Grubbström (Grubba) | | exit 1;
fi
|
b09bef | 2001-01-25 | Henrik Grubbström (Grubba) | |
|
ac61a2 | 2001-12-06 | Henrik Grubbström (Grubba) | | AC_MSG_CHECKING(if patch_cc1 works)
if ./patch_cc1 "$cc1" 2>&5 >"$cc1.patched"; then
if test -f "$cc1.patched"; then :; else
AC_MSG_RESULT(no - failed to create $cc1.patched)
exit 1
|
b09bef | 2001-01-25 | Henrik Grubbström (Grubba) | | fi
|
ac61a2 | 2001-12-06 | Henrik Grubbström (Grubba) | | if chmod 755 "$cc1.patched"; then :; else
AC_MSG_RESULT(no - failed to set permission to 755 on $cc1.patched)
|
b09bef | 2001-01-25 | Henrik Grubbström (Grubba) | | exit 1
fi
|
ac61a2 | 2001-12-06 | Henrik Grubbström (Grubba) | | if test "`/bin/ls -l \"$cc1\"|awk '{print $5}'`" = "`/bin/ls -l \"$cc1.patched\"|awk '{print $5}'`"; then
if /usr/bin/strings "$cc1.patched" | grep uaword >/dev/null 2>&1; then
rm -f "$cc1.patched"
AC_MSG_RESULT(no -- patching failed)
exit 1
fi
|
b09bef | 2001-01-25 | Henrik Grubbström (Grubba) | |
|
ac61a2 | 2001-12-06 | Henrik Grubbström (Grubba) | | if "$cc1.patched" --help >/dev/null 2>&1; then :; else
AC_MSG_RESULT(no -- the patched binary does not seem to work)
exit 1
fi
|
1d5a7b | 2001-01-25 | Henrik Grubbström (Grubba) | |
|
ac61a2 | 2001-12-06 | Henrik Grubbström (Grubba) | | AC_MSG_RESULT(yes)
|
1d5a7b | 2001-01-25 | Henrik Grubbström (Grubba) | |
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN(Activating the patched cc1.)
PIKE_MSG_WARN(NOTE: Entering critical section.)
PIKE_MSG_WARN(If configure fails at this point a broken gcc my result.)
|
ac61a2 | 2001-12-06 | Henrik Grubbström (Grubba) | | if /usr/bin/mv -f "$cc1" "$cc1.orig"; then
|
b09bef | 2001-01-25 | Henrik Grubbström (Grubba) | |
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN(Moved $cc1 to $cc1.orig.)
|
b09bef | 2001-01-25 | Henrik Grubbström (Grubba) | |
|
ac61a2 | 2001-12-06 | Henrik Grubbström (Grubba) | | if /usr/bin/mv -f "$cc1.patched" "$cc1"; then
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN(Patching seems to have succeeded.)
PIKE_MSG_WARN(Please rerun configure.)
|
ac61a2 | 2001-12-06 | Henrik Grubbström (Grubba) | | exit 1
fi
|
b09bef | 2001-01-25 | Henrik Grubbström (Grubba) | |
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN(Moving the patched cc1 into place failed.)
PIKE_MSG_WARN(Will try to restore the old cc1.)
|
ac61a2 | 2001-12-06 | Henrik Grubbström (Grubba) | |
if /usr/bin/mv -f "$cc1.orig" "$cc1"; then
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN(The old cc1 has been restored.)
|
ac61a2 | 2001-12-06 | Henrik Grubbström (Grubba) | | exit 1
fi
AC_MSG_ERROR([Restoring the old cc1 failed.
|
2c2ffa | 2001-01-26 | Henrik Grubbström (Grubba) | | Your installation of gcc is most likely broken now.
Sorry, you will have to restore it yourself.
Please move $cc1.orig to $cc1.])
|
ac61a2 | 2001-12-06 | Henrik Grubbström (Grubba) | | exit 1
else
AC_MSG_ERROR([Failed to move the old cc1 to safety.
|
2c2ffa | 2001-01-26 | Henrik Grubbström (Grubba) | | Please replace $cc1 with $cc1.patched by hand.])
|
ac61a2 | 2001-12-06 | Henrik Grubbström (Grubba) | | exit 1
fi
else
rm -f "$cc1.patched"
AC_MSG_ERROR([The size has changed.
You need to patch cc1 by hand.])
|
b09bef | 2001-01-25 | Henrik Grubbström (Grubba) | | exit 1
fi
else
|
ac61a2 | 2001-12-06 | Henrik Grubbström (Grubba) | | AC_MSG_RESULT(no -- you need to patch cc1 by hand)
|
b09bef | 2001-01-25 | Henrik Grubbström (Grubba) | | exit 1
fi
|
ac61a2 | 2001-12-06 | Henrik Grubbström (Grubba) | | else
AC_MSG_RESULT(no -- you need to patch cc1 by hand)
exit 1
fi
|
193c74 | 1999-05-31 | Henrik Grubbström (Grubba) | | fi
|
999815 | 1999-05-30 | Henrik Grubbström (Grubba) | | else :; fi
else :; fi
|
348fca | 1999-05-29 | Henrik Grubbström (Grubba) | | else :; fi
#############################################################################
|
f6c337 | 1998-09-29 | Henrik Grubbström (Grubba) | |
|
a1c502 | 2001-10-06 | Henrik Grubbström (Grubba) | | AC_ARG_WITH(root, MY_DESCR([--with-root=path],
[specify a cross-compilation root-directory]),[
|
cf3990 | 2001-01-19 | Henrik Grubbström (Grubba) | | case "$with_root" in
/)
with_root=""
;;
/*)
;;
no)
with_root=""
;;
*)
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN([Root path $with_root is not absolute. Ignored.])
|
cf3990 | 2001-01-19 | Henrik Grubbström (Grubba) | | with_root=""
;;
esac
],[with_root=""])
|
a1c502 | 2001-10-06 | Henrik Grubbström (Grubba) | | MY_AC_ARG_WITH(relocatable_dumped_modules,
MY_DESCR([--with-relocatable-dumped-modules],
[make dumped modules relocatable]),
[with_relocatable_dumped_modules=yes])
AC_ARG_WITH(dynamic_modules, MY_DESCR([--without-dynamic-modules],
[link modules statically]))
MY_AC_ARG_WITH(static_linking, MY_DESCR([--with-static-linking],
[link statically, if possible]),
[with_static_linking=yes])
|
fc4d96 | 2001-12-07 | Henrik Grubbström (Grubba) | | AC_ARG_WITH(site-prefixes,
MY_DESCR([--with-site-prefixes],
[list of prefixes to search for include, lib and bin dirs.]))
|
a1c502 | 2001-10-06 | Henrik Grubbström (Grubba) | | AC_ARG_WITH(include-path,
MY_DESCR([--with-include-path],
[a list of paths to search for include files.]))
AC_ARG_WITH(lib-path,
MY_DESCR([--with-lib-path],
[a list of paths to search for libraries.]))
|
3c6eaa | 2002-04-12 | Martin Stjernholm | | AC_ARG_WITH(long-double-precision, MY_DESCR([--with-long-double-precision],
[use long double precision floats]))
AC_ARG_WITH(double-precision, MY_DESCR([--with-double-precision],
[use double precision floats]))
AC_ARG_WITH(long-long-int, MY_DESCR([--with-long-long-int],
[use long long native type int (EXPERIMENTAL)]))
AC_ARG_WITH(long-int, MY_DESCR([--with-long-int],
[use long native type int (EXPERIMENTAL)]))
AC_ARG_WITH(int-int, MY_DESCR([--with-int-int],
[use int native type int]))
AC_ARG_WITH(short-int, MY_DESCR([--with-short-int],
[use short native type int (EXPERIMENTAL)]))
|
a1c502 | 2001-10-06 | Henrik Grubbström (Grubba) | |
MY_AC_ARG_WITH(dmalloc, MY_DESCR([--with-dmalloc],[enable memory-leak tests]),
|
299a4e | 2002-03-14 | Martin Stjernholm | | [AC_DEFINE(DEBUG_MALLOC,10)])
MY_AC_ARG_WITH(dmalloc-malloc, MY_DESCR([--with-dmalloc-malloc],
[Enable overloading malloc(3)]),
[ AC_DEFINE(ENCAPSULATE_MALLOC,1) ])
|
a1c502 | 2001-10-06 | Henrik Grubbström (Grubba) | | MY_AC_ARG_WITH(dmalloc-malloc-leaks,
|
299a4e | 2002-03-14 | Martin Stjernholm | | MY_DESCR([--with-dmalloc-malloc-leaks],
|
a1c502 | 2001-10-06 | Henrik Grubbström (Grubba) | | [Report memory allocated by malloc(3) as leaks.]),
[ AC_DEFINE(REPORT_ENCAPSULATED_MALLOC,1) ])
MY_AC_ARG_WITH(dmalloc-trace, MY_DESCR([--with-dmalloc-trace],
[enable tracepoints]),
[with_dmalloc_trace="yes" AC_DEFINE(DMALLOC_TRACE,10)])
|
299a4e | 2002-03-14 | Martin Stjernholm | | AC_ARG_WITH(debug, MY_DESCR([--with-debug],[same as --with-cdebug --with-rtldebug]),
[],[with_debug=])
AC_ARG_WITH(debug, MY_DESCR([--without-debug],[same as --without-cdebug --without-rtldebug]),
|
a1c502 | 2001-10-06 | Henrik Grubbström (Grubba) | | [],[with_debug=])
AC_ARG_WITH(rtldebug, MY_DESCR([--with-rtldebug],[enable run time self tests]),
[],[with_rtldebug=])
AC_ARG_WITH(cdebug, MY_DESCR([--without-cdebug],[disable -g]),[],[
|
aa38a8 | 1999-11-29 | Henrik Grubbström (Grubba) | | case "$pike_cv_sys_os:$GCC" in
Solaris:no)
# Solaris/cc has problems with combining optimizations and debuginfo.
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN([Defaulting to --without-cdebug since the OS is Solaris,
|
0d53c5 | 2002-08-19 | Henrik Grubbström (Grubba) | | and gcc is not being used.])
with_cdebug=no
;;
HP-UX:no|HPUX:no)
# HP-UX/cc has problems with combining optimizations and debuginfo.
#
# cc: internal panic 7815: Malloc: underflow detected in free(). (7815)
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN([Defaulting to --without-cdebug since the OS is HP-UX,
|
81e643 | 2000-01-03 | Martin Stjernholm | | and gcc is not being used.])
|
aa38a8 | 1999-11-29 | Henrik Grubbström (Grubba) | | with_cdebug=no
;;
*)
with_cdebug=
;;
esac
])
|
a1c502 | 2001-10-06 | Henrik Grubbström (Grubba) | | AC_ARG_WITH(copt, MY_DESCR([--without-copt], [disable -O2]), [], [with_copt=])
AC_ARG_WITH(threads, MY_DESCR([--without-threads], [disable threads support]),
[],[
|
2f0411 | 2000-02-03 | Fredrik Hübinette (Hubbe) | | case "x$pike_cv_sys_os" in
xFreeBSD*)
|
0b620a | 2001-01-21 | Henrik Grubbström (Grubba) | | if test "`uname -r|sed -e 's/\([[0-9]]*\).*/\1/'`" -lt 4; then
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN([
|
2f0411 | 2000-02-03 | Fredrik Hübinette (Hubbe) | | FreeBSD <= 3.x detected, disabling threads.
Use --with-threads to force threads support.
|
e1afda | 2003-02-03 | Henrik Grubbström (Grubba) | | ])
with_threads=no
fi
;;
xOpenBSD*)
if test "`uname -r|sed -e 's/\([[0-9]]*\).*/\1/'`" -lt 4 \
-a "x`uname -m`" = "xalpha"; then
PIKE_MSG_WARN([
OpenBSD/alpha <= 3.x detected, disabling threads.
Use --with-threads to force threads support.
|
2f0411 | 2000-02-03 | Fredrik Hübinette (Hubbe) | | ])
with_threads=no
fi
;;
esac
|
cd5748 | 2000-02-03 | Henrik Grubbström (Grubba) | | if test "x${with_threads-}" = x; then
|
2f0411 | 2000-02-03 | Fredrik Hübinette (Hubbe) | | with_threads=yes
fi
])
|
38c2d6 | 2002-11-24 | Martin Stjernholm | |
AC_ARG_WITH(malloc_overhead,
MY_DESCR([--with-malloc-overhead=n],
[tune the malloc block overhead (default is 2 * sizeof(void *))]),
[AC_DEFINE(PIKE_MALLOC_OVERHEAD,($withval))],
[AC_DEFINE(PIKE_MALLOC_OVERHEAD,(2 * sizeof(void *)))])
AC_ARG_WITH(malloc_page_size,
MY_DESCR([--with-malloc-page-size=n],
[tune to the memory page size (default is 4 kb)]),
[AC_DEFINE(PIKE_MALLOC_PAGE_SIZE,($withval))],
[AC_DEFINE(PIKE_MALLOC_PAGE_SIZE,(4 * 1024))])
AC_ARG_WITH(gdbm, MY_DESCR([--without-gdbm],[no GNU database manager support]))
AC_ARG_WITH(gmp, MY_DESCR([--without-gmp],[no support for Gmp bignums]))
|
a1c502 | 2001-10-06 | Henrik Grubbström (Grubba) | | AC_ARG_WITH(zlib, MY_DESCR([--without-zlib],[disable gz compression support]),
[],[with_zlib=yes])
AC_ARG_WITH(ssleay,
MY_DESCR([--with-ssleay],
[support for the secure socket protocol (OBSOLETE)]),
[],[with_ssleay=no])
AC_ARG_WITH(mysql, MY_DESCR([--without-mysql],
[disable support for the Mysql database]),
[],[with_mysql=yes])
AC_ARG_WITH(gif-rle, MY_DESCR([--with-gif-rle],
[use kind-of-rle packing instead of lzw]))
AC_ARG_WITH(rsaref, MY_DESCR([--with-rsaref=path],[Support for RSAREF]))
|
a92414 | 2002-11-18 | Henrik Grubbström (Grubba) | | AC_ARG_WITH(valgrind, MY_DESCR([--with-valgrind=path],
|
b92bcd | 2002-11-18 | Henrik Grubbström (Grubba) | | [Support for running with valgrind]), [
|
a92414 | 2002-11-18 | Henrik Grubbström (Grubba) | | if test "x$with_valgrind" = "xyes"; then
AC_PATH_PROG(with_valgrind, valgrind, no)
if test "x$with_valgrind" = "xno"; then
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN(valgrind not found, disabled.)
|
ac6958 | 2002-11-19 | Henrik Grubbström (Grubba) | | else :; fi
|
a92414 | 2002-11-18 | Henrik Grubbström (Grubba) | | else :; fi
], [with_valgrind=no])
|
a1c502 | 2001-10-06 | Henrik Grubbström (Grubba) | | AC_ARG_WITH(checker, MY_DESCR([--with-checker],
[add extra memory checking overhead (Purify)]))
MY_AC_ARG_WITH(profiling, MY_DESCR([--with-profiling],
[add code used to profile pike code]),
[AC_DEFINE(PROFILING)])
|
a8a813 | 2002-09-13 | Martin Stjernholm | | MY_AC_ARG_WITH(internal-profiling, MY_DESCR([--with-internal-profiling],
[add profiling code for various internal things]),
[AC_DEFINE(INTERNAL_PROFILING)])
|
a1c502 | 2001-10-06 | Henrik Grubbström (Grubba) | | MY_AC_ARG_WITH(pg, MY_DESCR([--with-pg],[use the gcc -pg option]),
[PROFIL=-pg])
AC_ARG_WITH(poll, MY_DESCR([--with-poll], [use poll instead of select]), [], [
|
78a69c | 1998-09-29 | Henrik Grubbström (Grubba) | | # Neither --with-poll nor --without-poll was specified
case "$pike_cv_sys_os" in
|
95161d | 2002-11-28 | Xavier Beaudouin | | Solaris|HP-UX|OSF1|IRIX|Linux|UnixWare|OpenUNIX)
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN([Defaulting to --with-poll since the OS is $pike_cv_sys_os.])
|
d7bcfd | 1998-09-29 | Henrik Grubbström (Grubba) | | with_poll=yes
|
f6c337 | 1998-09-29 | Henrik Grubbström (Grubba) | | ;;
|
d0be14 | 1999-05-27 | Fredrik Hübinette (Hubbe) | | AIX)
|
085ac6 | 1999-05-27 | Henrik Grubbström (Grubba) | | # poll(2) is broken on AIX 4.1 and earlier.
|
d0be14 | 1999-05-27 | Fredrik Hübinette (Hubbe) | | if test "`uname -r`" -ge 2 -a "`uname -v`" -ge 4 ; then
with_poll=yes
|
085ac6 | 1999-05-27 | Henrik Grubbström (Grubba) | | else if test "`uname -v`" -gt 4 ; then
|
d5614e | 1999-05-27 | Henrik Grubbström (Grubba) | | with_poll=yes
else :; fi
fi
|
085ac6 | 1999-05-27 | Henrik Grubbström (Grubba) | | if test "$with_poll" = "yes" ; then
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN([Defaulting to --with-poll since the OS is AIX 4.2 or later.])
|
085ac6 | 1999-05-27 | Henrik Grubbström (Grubba) | | else :; fi
|
d0be14 | 1999-05-27 | Fredrik Hübinette (Hubbe) | | ;;
|
f6c337 | 1998-09-29 | Henrik Grubbström (Grubba) | | esac
])
|
a1c502 | 2001-10-06 | Henrik Grubbström (Grubba) | | AC_ARG_WITH(max-fd,
MY_DESCR([--with-max-fd=X],
[set how many filedescriptors can be used at once]),
[pike_cv_max_open_fd=$withval])
MY_AC_ARG_WITH(oob, MY_DESCR([--without-oob],
[disable out-of-band data handling]),[],[
|
17afa2 | 2001-06-13 | Henrik Grubbström (Grubba) | | if test "$pike_cv_sys_os" = "Windows_NT"; then
|
a1c502 | 2001-10-06 | Henrik Grubbström (Grubba) | | AC_MSG_ERROR([Support for out of band data is mandatory on NT.])
|
17afa2 | 2001-06-13 | Henrik Grubbström (Grubba) | | else :; fi
],[with_oob=yes])
|
a1c502 | 2001-10-06 | Henrik Grubbström (Grubba) | | MY_AC_ARG_WITH(compiler-trace, MY_DESCR([--with-compiler-trace],
[enable tracing of the compiler]),
[AC_DEFINE(YYDEBUG)])
AC_ARG_WITH(security, MY_DESCR([--with-security],
[enable internal pike security system]),
[AC_DEFINE(PIKE_SECURITY)])
AC_ARG_WITH(bignums, MY_DESCR([--without-bignums],
[disable internal conversion to bignums]),
[],[with_bignums=yes])
|
e2b7b9 | 2002-04-27 | Martin Stjernholm | | dnl Shared nodes has been disabled in an ugly way. To enable it you
dnl need to remove the line that sets the OPT_NOT_SHARED flag at the
dnl top of freeze_node in src/las.c. /mast
dnl AC_ARG_WITH(shared-nodes,
dnl MY_DESCR([--without-shared-nodes],
dnl [disable the SHARED_NODES mode of the optimizer]),
dnl [],[with_shared_nodes=yes])
|
a1c502 | 2001-10-06 | Henrik Grubbström (Grubba) | | AC_ARG_WITH(computed-goto,
MY_DESCR([--with-computed-goto],
[enable use of gcc-style computed goto (EXPERIMENTAL).]),
[], [with_computed_goto=no])
AC_ARG_WITH(machine-code,
|
e2b7b9 | 2002-04-27 | Martin Stjernholm | | MY_DESCR([--without-machine-code],
|
a92414 | 2002-11-18 | Henrik Grubbström (Grubba) | | [do not try to use of machine code on supported architectures.]),
|
bbb950 | 2002-09-07 | Henrik Grubbström (Grubba) | | [], [
# Currently only supported with gcc.
#
# Further tests later on.
with_machine_code="$GCC"
])
|
a1c502 | 2001-10-06 | Henrik Grubbström (Grubba) | |
MY_AC_ARG_WITH(keypair-loop,
MY_DESCR([--with-keypair-loop],
[enable use of keypair mapping loop method (EXPERIMENTAL).]),
[AC_DEFINE(PIKE_MAPPING_KEYPAIR_LOOP)])
MY_AC_ARG_WITH(lock,
MY_DESCR([--without-lock],
[enable experimental code for multicpu machines (EXPERIMENTAL).]),
[],[AC_DEFINE(PIKE_RUN_UNLOCKED)])
|
e83eb9 | 2001-03-22 | Fredrik Hübinette (Hubbe) | |
|
5b15bb | 2001-12-10 | Martin Stjernholm | | MY_AC_ARG_WITH(new-multisets,
|
011634 | 2002-12-05 | Martin Stjernholm | | MY_DESCR([--without-new-multisets],
[disable the new multiset implementation.]),
[AC_DEFINE(PIKE_NEW_MULTISETS)],[],
[AC_DEFINE(PIKE_NEW_MULTISETS)])
|
5b15bb | 2001-12-10 | Martin Stjernholm | |
|
a1c502 | 2001-10-06 | Henrik Grubbström (Grubba) | | AC_ARG_WITH(pike-type, MY_DESCR([--without-pike-type],
|
391350 | 2002-06-25 | Henrik Grubbström (Grubba) | | [disable struct pike_type (IGNORED).]))
|
6cb70d | 2001-02-21 | Henrik Grubbström (Grubba) | |
|
391350 | 2002-06-25 | Henrik Grubbström (Grubba) | | if test "x$with_pike_type" = "xno"; then
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN([Disabling of USE_PIKE_TYPE is no longer supported.])
|
769d1c | 2001-03-27 | Henrik Grubbström (Grubba) | | fi
|
6cb70d | 2001-02-21 | Henrik Grubbström (Grubba) | |
|
769d1c | 2001-03-27 | Henrik Grubbström (Grubba) | | if test "x$with_oob" = "xno"; then :; else
|
653f32 | 2000-06-28 | Fredrik Hübinette (Hubbe) | | AC_DEFINE(WITH_OOB)
fi
|
011ad3 | 1999-10-22 | Fredrik Hübinette (Hubbe) | | if test "x$with_bignums" = xyes; then
AC_DEFINE(AUTO_BIGNUM)
|
490016 | 1999-10-23 | Fredrik Noring | | if test "x$with_gmp" = xno; then
|
5435a7 | 2000-05-04 | Fredrik Hübinette (Hubbe) | | AC_MSG_ERROR([Cannot compile --with-bignums without the GMP library
It is highly recommended that you install a working GMP
library on your system as that will add features to Pike
|
cab7ce | 2001-08-29 | Martin Stjernholm | | required by many applications (such as Roxen). However,
|
5435a7 | 2000-05-04 | Fredrik Hübinette (Hubbe) | | if you know that you do not need GMP, you may re-run configure
with the option --without-bignums instead.
|
011ad3 | 1999-10-22 | Fredrik Hübinette (Hubbe) | | ])
else :; fi
else :; fi
|
f6c337 | 1998-09-29 | Henrik Grubbström (Grubba) | |
|
a4e813 | 2000-06-17 | Henrik Grubbström (Grubba) | | if test "x$with_shared_nodes" != xno; then
|
769d1c | 2001-03-27 | Henrik Grubbström (Grubba) | | echo 'Enabling the SHARED_NODES mode of the optimizer.'
|
de2896 | 1999-11-13 | Henrik Grubbström (Grubba) | | AC_DEFINE(SHARED_NODES)
else :; fi
|
f6c337 | 1998-09-29 | Henrik Grubbström (Grubba) | | if test "x$with_poll" = "xyes"; then
AC_DEFINE(HAVE_AND_USE_POLL)
else :; fi
|
a92414 | 2002-11-18 | Henrik Grubbström (Grubba) | | if test "x$with_valgrind" = "xno"; then
VALGRIND=""
|
e040cf | 2002-11-23 | Martin Stjernholm | | VALGRINDARGS=""
|
a92414 | 2002-11-18 | Henrik Grubbström (Grubba) | | else
|
e42fa8 | 2002-11-23 | Martin Stjernholm | | VALGRIND="$with_valgrind"
|
e040cf | 2002-11-23 | Martin Stjernholm | | # Make valgrind a bit silent by default.
VALGRINDARGS=-q
|
37e9f1 | 2002-11-19 | Henrik Grubbström (Grubba) | | AC_DEFINE(USE_VALGRIND)
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | |
if test "x$with_copt" != "xno"; then
PIKE_MSG_WARN([--without-copt is advisable when using valgrind!])
fi
|
8fe18a | 2002-12-12 | Mirar (Pontus Hagland) | |
CFLAGS=" -mcpu=i486 -march=i486 ${CFLAGS-}";
PIKE_MSG_WARN([-mcpu=486 forced since valgrind is used])
|
a92414 | 2002-11-18 | Henrik Grubbström (Grubba) | | fi
|
e040cf | 2002-11-23 | Martin Stjernholm | | export VALGRIND VALGRINDARGS
|
a92414 | 2002-11-18 | Henrik Grubbström (Grubba) | | AC_SUBST(VALGRIND)
|
e040cf | 2002-11-23 | Martin Stjernholm | | AC_SUBST(VALGRINDARGS)
|
a92414 | 2002-11-18 | Henrik Grubbström (Grubba) | |
|
bf61b9 | 1999-02-06 | Henrik Grubbström (Grubba) | | if test "x$with_checker" = "xyes"; then
AC_DEFINE(__CHECKER__)
else :; fi
|
4839dd | 2001-09-02 | Marcus Comstedt | | if test "x$with_relocatable_dumped_modules" = xyes; then
PIKE_MODULE_RELOC=1
else
PIKE_MODULE_RELOC=""
fi
AC_SUBST(PIKE_MODULE_RELOC)
|
4b8d50 | 2000-12-19 | Henrik Grubbström (Grubba) | |
|
f6c337 | 1998-09-29 | Henrik Grubbström (Grubba) | | #
# Allow --with(out)-debug to toggle both cdebug and rtldebug, but
# let --with(out)-{c,rtl}debug take precedence.
#
if test "x$with_cdebug" = x ; then
with_cdebug="$with_debug"
fi
if test "x$with_rtldebug" = x ; then
with_rtldebug="$with_debug"
fi
|
4b8d50 | 2000-12-19 | Henrik Grubbström (Grubba) | | #
# --with-dmalloc requires --with-rtldebug
#
if test "x$with_dmalloc" = "x"; then :; else
if test "x$with_rtldebug" = "xyes"; then :; else
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN([Debug malloc requires rtldebug. Enabling rtldebug.])
|
32ead5 | 2000-12-19 | Henrik Grubbström (Grubba) | | with_rtldebug=yes
|
4b8d50 | 2000-12-19 | Henrik Grubbström (Grubba) | | fi
fi
|
f6c337 | 1998-09-29 | Henrik Grubbström (Grubba) | | #
# Defaults for cdebug and rtldebug here:
#
if test "x$with_cdebug" = x ; then
with_cdebug=yes
fi
if test "x$with_rtldebug" = x ; then
|
88b268 | 2000-12-17 | Henrik Grubbström (Grubba) | | with_rtldebug=no
# with_rtldebug=yes
|
f6c337 | 1998-09-29 | Henrik Grubbström (Grubba) | | fi
if test "x$with_rtldebug" = xyes ; then
|
71f3a2 | 1998-11-22 | Fredrik Hübinette (Hubbe) | | AC_DEFINE(PIKE_DEBUG)
|
f6c337 | 1998-09-29 | Henrik Grubbström (Grubba) | | fi
#############################################################################
|
48ae53 | 1996-10-09 | Fredrik Hübinette (Hubbe) | |
|
8cf37d | 1997-01-27 | Per Hedbor | |
WARN=""
|
8a5cd3 | 2001-06-07 | Fredrik Hübinette (Hubbe) | | OPTIMIZE="${OPTFLAGS-}"
|
8cf37d | 1997-01-27 | Per Hedbor | |
|
4b6339 | 2002-12-10 | Mirar (Pontus Hagland) | | AC_ARG_ENABLE(pedantic, MY_DESCR([--enable-pedantic],
|
bd841c | 2002-12-10 | Henrik Grubbström (Grubba) | | [enable -pedantic compilation]))
|
4b6339 | 2002-12-10 | Mirar (Pontus Hagland) | |
|
bd841c | 2002-12-10 | Henrik Grubbström (Grubba) | | if test "$cflags_is_set" = "no"; then
|
2901d3 | 1998-08-05 | Fredrik Hübinette (Hubbe) | | if test "x$with_cdebug" = "xno" ; then
CFLAGS=`echo " $CFLAGS " | sed -e 's@ -g @ @g'`
else
:
|
f41e0d | 1999-10-19 | Henrik Grubbström (Grubba) | | fi
|
2901d3 | 1998-08-05 | Fredrik Hübinette (Hubbe) | |
|
4b6339 | 2002-12-10 | Mirar (Pontus Hagland) | | if test "x$enable_pedantic" = "xyes"; then
AC_SYS_COMPILER_FLAG(-pedantic,pedantic,WARN)
fi
|
2901d3 | 1998-08-05 | Fredrik Hübinette (Hubbe) | |
|
4b6339 | 2002-12-10 | Mirar (Pontus Hagland) | |
if test "x${GCC-}" = xyes ; then
|
2e96cd | 2000-08-12 | Per Hedbor | | # Do not use -Wall, since that produces a lot of warnings that are not
|
3d6e5c | 2000-08-17 | Henrik Grubbström (Grubba) | | # really interresting (such as the warning for if( ... ) ... if(
|
2e96cd | 2000-08-12 | Per Hedbor | | # ... ) .... else
|
4b6339 | 2002-12-10 | Mirar (Pontus Hagland) | | AC_SYS_COMPILER_FLAG(-W,W,WARN)
AC_SYS_COMPILER_FLAG(-Wall,Wall,WARN)
AC_SYS_COMPILER_FLAG(-Wno-unused,Wno_unused,WARN)
AC_SYS_COMPILER_FLAG(-Wcomment,Wcomment,WARN)
AC_SYS_COMPILER_FLAG(-Wformat,Wformat,WARN)
AC_SYS_COMPILER_FLAG(-Wimplicit-function-declaration,Wimplicit_function_declaration,WARN)
AC_SYS_COMPILER_FLAG(-Wmultichar,Wmultichar,WARN)
AC_SYS_COMPILER_FLAG(-Wswitch,Wswitch,WARN)
if test "x$with_copt" != xno; then
# gcc complains that it doesn't support this when compiling
# without optimizations.
AC_SYS_COMPILER_FLAG(-Wuninitialized,Wuninitialized,WARN)
fi
AC_SYS_COMPILER_FLAG(-Wpointer-arith,Wpointer_arith,WARN)
AC_SYS_COMPILER_FLAG(-Wchar-subscripts,Wchar_subscripts,WARN)
AC_SYS_COMPILER_FLAG(-Wno-long-long,Wno_long_long,WARN)
|
9c5a5e | 1997-12-20 | Henrik Grubbström (Grubba) | |
|
4b6339 | 2002-12-10 | Mirar (Pontus Hagland) | | if test "x${with_static_linking-}" = "xyes" ; then
AC_SYS_COMPILER_FLAG(-static,link_static,CFLAGS)
else
:
fi
##
## -fomit-frame-pointer does not work with egcs 1.1.1
## /Hubbe 1998-12-20
##
#if test "x$with_cdebug" = "xno" ; then
# AC_SYS_COMPILER_FLAG(-fomit-frame-pointer,fomit_frame_pointer,OPTIMIZE)
#else
# :
#fi
|
9c5a5e | 1997-12-20 | Henrik Grubbström (Grubba) | |
|
8cf37d | 1997-01-27 | Per Hedbor | | ### Optimize for different SUN machines. If there is no working 'uname'
### no extra optimization will be done, but nothing should break either.
|
50adc3 | 1998-04-17 | Fredrik Hübinette (Hubbe) | | case "`uname -m 2>/dev/null`" in
sun4c)
|
769d1c | 2001-03-27 | Henrik Grubbström (Grubba) | | # The -msparclite option seems to generate assembler that /bin/as doesn't
|
e65d8d | 1998-07-17 | Henrik Grubbström (Grubba) | | # understand. /grubba 1998-07-17
|
7e83af | 2001-03-23 | Henrik Grubbström (Grubba) | | # AC_SYS_COMPILER_FLAG(-msparclite,sparclite,CFLAGS)
|
50adc3 | 1998-04-17 | Fredrik Hübinette (Hubbe) | | ;;
sun4m)
|
7e83af | 2001-03-23 | Henrik Grubbström (Grubba) | | AC_SYS_COMPILER_FLAG(-mv8,microsparc,CFLAGS)
|
50adc3 | 1998-04-17 | Fredrik Hübinette (Hubbe) | | ;;
sun4d)
|
7e83af | 2001-03-23 | Henrik Grubbström (Grubba) | | AC_SYS_COMPILER_FLAG(-msupersparc,supersparc,CFLAGS)
|
50adc3 | 1998-04-17 | Fredrik Hübinette (Hubbe) | | ;;
sun4u)
|
7e83af | 2001-03-23 | Henrik Grubbström (Grubba) | | AC_SYS_COMPILER_FLAG(-mcpu=ultrasparc,mcpu_ultrasparc,CFLAGS,[
AC_SYS_COMPILER_FLAG(-msupersparc,supersparc,CFLAGS)
|
d769bf | 2001-03-23 | Henrik Grubbström (Grubba) | | ])
|
50adc3 | 1998-04-17 | Fredrik Hübinette (Hubbe) | | ;;
i586)
|
ecb760 | 2002-08-20 | Henrik Grubbström (Grubba) | | AC_SYS_COMPILER_FLAG(-mcpu=pentium,mcpu_pentium,CFLAGS,[
AC_SYS_COMPILER_FLAG(-mpentium,pentium,CFLAGS)
])
|
50adc3 | 1998-04-17 | Fredrik Hübinette (Hubbe) | | ;;
i686)
|
7e83af | 2001-03-23 | Henrik Grubbström (Grubba) | | AC_SYS_COMPILER_FLAG(-mcpu=i686,mcpu_i686,CFLAGS,[
AC_SYS_COMPILER_FLAG(-mpentiumpro,pentiumpro,CFLAGS,[
|
ecb760 | 2002-08-20 | Henrik Grubbström (Grubba) | | AC_SYS_COMPILER_FLAG(-mcpu=pentium,mcpu_pentium,CFLAGS,[
AC_SYS_COMPILER_FLAG(-mpentium,pentium,CFLAGS)
])
|
aa29dd | 2001-03-19 | Mirar (Pontus Hagland) | | ])
|
50adc3 | 1998-04-17 | Fredrik Hübinette (Hubbe) | | ])
|
43594f | 2001-09-18 | Fredrik Hübinette (Hubbe) | | # AC_SYS_COMPILER_FLAG(-march=i686,march_i686,CFLAGS)
|
50adc3 | 1998-04-17 | Fredrik Hübinette (Hubbe) | | ;;
|
2e96cd | 2000-08-12 | Per Hedbor | | i86pc)
case "`isalist 2>/dev/null`" in
*pentium_pro*)
|
7e83af | 2001-03-23 | Henrik Grubbström (Grubba) | | AC_SYS_COMPILER_FLAG(-mcpu=i686,mcpu_i686,CFLAGS,[
|
ecb760 | 2002-08-20 | Henrik Grubbström (Grubba) | | AC_SYS_COMPILER_FLAG(-mpentiumpro,pentiumpro,CFLAGS,[
AC_SYS_COMPILER_FLAG(-mcpu=pentium,mcpu_pentium,CFLAGS,[
AC_SYS_COMPILER_FLAG(-mpentium,pentium,CFLAGS)
])
])
|
61fb90 | 2001-03-19 | Mirar (Pontus Hagland) | | ])
|
43594f | 2001-09-18 | Fredrik Hübinette (Hubbe) | | # AC_SYS_COMPILER_FLAG(-march=i686,march_i686,CFLAGS)
|
2e96cd | 2000-08-12 | Per Hedbor | | ;;
*pentium*)
|
ecb760 | 2002-08-20 | Henrik Grubbström (Grubba) | | AC_SYS_COMPILER_FLAG(-mcpu=pentium,mcpu_pentium,CFLAGS,[
AC_SYS_COMPILER_FLAG(-mpentium,pentium,CFLAGS,[
AC_SYS_COMPILER_FLAG(-m486,486,CFLAGS)
])
|
2e96cd | 2000-08-12 | Per Hedbor | | ])
;;
esac
;;
|
50adc3 | 1998-04-17 | Fredrik Hübinette (Hubbe) | | esac
|
b7c2ef | 1999-08-08 | Henrik Grubbström (Grubba) | |
# AIX
DO_IF_OS(AIX,
[
# Tell the linker to generate a large toc if needed
|
6d5089 | 2001-07-12 | Henrik Grubbström (Grubba) | | #
# This option is not needed on AIX 5L/ia64.
if test "x`uname -p`" = "xia64"; then :; else
AC_SYS_COMPILER_FLAG(-bbigtoc,bbigtoc,LDFLAGS)
AC_SYS_COMPILER_FLAG([-Wl,-bbigtoc],Wlbbigtoc,LDFLAGS)
fi
|
05cd67 | 2000-09-28 | Henrik Grubbström (Grubba) | | ])
|
ce3dcd | 2001-11-02 | Jonas Wallden | | DO_IF_OS(Darwin,
[
# aka MacOS X.
# Foundation framework needed by JavaVM.framework. The OS X 10.1 linker
# no longer includes indirect dependencies so we need to add them here.
AC_SYS_COMPILER_FLAG(-framework Foundation, framework_Foundation, LDFLAGS)
|
0ee802 | 2002-03-07 | H. William Welliver III | | AC_SYS_COMPILER_FLAG(-framework System, fraework_System, LDFLAGS)
|
ce3dcd | 2001-11-02 | Jonas Wallden | |
# -flat_namespace only needed for linking with libMallocDebug
# AC_SYS_COMPILER_FLAG(-flat_namespace, flat_namespace, LDFLAGS)
])
|
5866e0 | 1999-04-25 | Henrik Grubbström (Grubba) | | else if test "x${TCC-}" = xyes ; then
# Yikes! We're using the TenDRA compiler!
# Make sure we can use the system headerfiles...
|
d52353 | 2002-09-24 | Henrik Grubbström (Grubba) | | # Already done by the CC test in aclocal.m4.
# AC_SYS_COMPILER_FLAG(-Ysystem, ysystem, CPPFLAGS)
|
5866e0 | 1999-04-25 | Henrik Grubbström (Grubba) | |
# Use lenient ANSI compliance...
|
5fdd8c | 2000-08-02 | Henrik Grubbström (Grubba) | | #AC_SYS_COMPILER_FLAG(-Xa, xa, CFLAGS)
|
5866e0 | 1999-04-25 | Henrik Grubbström (Grubba) | |
|
607710 | 1999-05-15 | Henrik Grubbström (Grubba) | | # Find out where libtdf.a is hidden.
AC_MSG_CHECKING(for machine dependant library directory)
AC_CACHE_VAL(pike_cv_tcc_lib_path,
[
|
4d5d02 | 1999-05-15 | Henrik Grubbström (Grubba) | | pike_cv_tcc_lib_path="`${CC-cc} -dry conftest.c -i 2>&1 | sed -e '/tdfc/s/bin\/tdfc.*/lib\/sys/p' -ed| head -1`"
|
607710 | 1999-05-15 | Henrik Grubbström (Grubba) | | if test -d "$pike_cv_tcc_lib_path/." ; then :; else
# Failed.
pike_cv_tcc_lib_path="no"
fi
])
AC_MSG_RESULT($pike_cv_tcc_lib_path)
if test "$pike_cv_tcc_lib_path" = "no" ; then :; else
LDFLAGS="$LDFLAGS -L$pike_cv_tcc_lib_path"
# This library is needed for 64bit support on 32bit machines/OS's.
AC_CHECK_LIB(tdf, __TDFUnot)
fi
|
8cf37d | 1997-01-27 | Per Hedbor | | else
|
5866e0 | 1999-04-25 | Henrik Grubbström (Grubba) | | # Assume system compiler "cc".
|
8334e3 | 1999-01-29 | Fredrik Hübinette (Hubbe) | |
|
34251a | 1999-02-05 | Martin Stjernholm | | if test "x${with_static_linking-}" = "xyes" ; then
|
8334e3 | 1999-01-29 | Fredrik Hübinette (Hubbe) | | DO_IF_OS(AIX,
[
|
5866e0 | 1999-04-25 | Henrik Grubbström (Grubba) | | AC_SYS_COMPILER_FLAG([-Wl,-bstatic],wl_link_static,CFLAGS)
|
8334e3 | 1999-01-29 | Fredrik Hübinette (Hubbe) | | LD_FALLBACK_FLAGS="${LD_FALLBACK_FLAGS} -bstatic"
])
DO_IF_OS(OSF1,
[
AC_SYS_COMPILER_FLAG(-non_shared,non_shared,CFLAGS)
LD_FALLBACK_FLAGS="${LD_FALLBACK_FLAGS} -non_shared"
])
DO_IF_OS(IRIX,
[
AC_SYS_COMPILER_FLAG(-non_shared,non_shared,CFLAGS)
LD_FALLBACK_FLAGS="${LD_FALLBACK_FLAGS} -B static"
])
# how do you link statically on HP-UX ?
else
:
fi
|
8cf37d | 1997-01-27 | Per Hedbor | | ### Non-gcc thingies. This should probably be enhanced...
|
fde5a6 | 1997-09-05 | Henrik Grubbström (Grubba) | |
|
d4fc87 | 2003-01-16 | David Hedbor | | # Linux with Intel C++
DO_IF_OS(Linux,
[
|
1375c8 | 2003-01-16 | David Hedbor | | if test "x$REALCC" = "xicc"; then
|
d4fc87 | 2003-01-16 | David Hedbor | | AC_SYS_COMPILER_FLAG(-Ob2,Ob2,OPTIMIZE)
AC_SYS_COMPILER_FLAG(-ipo,ipo,OPTIMIZE)
AC_SYS_COMPILER_FLAG(-ipo,ipo,EXTRALDFLAGS)
AC_SYS_COMPILER_FLAG(-ipo_obj,ipo_obj,OPTIMIZE)
# arch dependent optimizations while maintaining
# i386 compatibility
AC_SYS_COMPILER_FLAG(-axKW,axKW,OPTIMIZE)
fi
])
|
d93ff5 | 1997-11-02 | Henrik Grubbström (Grubba) | | # Solaris
|
8334e3 | 1999-01-29 | Fredrik Hübinette (Hubbe) | | DO_IF_OS(Solaris,
[
AC_SYS_COMPILER_FLAG(-fast,fast,OPTIMIZE)
AC_SYS_COMPILER_FLAG(-xdepend,xdepend,OPTIMIZE)
AC_SYS_COMPILER_FLAG(-xs,xs,CFLAGS)
# Causes __STDC__ to be 1 which causes several headerfiles to behave
# differently.
# AC_SYS_OS_COMPILER_FLAG(-Xc,Xc,WARN)
])
|
d93ff5 | 1997-11-02 | Henrik Grubbström (Grubba) | |
|
de386f | 1998-08-06 | Henrik Grubbström (Grubba) | | # AIX
|
8334e3 | 1999-01-29 | Fredrik Hübinette (Hubbe) | | DO_IF_OS(AIX,
[
# This one is needed to get the compiler to fail on errors,
|
c74478 | 2001-06-29 | Henrik Grubbström (Grubba) | | # which is needed for several configure-tests.
|
8334e3 | 1999-01-29 | Fredrik Hübinette (Hubbe) | | AC_SYS_COMPILER_FLAG(-qhalt=e,qhalt_e,CFLAGS)
AC_SYS_COMPILER_FLAG(-qro,qro,OPTIMIZE)
|
dc8308 | 2000-09-15 | Henrik Grubbström (Grubba) | | AC_SYS_COMPILER_FLAG(-qfold,qfold,OPTIMIZE)
AC_SYS_COMPILER_FLAG(-qwarn64,qwarn64,WARN)
|
e7c34a | 2000-09-17 | Henrik Grubbström (Grubba) | | AC_SYS_COMPILER_FLAG(-qflag=w:w,qflag_w_w,WARN)
|
dc8308 | 2000-09-15 | Henrik Grubbström (Grubba) | | AC_DEFUN(AC_SYS_COMPILER_FLAG_QINFO, [
AC_SYS_COMPILER_FLAG(-qinfo=$1,qinfo_$1,WARN)
])
AC_SYS_COMPILER_FLAG_QINFO(cmp)
AC_SYS_COMPILER_FLAG_QINFO(cnd)
AC_SYS_COMPILER_FLAG_QINFO(cns)
AC_SYS_COMPILER_FLAG_QINFO(cnv)
AC_SYS_COMPILER_FLAG_QINFO(dcl)
AC_SYS_COMPILER_FLAG_QINFO(eff)
AC_SYS_COMPILER_FLAG_QINFO(enu)
AC_SYS_COMPILER_FLAG_QINFO(ext)
AC_SYS_COMPILER_FLAG_QINFO(gen)
AC_SYS_COMPILER_FLAG_QINFO(gnr)
AC_SYS_COMPILER_FLAG_QINFO(got)
AC_SYS_COMPILER_FLAG_QINFO(ini)
AC_SYS_COMPILER_FLAG_QINFO(inl)
AC_SYS_COMPILER_FLAG_QINFO(lan)
AC_SYS_COMPILER_FLAG_QINFO(obs)
AC_SYS_COMPILER_FLAG_QINFO(ord)
AC_SYS_COMPILER_FLAG_QINFO(par)
AC_SYS_COMPILER_FLAG_QINFO(por)
|
e7c34a | 2000-09-17 | Henrik Grubbström (Grubba) | | # ppc disabled since it complains about the system header files.
# AC_SYS_COMPILER_FLAG_QINFO(ppc)
# ppt disabled since tracing the preprocessor isn't interresting.
# AC_SYS_COMPILER_FLAG_QINFO(ppt)
|
dc8308 | 2000-09-15 | Henrik Grubbström (Grubba) | | AC_SYS_COMPILER_FLAG_QINFO(pro)
AC_SYS_COMPILER_FLAG_QINFO(rea)
AC_SYS_COMPILER_FLAG_QINFO(ret)
|
e7c34a | 2000-09-17 | Henrik Grubbström (Grubba) | | # trd disabled, since it adds extra errors (in particular 1506-419).
# AC_SYS_COMPILER_FLAG_QINFO(trd)
|
dc8308 | 2000-09-15 | Henrik Grubbström (Grubba) | | AC_SYS_COMPILER_FLAG_QINFO(tru)
AC_SYS_COMPILER_FLAG_QINFO(uni)
AC_SYS_COMPILER_FLAG_QINFO(use)
# AC_SYS_COMPILER_FLAG(-qalias=addr,qalias_addr,OPTIMIZE)
# AC_SYS_COMPILER_FLAG(-qlibansi,qlibansi,OPTIMIZE)
|
b7c2ef | 1999-08-08 | Henrik Grubbström (Grubba) | | # Tell the linker to generate a large toc if needed
|
977353 | 2001-07-12 | Henrik Grubbström (Grubba) | | # Tell the linker to generate a large toc if needed
#
# This option is not needed on AIX 5L/ia64.
if test "x`uname -p`" = "xia64"; then :; else
AC_SYS_COMPILER_FLAG(-bbigtoc,bbigtoc,LDFLAGS)
fi
|
8334e3 | 1999-01-29 | Fredrik Hübinette (Hubbe) | | ])
|
de386f | 1998-08-06 | Henrik Grubbström (Grubba) | |
|
fde5a6 | 1997-09-05 | Henrik Grubbström (Grubba) | | # HP-UX
|
8334e3 | 1999-01-29 | Fredrik Hübinette (Hubbe) | | DO_IF_OS(HP-UX,
[
AC_SYS_COMPILER_FLAG(-D__STDC_EXT__,stdc_ext,CFLAGS)
|
6df22d | 1999-08-27 | Fredrik Hübinette (Hubbe) | | AC_SYS_COMPILER_FLAG([-Wp,-H50000],cpp_buffer_size,CFLAGS)
|
8334e3 | 1999-01-29 | Fredrik Hübinette (Hubbe) | | AC_SYS_COMPILER_FLAG(+ESlit,plus_ESlit,OPTIMIZE)
AC_SYS_COMPILER_FLAG(+Odataprefetch,plus_Odataprefetch,OPTIMIZE)
AC_SYS_COMPILER_FLAG(+Ofailsafe,plus_Ofailsafe,OPTIMIZE)
# Ignore the following warnings if you enable +w1
# 414 Optimization reduced to +O2 for compatibility with Debug.
# 530 Casting from loose to strict alignment
# 558 Empty declaration.
# AC_SYS_COMPILER_FLAG(+w1,plus_w1,WARN)
])
|
fde5a6 | 1997-09-05 | Henrik Grubbström (Grubba) | |
# OSF/1
|
8334e3 | 1999-01-29 | Fredrik Hübinette (Hubbe) | | DO_IF_OS(OSF1,
[
AC_SYS_COMPILER_FLAG(-fast,fast,OPTIMIZE)
# The need for -ieee is not detected properly by the FPE tests below.
# AC_SYS_COMPILER_FLAG(-ieee,ieee,CFLAGS)
AC_SYS_COMPILER_FLAG(-readonly_strings,readonly_strings,OPTIMIZE)
AC_SYS_COMPILER_FLAG(-assume trusted_short_alignment,
assume_trusted_short_alignment,OPTIMIZE)
AC_SYS_COMPILER_FLAG(-assume aligned_objects,
assume_aligned_objects,OPTIMIZE)
AC_SYS_COMPILER_FLAG(-no_misalign,no_misalign,OPTIMIZE)
if test "x$with_cdebug" = "xyes" ; then
# FIXME:
# Maybe should remove the -g flag if this succeeds.
|
7e83af | 2001-03-23 | Henrik Grubbström (Grubba) | | AC_SYS_COMPILER_FLAG(-g3,g3,CFLAGS)
|
8334e3 | 1999-01-29 | Fredrik Hübinette (Hubbe) | | AC_SYS_COMPILER_FLAG(-trapuv,trapuv,WARN)
fi
AC_SYS_COMPILER_FLAG(-host,host,OPTIMIZE)
|
633b03 | 1998-07-16 | Fredrik Hübinette (Hubbe) | |
|
8334e3 | 1999-01-29 | Fredrik Hübinette (Hubbe) | | # Flags that cause errors or change compiler behaviour
# must go in CFLAGS, they can not go in WARN
# /Hubbe
AC_SYS_COMPILER_FLAG(-std1,std1,CFLAGS)
AC_SYS_COMPILER_FLAG(-warnprotos,warnprotos,WARN)
])
|
a89700 | 1997-04-10 | Fredrik Hübinette (Hubbe) | |
|
fde5a6 | 1997-09-05 | Henrik Grubbström (Grubba) | | # IRIX
|
8334e3 | 1999-01-29 | Fredrik Hübinette (Hubbe) | | DO_IF_OS(IRIX,
[
# sopt disabled since it takes too long time on interpret.c (>45min on an O²)
# AC_SYS_COMPILER_FLAG(-sopt,sopt,OPTIMIZE)
|
a8d54f | 2003-01-02 | Henrik Grubbström (Grubba) | | # -n32 moved to smartlink so it will affect cc as well as linker
|
8334e3 | 1999-01-29 | Fredrik Hübinette (Hubbe) | | # this way the user can override it by setting LDFLAGS and/or CFLAGS
# AC_SYS_COMPILER_FLAG(-n32,n32,CFLAGS)
AC_SYS_COMPILER_FLAG(-fullwarn,fullwarn,WARN)
|
c4c6c7 | 2000-03-27 | Henrik Grubbström (Grubba) | | AC_SYS_COMPILER_FLAG(-woff 1209,woff_1209,WARN)
|
8c392e | 2003-01-02 | Henrik Grubbström (Grubba) | | AC_SYS_COMPILER_FLAG(-OPT:Olimit_opt=on,OPT_Olimit_opt_on,OPTIMIZE)
|
8334e3 | 1999-01-29 | Fredrik Hübinette (Hubbe) | | if test x$with_cdebug = xyes ; then
|
7e83af | 2001-03-23 | Henrik Grubbström (Grubba) | | AC_SYS_COMPILER_FLAG(-g3,g3,CFLAGS)
|
8334e3 | 1999-01-29 | Fredrik Hübinette (Hubbe) | | fi
if test x$with_rtldebug = xyes ; then
AC_SYS_COMPILER_FLAG(-trapuw,trapuw,WARN)
fi
])
|
fde5a6 | 1997-09-05 | Henrik Grubbström (Grubba) | |
|
a747c4 | 2000-05-01 | Henrik Grubbström (Grubba) | | # Windows NT
DO_IF_OS(Windows_NT,
[
# FIXME: The test below probably doesn't work.
|
69bae8 | 2000-08-20 | Henrik Grubbström (Grubba) | | if echo "x$CC" | grep "rntecl" >/dev/null 2>&1; then
|
a747c4 | 2000-05-01 | Henrik Grubbström (Grubba) | | # Some options used by ecl (Intel's IA64 compiler).
# We want threads, and link libc statically.
AC_SYS_COMPILER_FLAG(-MT,MT,LDFLAGS)
# Interprocedural optimizations.
|
2e8e8f | 2000-08-21 | Henrik Grubbström (Grubba) | | # For some reason this seems to cause the error:
# dynamic_buffer.obj : error LNK2001: unresolved external symbol "[Entry] ?1memcpy" (.?1memcpy)
# AC_SYS_COMPILER_FLAG(-Qip,Qip,OPTIMIZE)
|
a747c4 | 2000-05-01 | Henrik Grubbström (Grubba) | |
# More warnings.
|
69bae8 | 2000-08-20 | Henrik Grubbström (Grubba) | | AC_SYS_COMPILER_FLAG(-W3,W3,WARN)
|
a747c4 | 2000-05-01 | Henrik Grubbström (Grubba) | |
|
6a2089 | 2000-05-01 | Henrik Grubbström (Grubba) | | if test x$with_rtldebug = xyes ; then
|
a747c4 | 2000-05-01 | Henrik Grubbström (Grubba) | | # Initialize auto variables to 0xcc.
# (Only if optimizations are turned off with -Od).
AC_SYS_COMPILER_FLAG(-GZ,GZ,WARN)
fi
else :; fi
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | |
|
be4a5c | 2002-08-20 | Henrik Grubbström (Grubba) | | if test x$with_dynamic_modules = xno ; then :; else
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN([Enabling dynamic modules for Win32])
|
9b15e0 | 2000-12-22 | Fredrik Hübinette (Hubbe) | | # EXTRA_MODULE_REQUIREMENTS="${EXTRA_MODULE_REQUIREMENTS} import_functions.h"
EXTRA_OBJS="${EXTRA_OBJS} dlopen.o"
|
1807bd | 2000-11-28 | Fredrik Hübinette (Hubbe) | | pike_cv_sys_dynamic_loading=yes
with_dynamic_modules=yes
|
9b15e0 | 2000-12-22 | Fredrik Hübinette (Hubbe) | | AC_DEFINE(USE_MY_WIN32_DLOPEN)
|
1807bd | 2000-11-28 | Fredrik Hübinette (Hubbe) | | fi
|
a747c4 | 2000-05-01 | Henrik Grubbström (Grubba) | | ])
|
a89700 | 1997-04-10 | Fredrik Hübinette (Hubbe) | | dnl
|
a9d05c | 1997-04-10 | Fredrik Hübinette (Hubbe) | | dnl This does not work with Digital UNIX cc/ld (cc thinks it is ok, ld does not)
|
a89700 | 1997-04-10 | Fredrik Hübinette (Hubbe) | | dnl
|
e8ab9c | 1997-11-03 | Henrik Grubbström (Grubba) | | dnl AC_SYS_COMPILER_FLAG(-native,native,OPTIMIZE)
|
a9d05c | 1997-04-10 | Fredrik Hübinette (Hubbe) | | dnl
|
300af1 | 1997-04-15 | Fredrik Hübinette (Hubbe) | |
|
a9d05c | 1997-04-10 | Fredrik Hübinette (Hubbe) | | dnl ### Ok. This is for apcc...
|
300af1 | 1997-04-15 | Fredrik Hübinette (Hubbe) | | case "$CC" in
*apcc)
|
e8ab9c | 1997-11-03 | Henrik Grubbström (Grubba) | | AC_SYS_COMPILER_FLAG(-XO=5,apcc_opt,OPTIMIZE)
AC_SYS_COMPILER_FLAG(-Xcallmod=2,apcc_opt_2,OPTIMIZE)
|
300af1 | 1997-04-15 | Fredrik Hübinette (Hubbe) | | ;;
esac
|
8cf37d | 1997-01-27 | Per Hedbor | |
|
b582fe | 1997-11-23 | Per Hedbor | | # Old cc for solaris.
# AC_SYS_CPU_COMPILER_FLAG(sun4m,-Xpipe=micro,microsparc,OPTIMIZE)
# AC_SYS_CPU_COMPILER_FLAG(sun4d,-Xpipe=super,supersparc,OPTIMIZE)
# AC_SYS_CPU_COMPILER_FLAG(sun4u,-Xpipe=super,ultrasparc,OPTIMIZE)
|
8cf37d | 1997-01-27 | Per Hedbor | |
|
fde5a6 | 1997-09-05 | Henrik Grubbström (Grubba) | | case "${CFLAGS-} $OPTIMIZE" in
|
2a7fc8 | 1999-11-29 | Boyd Lynn Gerber | | *-O*) ;;
*+O*) ;;
*-fast*) ;;
*)
case "$pike_cv_sys_os:$GCC" in
|
bcb538 | 2001-08-23 | Boyd Lynn Gerber | | UnixWare*:no|OpenUNIX*:no)
|
2a7fc8 | 1999-11-29 | Boyd Lynn Gerber | | ;;
*)
;;
esac
;;
|
8cf37d | 1997-01-27 | Per Hedbor | | esac
|
992568 | 1996-10-11 | Fredrik Hübinette (Hubbe) | | fi
|
7e663c | 1999-04-25 | Henrik Grubbström (Grubba) | | fi
|
c74478 | 2001-06-29 | Henrik Grubbström (Grubba) | | else
# CFLAGS has already been set by the user.
# Avoid adding anything that isn't essential.
DO_IF_OS(AIX,
[
# This one is needed to get the compiler to fail on errors,
# which is needed for several configure-tests.
AC_SYS_COMPILER_FLAG(-qhalt=e,qhalt_e,CFLAGS)
])
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | fi
|
bcb538 | 2001-08-23 | Boyd Lynn Gerber | | #############################################################################
|
2565f4 | 1997-02-26 | Fredrik Hübinette (Hubbe) | | if test ! -d modules/. ; then
|
cb728c | 1997-01-12 | Henrik Grubbström (Grubba) | | mkdir modules
fi
|
c0911b | 1997-10-03 | Henrik Grubbström (Grubba) | |
#############################################################################
## Search for some popular places where libraries may be hidden.
#############################################################################
|
08af09 | 2000-04-12 | Marcus Comstedt | | if test x$"pike_cv_sys_os" != xWindows_NT ; then
|
a12f27 | 1998-01-10 | Fredrik Hübinette (Hubbe) | |
|
d93ff5 | 1997-11-02 | Henrik Grubbström (Grubba) | | echo Searching for include-file directories...
|
8a947f | 1998-09-01 | Fredrik Hübinette (Hubbe) | |
|
ce1d9e | 2002-11-18 | Marcus Comstedt | | #Don't add include dirs if they give us warnings...
OLD_ac_c_preproc_warn_flag="$ac_c_preproc_warn_flag"
ac_c_preproc_warn_flag=yes
|
c0911b | 1997-10-03 | Henrik Grubbström (Grubba) | | if test $cppflags_is_set = no -a x${C_INCLUDE_PATH-} = x ; then
|
8a947f | 1998-09-01 | Fredrik Hübinette (Hubbe) | | real_include_dirs=''
|
c96ea2 | 1998-04-04 | Henrik Grubbström (Grubba) | | for d in `echo ${with_include_path} | sed 's/:/ /g'` \
|
fc4d96 | 2001-12-07 | Henrik Grubbström (Grubba) | | `echo "${with_site_prefixes}/include"|sed -e 's/:/\/include /g'` \
|
cf3990 | 2001-01-19 | Henrik Grubbström (Grubba) | | `echo $prefix | sed "s@^NONE@$with_root$ac_default_prefix@g"`/include \
$with_root/usr/local/include $with_root/sw/local/include \
$with_root/usr/gnu/include $with_root/opt/gnu/include \
$with_root/sw/gnu/include $with_root/sw/include \
$with_root/usr/freeware/include $with_root/usr/pkg/include \
|
1ac5c0 | 2002-09-02 | Henrik Grubbström (Grubba) | | $with_root/opt/sfw/include \
`echo $with_root/opt/gnome*/include | sort -r` \
|
27462c | 2002-04-11 | Martin Stjernholm | | `echo $with_root/usr/X11*/include | sort -r`
|
900def | 1997-01-12 | Henrik Grubbström (Grubba) | | do
|
04a925 | 1998-03-21 | Fredrik Hübinette (Hubbe) | | AC_MSG_CHECKING($d)
|
d3e25e | 1998-07-15 | Fredrik Hübinette (Hubbe) | | case x$d in
x/usr/include | x/usr//include)
;;
*)
if test -d "$d/." ; then
|
8a947f | 1998-09-01 | Fredrik Hübinette (Hubbe) | | REALDIR="`cd $d/. ; /bin/pwd`"
if test "x$REALDIR" = x ; then
REALDIR=UNKNOWN
else
:
fi
case " $CPPFLAGS $real_include_dirs " in
*\ -I$d\ * | *\ -I$REALDIR\ *)
AC_MSG_RESULT(already added)
;;
*)
|
f6169d | 2002-06-05 | Henrik Grubbström (Grubba) | | OLD_CPPFLAGS="${CPPFLAGS}"
|
8a947f | 1998-09-01 | Fredrik Hübinette (Hubbe) | | CPPFLAGS="${CPPFLAGS} -I$d"
|
6404f3 | 2002-11-22 | Xavier Beaudouin | | AC_TRY_CPP([#include <stdio.h>], [
|
f6169d | 2002-06-05 | Henrik Grubbström (Grubba) | | AC_MSG_RESULT(added)
if test "x$REALDIR" != xUNKNOWN; then
real_include_dirs="${real_include_dirs} -I$REALDIR"
else
:
fi
], [
AC_MSG_RESULT(fails)
CPPFLAGS="${OLD_CPPFLAGS}"
])
|
8a947f | 1998-09-01 | Fredrik Hübinette (Hubbe) | | ;;
esac
|
d3e25e | 1998-07-15 | Fredrik Hübinette (Hubbe) | | else
AC_MSG_RESULT(no)
fi
;;
esac
|
900def | 1997-01-12 | Henrik Grubbström (Grubba) | | done
|
cb728c | 1997-01-12 | Henrik Grubbström (Grubba) | | else
:
|
900def | 1997-01-12 | Henrik Grubbström (Grubba) | | fi
|
d93ff5 | 1997-11-02 | Henrik Grubbström (Grubba) | |
|
ce1d9e | 2002-11-18 | Marcus Comstedt | | #Restore preprocessor warning sensitivity
ac_c_preproc_warn_flag="$OLD_ac_c_preproc_warn_flag"
|
d93ff5 | 1997-11-02 | Henrik Grubbström (Grubba) | | echo Searching for library directories...
|
c0911b | 1997-10-03 | Henrik Grubbström (Grubba) | | if test $ldflags_is_set = no ; then
|
c4b41d | 2002-04-06 | Henrik Grubbström (Grubba) | | for dd in `echo ${with_lib_path} | sed 's/:/ /g'` \
|
fc4d96 | 2001-12-07 | Henrik Grubbström (Grubba) | | `echo "${with_site_prefixes}/lib"|sed -e 's/:/\/lib /g'` \
|
e7cd0a | 2002-04-06 | Henrik Grubbström (Grubba) | | `echo $exec_prefix | sed "s@^NONE@$prefix/lib@g" | sed "s@^NONE@$with_root$ac_default_prefix@g"` \
|
cf3990 | 2001-01-19 | Henrik Grubbström (Grubba) | | $with_root/usr/local/lib $with_root/sw/local/lib $with_root/sw/lib \
$with_root/usr/gnu/lib $with_root/opt/gnu/lib $with_root/sw/gnu/lib \
$with_root/usr/freeware/lib $with_root/usr/pkg/lib \
|
c50e2b | 2002-08-27 | Xavier Beaudouin | | $with_root/opt/sfw/lib $with_root/opt/gnome-1.4/lib \
|
cf3990 | 2001-01-19 | Henrik Grubbström (Grubba) | | `echo $with_root/usr/X11*/lib | sort -r`
|
c0911b | 1997-10-03 | Henrik Grubbström (Grubba) | | do
|
30f279 | 2002-11-22 | Henrik Grubbström (Grubba) | | if test "$dd" = "/lib"; then continue; fi
if test "$dd" = "/usr/lib"; then continue; fi
|
2ecc98 | 2002-04-06 | Henrik Grubbström (Grubba) | | for suff in '' 32 64 '/64'; do
|
c4b41d | 2002-04-06 | Henrik Grubbström (Grubba) | | d="$dd$suff"
AC_MSG_CHECKING($d)
if test -d "$d/." ; then
case " $LDFLAGS " in
*\ -L$d\ -R$d\ * | *\ -R$d\ -L$d\ *)
AC_MSG_RESULT(already added)
;;
*)
OLD_LDFLAGS="${LDFLAGS}"
LDFLAGS="${LDFLAGS} -R$d -L$d -lm"
AC_TRY_RUN([
#include <stdio.h>
#include <math.h>
int main(int argc, char **argv)
{
double (*foo)(double) = ceil;
exit(0);
}
],[ LDFLAGS="$OLD_LDFLAGS -R$d -L$d"
AC_MSG_RESULT(yes)
],[ LDFLAGS="$OLD_LDFLAGS"
AC_MSG_RESULT(no)
],[AC_TRY_LINK([
#include <stdio.h>
#include <math.h>
],[
double (*foo)(double) = ceil;
exit(0);
],[ LDFLAGS="$OLD_LDFLAGS -R$d -L$d"
AC_MSG_RESULT(probably)
],[ LDFLAGS="$OLD_LDFLAGS"
AC_MSG_RESULT(no)])])
;;
esac
else
AC_MSG_RESULT(no)
fi
done
|
c0911b | 1997-10-03 | Henrik Grubbström (Grubba) | | done
else
:
fi
|
c67b69 | 1996-11-16 | Fredrik Hübinette (Hubbe) | |
|
6fa228 | 1997-11-04 | Henrik Grubbström (Grubba) | | echo Searching for binary directories...
|
cf3990 | 2001-01-19 | Henrik Grubbström (Grubba) | | for d in `echo $exec_prefix | sed "s@^NONE@$prefix@g" | sed "s@^NONE@$with_root$ac_default_prefix@g"` \
|
fc4d96 | 2001-12-07 | Henrik Grubbström (Grubba) | | `echo "${with_site_prefixes}"|sed -e 's/:/ /g'` \
|
cf3990 | 2001-01-19 | Henrik Grubbström (Grubba) | | "$with_root" $with_root/usr $with_root/usr/ccs $with_root/usr/vac \
$with_root/usr/local $with_root/sw/local $with_root/usr/gnu \
$with_root/opt/gnu $with_root/sw/gnu $with_root/sw \
|
c50e2b | 2002-08-27 | Xavier Beaudouin | | $with_root/opt/sfw $with_root/opt/gnome-1.4 \
|
cf3990 | 2001-01-19 | Henrik Grubbström (Grubba) | | $with_root/usr/freeware $with_root/usr/pkg
|
6fa228 | 1997-11-04 | Henrik Grubbström (Grubba) | | do
AC_MSG_CHECKING($d/bin)
if test -d "$d/bin/." ; then
AC_MSG_RESULT(added)
EXTRA_PATH="${EXTRA_PATH}:$d/bin"
else
AC_MSG_RESULT(no)
fi
done
export EXTRA_PATH
|
a12f27 | 1998-01-10 | Fredrik Hübinette (Hubbe) | | else
|
d4f9e9 | 2000-05-19 | Martin Stjernholm | | # We are running NT
|
ed616b | 2003-02-08 | Martin Stjernholm | | :
|
a12f27 | 1998-01-10 | Fredrik Hübinette (Hubbe) | | fi
|
ed616b | 2003-02-08 | Martin Stjernholm | | # During the configure tests we need some extra includes that
# shouldn't be there in the final version.
CONF_CPPFLAGS_EXTRA="-I$srcdir -I`pwd`"
CPPFLAGS="${CPPFLAGS} ${CONF_CPPFLAGS_EXTRA}"
|
dcad55 | 1996-08-03 | Fredrik Hübinette (Hubbe) | | #############################################################################
|
bf622c | 1997-09-19 | Henrik Grubbström (Grubba) | | ## At this point we have at last initialized the compiler!
#############################################################################
|
c411dc | 1997-04-21 | Fredrik Hübinette (Hubbe) | | if test ! -f confdefs.h ; then
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN([Warning, lost confdefs.h, testing will be flawed!!
|
c411dc | 1997-04-21 | Fredrik Hübinette (Hubbe) | | You might need to use bash instead of /bin/sh to get correct results.
To do this, please type the following at an sh prompt:
\$ rm ./config.cache
\$ CONFIG_SHELL=/path/to/bash
\$ export CONFIG_SHELL
\$ $CONFIG_SHELL ./configure
])
fi
#############################################################################
|
99ed77 | 1997-06-03 | Fredrik Hübinette (Hubbe) | | AC_DEFINE(POSIX_SOURCE)
|
c6f4a8 | 2002-01-27 | Martin Stjernholm | | AC_MSG_CHECKING(ansi prototype capability)
AC_CACHE_VAL(pike_cv_sys_ansi_prototypes,
[
AC_TRY_COMPILE([int foo(int bar);],[],
[pike_cv_sys_ansi_prototypes=yes],
[pike_cv_sys_ansi_prototypes=no])
])
|
1acce8 | 2001-01-27 | Martin Stjernholm | |
|
c6f4a8 | 2002-01-27 | Martin Stjernholm | | if test "$pike_cv_sys_ansi_prototypes" = "yes"; then
AC_MSG_RESULT(yes)
else
|
518cc0 | 2002-09-10 | Marcus Comstedt | | AC_MSG_RESULT([no, giving up...])
|
c6f4a8 | 2002-01-27 | Martin Stjernholm | | exit 1
|
1acce8 | 2001-01-27 | Martin Stjernholm | | fi
|
992568 | 1996-10-11 | Fredrik Hübinette (Hubbe) | |
|
dcad55 | 1996-08-03 | Fredrik Hübinette (Hubbe) | | #############################################################################
|
7ac9c1 | 1998-12-03 | Henrik Grubbström (Grubba) | | # The AC_PROG_INSTALL test is broken if $INSTALL is specified by hand.
# The FreeBSD ports system does this...
# Workaround:
if test "x$INSTALL" = "x"; then :; else
# $INSTALL overrides ac_cv_path_install anyway...
ac_cv_path_install="$INSTALL"
fi
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | AC_PROG_INSTALL
AC_PROG_CPP
AC_PROG_RANLIB
|
02c964 | 2000-12-18 | Fredrik Hübinette (Hubbe) | | if test "x${AR-}" = x ; then
AC_PATH_PROG(AR, ar, ar, $PATH:$EXTRA_PATH)
export AR
fi
|
6fa228 | 1997-11-04 | Henrik Grubbström (Grubba) | | AC_SUBST(AR)
|
dcad55 | 1996-08-03 | Fredrik Hübinette (Hubbe) | | #############################################################################
|
9fe0a0 | 1997-08-16 | Henrik Grubbström (Grubba) | | # installbsd seems to be broken on some versions of AIX
#
# /grubba 1997-08-16
case "$ac_cv_path_install" in
*installbsd*)
AC_MSG_CHECKING(if $ac_cv_path_install works)
AC_CACHE_VAL(pike_cv_install_works,
[
if $ac_cv_path_install "$srcdir/configure.in" ./conftest >/dev/null 2>&1
then
if cmp "$srcdir/configure.in" ./conftest >/dev/null 2>&1; then
pike_cv_install_works=yes;
else
pike_cv_install_works=no;
fi
else
pike_cv_install_works=no;
fi
if test -f ./conftest; then
rm -f ./conftest
fi
])
AC_MSG_RESULT($pike_cv_install_works)
if test "$pike_cv_install_works" = "no"; then
echo "Warning: Falling back to $ac_install_sh"
INSTALL="$ac_install_sh"
fi
;;
esac
#############################################################################
|
bfd5a5 | 2001-02-17 | Henrik Grubbström (Grubba) | |
|
26e7e7 | 1996-04-23 | Fredrik Hübinette (Hubbe) | | AC_MSG_CHECKING(for yacc clone that handles %pure_parser)
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | AC_CACHE_VAL(pike_cv_prog_working_yacc,
|
26e7e7 | 1996-04-23 | Fredrik Hübinette (Hubbe) | | [
|
4e2e07 | 1998-11-16 | Fredrik Hübinette (Hubbe) | | for YACC in pyacc byacc "bison -y" yacc "None"; do
|
26e7e7 | 1996-04-23 | Fredrik Hübinette (Hubbe) | | set dummy $YACC; ac_word=$2
has_it=no
IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
for ac_dir in $PATH; do
test -z "$ac_dir" && ac_dir=.
if test -f $ac_dir/$ac_word; then
has_it="yes"
break
|
8f4288 | 1996-03-01 | Fredrik Hübinette (Hubbe) | | fi
|
26e7e7 | 1996-04-23 | Fredrik Hübinette (Hubbe) | | done
IFS="$ac_save_ifs"
if test "$has_it" = "yes"; then
cat >conftest.y<<\EOF
%pure_parser
%{
void parse();
void yyerror(char *);
%}
%%
all: foo bar
foo: 'f' 'o' 'o' { parse(); } ;
bar: 'b' 'a' 'r' ;
%%
int context;
|
8f4288 | 1996-03-01 | Fredrik Hübinette (Hubbe) | |
|
26e7e7 | 1996-04-23 | Fredrik Hübinette (Hubbe) | | int yylex(YYSTYPE *yylval)
{
switch(context++)
{
case 0: return 'f';
case 1: return 'o';
case 2: return 'o';
case 3: return 'b';
case 4: return 'a';
case 5: return 'r';
default: return 0;
}
}
int depth=0;
void parse()
{
int tmp;
if(depth++>5) return;
tmp=context;
context=0;
yyparse();
context=tmp;
}
int errors=0;
void yyerror(char *fel) { errors++; }
int main()
{
parse();
exit(errors);
}
EOF
if $YACC -d conftest.y 1>&5 2>&5; then
|
1acce8 | 2001-01-27 | Martin Stjernholm | | if test "x$enable_binary" = "xno"; then
break
else
AC_TRY_RUN([
|
26e7e7 | 1996-04-23 | Fredrik Hübinette (Hubbe) | | #include "y.tab.c"
|
75920f | 1997-12-28 | Fredrik Hübinette (Hubbe) | | ],pure_parser_works=yes,pure_parser_works=no,pure_parser_works=no)
|
1acce8 | 2001-01-27 | Martin Stjernholm | | if test "$pure_parser_works" = "yes"; then
break
fi
|
26e7e7 | 1996-04-23 | Fredrik Hübinette (Hubbe) | | fi
fi
|
8f4288 | 1996-03-01 | Fredrik Hübinette (Hubbe) | | fi
|
26e7e7 | 1996-04-23 | Fredrik Hübinette (Hubbe) | | done
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | pike_cv_prog_working_yacc="$YACC"
|
26e7e7 | 1996-04-23 | Fredrik Hübinette (Hubbe) | | ])
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | YACC="$pike_cv_prog_working_yacc"
|
4943ca | 1997-04-21 | Fredrik Hübinette (Hubbe) | |
if test "x$YACC" = "xNone" ; then
|
1acce8 | 2001-01-27 | Martin Stjernholm | | AC_MSG_RESULT([Get bison if you want to do "make export"])
|
4943ca | 1997-04-21 | Fredrik Hübinette (Hubbe) | | YACC="bison -y"
else
AC_MSG_RESULT($YACC)
fi
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
417454 | 2001-01-26 | Martin Stjernholm | | #############################################################################
|
d52353 | 2002-09-24 | Henrik Grubbström (Grubba) | | AC_MSG_CHECKING(for the type of __yy_memcpy)
|
f5d704 | 2001-01-20 | Henrik Grubbström (Grubba) | | AC_CACHE_VAL(pike_cv___yy_memcpy_count_type, [
|
d52353 | 2002-09-24 | Henrik Grubbström (Grubba) | | pike_cv___yy_memcpy_from_const=
|
f5d704 | 2001-01-20 | Henrik Grubbström (Grubba) | | pike_cv___yy_memcpy_count_type=unknown
|
486523 | 2001-01-20 | Henrik Grubbström (Grubba) | | for count_type in "unsigned int" "size_t" "unsigned long" "int"; do
|
d52353 | 2002-09-24 | Henrik Grubbström (Grubba) | | for from_const in "const" ""; do
cat >conftest.y <<EOF
|
f5d704 | 2001-01-20 | Henrik Grubbström (Grubba) | | %pure_parser
%{
#include <stdio.h>
#ifndef __GNUC__
#ifndef __cplusplus
|
d52353 | 2002-09-24 | Henrik Grubbström (Grubba) | | static void __yy_memcpy(char *to, $from_const char *from, $count_type count);
|
f5d704 | 2001-01-20 | Henrik Grubbström (Grubba) | | #endif /* !__cplusplus */
#endif /* !__GNUC__ */
|
486523 | 2001-01-20 | Henrik Grubbström (Grubba) | |
void yyerror(char *);
int yylex(void *);
|
f5d704 | 2001-01-20 | Henrik Grubbström (Grubba) | | %}
%%
all: foo bar
|
a8adfd | 2001-01-20 | Henrik Grubbström (Grubba) | | foo: 'f' 'o' 'o' { fprintf(stderr, "foo\\n"); } ;
|
f5d704 | 2001-01-20 | Henrik Grubbström (Grubba) | | bar: 'b' 'a' 'r' ;
%%
|
486523 | 2001-01-20 | Henrik Grubbström (Grubba) | | int yylex(void *yylval) { return 'f'; }
|
a8adfd | 2001-01-20 | Henrik Grubbström (Grubba) | | void yyerror(char *err) { fprintf(stderr, "ERR: %s\\n", err); }
|
f5d704 | 2001-01-20 | Henrik Grubbström (Grubba) | | EOF
|
d52353 | 2002-09-24 | Henrik Grubbström (Grubba) | | echo conftest.y: 1>&5
cat conftest.y 1>&5
if $YACC -d conftest.y 1>&5 2>&5; then
AC_TRY_LINK([
|
f5d704 | 2001-01-20 | Henrik Grubbström (Grubba) | | #include "y.tab.c"
|
d52353 | 2002-09-24 | Henrik Grubbström (Grubba) | | ], [
|
f5d704 | 2001-01-20 | Henrik Grubbström (Grubba) | | yyparse();
exit(0);
|
d52353 | 2002-09-24 | Henrik Grubbström (Grubba) | | ], [
pike_cv___yy_memcpy_count_type=$count_type
pike_cv___yy_memcpy_from_const="$from_const"
break
])
fi
done
if test "x$pike_cv___yy_memcpy_count_type" = "xunknown"; then :; else
break
|
f5d704 | 2001-01-20 | Henrik Grubbström (Grubba) | | fi
done
])
if test "x$pike_cv___yy_memcpy_count_type" = "xunknown"; then
|
d52353 | 2002-09-24 | Henrik Grubbström (Grubba) | | AC_MSG_RESULT($pike_cv___yy_memcpy_count_type)
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN([Defaulting to unsigned int.])
|
6ded52 | 2001-07-13 | Henrik Grubbström (Grubba) | | YY_COUNT_TYPE="unsigned int"
|
d52353 | 2002-09-24 | Henrik Grubbström (Grubba) | | YY_FROM_CONST=""
|
f5d704 | 2001-01-20 | Henrik Grubbström (Grubba) | | else
|
d52353 | 2002-09-24 | Henrik Grubbström (Grubba) | | AC_MSG_RESULT(void __yy_memcpy(char *, $pike_cv___yy_memcpy_from_const char *, $pike_cv___yy_memcpy_count_type))
|
6ded52 | 2001-07-13 | Henrik Grubbström (Grubba) | | YY_COUNT_TYPE="$pike_cv___yy_memcpy_count_type"
|
d52353 | 2002-09-24 | Henrik Grubbström (Grubba) | | YY_FROM_CONST="$pike_cv___yy_memcpy_from_const"
|
f5d704 | 2001-01-20 | Henrik Grubbström (Grubba) | | fi
|
6ded52 | 2001-07-13 | Henrik Grubbström (Grubba) | | AC_SUBST(YY_COUNT_TYPE)
|
d52353 | 2002-09-24 | Henrik Grubbström (Grubba) | | AC_SUBST(YY_FROM_CONST)
|
f5d704 | 2001-01-20 | Henrik Grubbström (Grubba) | |
|
dcad55 | 1996-08-03 | Fredrik Hübinette (Hubbe) | | #############################################################################
|
bf622c | 1997-09-19 | Henrik Grubbström (Grubba) | | ## At this point we have found all binaries we are going to use.
#############################################################################
AC_C_CONST
|
3bb83a | 1997-09-22 | Henrik Grubbström (Grubba) | | # The above doesn't find IBM C's buggy const.
if test "$ac_cv_c_const" = "yes"; then
AC_MSG_CHECKING(if const really does work)
|
897653 | 1997-12-22 | Fredrik Hübinette (Hubbe) | | AC_CACHE_VAL(pike_cv_c_really_const,[
AC_TRY_COMPILE([
|
3bb83a | 1997-09-22 | Henrik Grubbström (Grubba) | | const int foo(int bar) { return bar; }
|
897653 | 1997-12-22 | Fredrik Hübinette (Hubbe) | | ], [
return bar(0);
], [
pike_cv_c_really_const=yes
], [
pike_cv_c_really_const=no
])
|
3bb83a | 1997-09-22 | Henrik Grubbström (Grubba) | | ])
|
897653 | 1997-12-22 | Fredrik Hübinette (Hubbe) | |
AC_MSG_RESULT($pike_cv_c_really_const)
if test "x$pike_cv_c_really_const" = xno ; then
AC_DEFINE(const, [])
else
:
fi
|
3bb83a | 1997-09-22 | Henrik Grubbström (Grubba) | | fi
|
82c04f | 1999-04-25 | Henrik Grubbström (Grubba) | | AC_MSG_CHECKING(if we can cast void * to a function pointer)
AC_CACHE_VAL(pike_cv_function_cast, [
AC_TRY_COMPILE([
void *foo = 0;
],[
void (*bar)(void) = (void (*)(void)) foo;
],[ pike_cv_function_cast="yes" ], [ pike_cv_function_cast="no" ])
])
if test "$pike_cv_function_cast" = "yes"; then
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
AC_DEFINE(NO_CAST_TO_FUN)
fi
|
bf622c | 1997-09-19 | Henrik Grubbström (Grubba) | | #############################################################################
|
693018 | 1996-02-25 | Fredrik Hübinette (Hubbe) | | AC_HEADER_TIME
AC_HEADER_STDC
|
5ebdb5 | 1996-09-22 | Fredrik Hübinette (Hubbe) | | AC_CHECK_HEADERS(sys/rusage.h time.h sys/time.h sys/types.h unistd.h stdlib.h \
|
d4debf | 1997-05-19 | Henrik Grubbström (Grubba) | | memory.h values.h string.h strings.h fcntl.h sys/filio.h sys/sockio.h crypt.h \
|
7cccc5 | 2000-12-27 | Mirar (Pontus Hagland) | | locale.h sys/select.h net/socket.h sys/mman.h setjmp.h \
|
ecf155 | 2001-09-10 | Henrik Grubbström (Grubba) | | limits.h pthread.h crt/signal.h sys/id.h mach-o/dyld.h \
|
423839 | 1998-07-09 | Francesco Chemolli | | thread.h dlfcn.h dld.h dl.h sys/times.h sched.h sys/procfs.h sys/param.h \
winsock.h sys/ioct.h sys/socket.h malloc.h netinet/in.h sys/wait.h winbase.h \
grp.h pwd.h passwd.h group.h winsock2.h signal.h sys/file.h poll.h sys/poll.h \
|
3adb2f | 2000-08-28 | Fredrik Hübinette (Hubbe) | | socket.h ieeefp.h fp_class.h floatingpoint.h sys/priocntl.h sys/sched.h \
|
37e9f1 | 2002-11-19 | Henrik Grubbström (Grubba) | | windows.h float.h errno.h stddef.h mmx.h sys/termio.h sys/termios.h valgrind.h)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
7cccc5 | 2000-12-27 | Mirar (Pontus Hagland) | | # some Linux systems have a broken resource.h that compiles anyway /Mirar
|
c5cbce | 2000-12-27 | Mirar (Pontus Hagland) | | AC_MSG_CHECKING([for sys/resource.h])
|
4492cc | 2000-12-28 | Henrik Grubbström (Grubba) | | AC_CACHE_VAL(pike_cv_sys_resource_h, [
AC_TRY_COMPILE([
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif /* HAVE_SYS_TYPES_H */
|
b5fac7 | 2000-12-28 | Henrik Grubbström (Grubba) | | #ifdef HAVE_TIME_H
#include <time.h>
#endif /* HAVE_TIME_H */
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif /* HAVE_SYS_TIME_H */
|
4492cc | 2000-12-28 | Henrik Grubbström (Grubba) | |
#include <sys/resource.h>
],[],
[pike_cv_sys_resource_h=yes], [pike_cv_sys_resource_h=no])
])
|
c5cbce | 2000-12-27 | Mirar (Pontus Hagland) | | if test "x$pike_cv_sys_resource_h" = "xyes"; then
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_SYS_RESOURCE_H)
else
AC_MSG_RESULT(no)
fi
|
7cccc5 | 2000-12-27 | Mirar (Pontus Hagland) | |
|
75920f | 1997-12-28 | Fredrik Hübinette (Hubbe) | | AC_CHECK_SIZEOF(char *,4)
|
d0d62b | 2000-08-18 | Henrik Grubbström (Grubba) | | AC_CHECK_SIZEOF(int, 4)
AC_CHECK_SIZEOF(short, 2)
AC_CHECK_SIZEOF(float, 4)
AC_CHECK_SIZEOF(double, 8)
|
3c6eaa | 2002-04-12 | Martin Stjernholm | | AC_CHECK_SIZEOF(long double, 0)
|
d0d62b | 2000-08-18 | Henrik Grubbström (Grubba) | | AC_CHECK_SIZEOF(long, 4)
|
3c6eaa | 2002-04-12 | Martin Stjernholm | | AC_CHECK_SIZEOF(long long, 0)
AC_CHECK_SIZEOF(__int64, 0)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
6f7df8 | 2000-06-29 | Henrik Grubbström (Grubba) | | AC_MY_CHECK_TYPE(size_t,unsigned long)
AC_MY_CHECK_TYPE(ptrdiff_t,long)
|
1e577b | 1999-07-15 | Fredrik Hübinette (Hubbe) | | AC_MY_CHECK_TYPE(off_t,long)
AC_MY_CHECK_TYPE(pid_t,int)
AC_MY_CHECK_TYPE(uid_t,int)
AC_MY_CHECK_TYPE(gid_t,int)
AC_MY_CHECK_TYPE(time_t,INT32)
AC_MY_CHECK_TYPE(pri_t, short)
|
3c6eaa | 2002-04-12 | Martin Stjernholm | | if test "x$with_long_double_precision" = x -a \
"x$with_double_precision" = x ; then
# Choose the longest available float that fits in a pointer.
if test $ac_cv_sizeof_long_double != 0 -a \
$ac_cv_sizeof_long_double -le $ac_cv_sizeof_char_p ; then
with_long_double_precision=yes
elif test $ac_cv_sizeof_double -le $ac_cv_sizeof_char_p ; then
with_double_precision=yes
fi
fi
if test $ac_cv_sizeof_long_double != 0 -a \
"x$with_long_double_precision" = xyes ; then
AC_DEFINE(WITH_LONG_DOUBLE_PRECISION_SVALUE)
AC_DEFINE(FLOAT_TYPE, long double)
AC_DEFINE(SIZEOF_FLOAT_TYPE, SIZEOF_LONG_DOUBLE)
elif test "x$with_double_precision" = xyes ; then
AC_DEFINE(WITH_DOUBLE_PRECISION_SVALUE)
AC_DEFINE(FLOAT_TYPE, double)
AC_DEFINE(SIZEOF_FLOAT_TYPE, SIZEOF_DOUBLE)
else
AC_DEFINE(FLOAT_TYPE, float)
AC_DEFINE(SIZEOF_FLOAT_TYPE, SIZEOF_FLOAT)
fi
if test "x$with_long_long_int" = x -a \
"x$with_long_int" = x -a \
"x$with_int_int" = x -a \
"x$with_short_int" = x ; then
# Choose the longest available integer that fits in a pointer.
# Turn this on when it works and the typing is corrected everywhere.
# if test $ac_cv_sizeof_long_long != 0 -a \
# $ac_cv_sizeof_long_long -le $ac_cv_sizeof_char_p ; then
# # This isn't a good idea on architectures where
# # sizeof(long int) < sizeof(LONGEST).
# # This is due to the gmp mpz api's using long int instead of
# # mp_limb_{signed_}t.
# #with_long_long_int=yes
# :
# fi
# if test $ac_cv_sizeof_long -le $ac_cv_sizeof_char_p ; then
# with_long_int=yes
# else
# with_int_int=yes
# fi
:
fi
if test $ac_cv_sizeof_long_long != 0 -a \
"x$with_long_long_int" = xyes ; then
AC_DEFINE(WITH_LONG_LONG_INT)
AC_DEFINE(INT_TYPE, long long)
AC_DEFINE(SIZEOF_INT_TYPE, SIZEOF_LONG_LONG)
elif test "x$with_long_int" = xyes ; then
AC_DEFINE(WITH_LONG_INT)
AC_DEFINE(INT_TYPE, long)
AC_DEFINE(SIZEOF_INT_TYPE, SIZEOF_LONG)
elif test "x$with_short_int" = xyes ; then
AC_DEFINE(WITH_SHORT_INT)
AC_DEFINE(INT_TYPE, short)
AC_DEFINE(SIZEOF_INT_TYPE, SIZEOF_SHORT)
else
AC_DEFINE(WITH_INT_INT)
AC_DEFINE(INT_TYPE, int)
AC_DEFINE(SIZEOF_INT_TYPE, SIZEOF_INT)
fi
|
693018 | 1996-02-25 | Fredrik Hübinette (Hubbe) | | AC_TYPE_SIGNAL
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
dcad55 | 1996-08-03 | Fredrik Hübinette (Hubbe) | | dnl AC_CHECK_LIB(PW, alloca)
|
b04d5f | 1996-07-08 | Fredrik Hübinette (Hubbe) | |
|
6accea | 2003-01-04 | Xavier Beaudouin | | dnl Checking if poll() call is in libpoll (in general in Darwin or BSD/OS)
AC_CHECK_LIB(poll, poll)
|
5c8e89 | 1995-10-29 | Fredrik Hübinette (Hubbe) | | AC_CHECK_LIB(m, floor)
|
dc5da7 | 1997-11-03 | Henrik Grubbström (Grubba) | |
AC_CHECK_LIB(socket, socket)
|
a12f27 | 1998-01-10 | Fredrik Hübinette (Hubbe) | |
|
08af09 | 2000-04-12 | Marcus Comstedt | | if test x"$pike_cv_sys_os" = xWindows_NT ; then
|
d87ab4 | 2000-08-17 | Henrik Grubbström (Grubba) | | AC_MSG_CHECKING(if we should use the 64 bit API)
AC_CACHE_VAL(pike_cv_sys_win64, [
AC_EGREP_CPP(yes, [
#if defined(_WIN64) || defined(__WIN64__)
yes
#else
no
#endif
], [ pike_cv_sys_win64=yes ], [ pike_cv_sys_win64=no ])
])
if test "x$pike_cv_sys_win64" = "xyes"; then
AC_MSG_RESULT(yes)
|
e71885 | 2000-08-18 | Henrik Grubbström (Grubba) | | # Apparently the libraries are stilled named *32...
# LIBS="-lkernel64 -lws2_64 -ladvapi64 $LIBS"
|
bcb538 | 2001-08-23 | Boyd Lynn Gerber | | LIBS="-lshell32 -lkernel32 -lws2_32 -ladvapi32 $LIBS"
|
d87ab4 | 2000-08-17 | Henrik Grubbström (Grubba) | | else
AC_MSG_RESULT(no)
|
bcb538 | 2001-08-23 | Boyd Lynn Gerber | | LIBS="-lshell32 -lkernel32 -lws2_32 -ladvapi32 $LIBS"
|
d87ab4 | 2000-08-17 | Henrik Grubbström (Grubba) | | fi
|
a12f27 | 1998-01-10 | Fredrik Hübinette (Hubbe) | | fi
|
dc5da7 | 1997-11-03 | Henrik Grubbström (Grubba) | | AC_CHECK_LIB(nsl, gethostbyname)
|
dac637 | 1999-10-17 | Mirar (Pontus Hagland) | | AC_CHECK_LIB(rt, nanosleep)
|
dc5da7 | 1997-11-03 | Henrik Grubbström (Grubba) | |
|
ca74dd | 1996-10-08 | Fredrik Hübinette (Hubbe) | | AC_CHECK_LIB(dl, dlopen)
|
423839 | 1998-07-09 | Francesco Chemolli | | AC_CHECK_LIB(dld, shl_load)
|
59bc1b | 1997-01-22 | Bernhard Fastenrath | | AC_CHECK_LIB(dld, dld_link)
|
07513e | 1996-10-04 | Fredrik Hübinette (Hubbe) | |
|
d98e0d | 1997-01-15 | Fredrik Hübinette (Hubbe) | |
if test "${pike_cv_sys_os}" = "Linux"; then
|
7b3941 | 1997-02-06 | Fredrik Hübinette (Hubbe) | | if test "${ac_cv_lib_m_floor}" = "no"; then
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN(I will compensate for this by adding -lc -lm)
|
d98e0d | 1997-01-15 | Fredrik Hübinette (Hubbe) | | LIBS="${LIBS} -lc -lm"
fi
|
f8663d | 1997-09-16 | Henrik Grubbström (Grubba) | |
if test "$ac_cv_header_sched_h" = "yes"; then
AC_MSG_CHECKING(if sched.h has a typo)
AC_CACHE_VAL(pike_cv_broken_sched_h, [
AC_TRY_COMPILE([
#include <sched.h>
],[ ],[ pike_cv_broken_shed_h=no ], [
OLDCPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS -D_P=__P"
AC_TRY_COMPILE([
#include <sched.h>
],[ ],[ pike_cv_broken_sched_h=yes ],[
pike_cv_broken_sched_h="very broken"
])
CPPFLAGS="$OLDCPPFLAGS"
])
])
AC_MSG_RESULT($pike_cv_broken_sched_h)
if test "$pike_cv_broken_sched_h" = "yes"; then
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN(Applying workaround)
|
f8663d | 1997-09-16 | Henrik Grubbström (Grubba) | | CPPFLAGS="$CPPFLAGS -D_P=__P"
fi
fi
|
d10ed5 | 1995-11-15 | Fredrik Hübinette (Hubbe) | | fi
|
5c8e89 | 1995-10-29 | Fredrik Hübinette (Hubbe) | |
|
07513e | 1996-10-04 | Fredrik Hübinette (Hubbe) | | ########################################################################
|
e45ef2 | 2001-02-14 | Mirar (Pontus Hagland) | | using_threads="no (forced)"
|
eec137 | 1996-11-02 | Fredrik Hübinette (Hubbe) | | if test x$with_threads = xyes ; then
|
e45ef2 | 2001-02-14 | Mirar (Pontus Hagland) | | using_threads="no (no known threads found)"
|
50b039 | 1997-01-27 | Henrik Grubbström (Grubba) | | OLDLIBS="$LIBS"
|
284e06 | 1998-11-09 | Fredrik Hübinette (Hubbe) | | OLDCFLAGS="$CFLAGS"
|
07513e | 1996-10-04 | Fredrik Hübinette (Hubbe) | |
|
b1f4eb | 1998-01-13 | Fredrik Hübinette (Hubbe) | | if test "x$pike_cv_sys_os" = "xWindows_NT" ; then
# NT has threads...
AC_DEFINE(_REENTRANT)
AC_DEFINE(_THREAD_SAFE)
AC_DEFINE(_UNIX_THREADS)
AC_DEFINE(NT_THREADS)
|
67bbf0 | 1999-08-10 | Henrik Grubbström (Grubba) | | AC_DEFINE(PIKE_THREADS)
|
e45ef2 | 2001-02-14 | Mirar (Pontus Hagland) | | using_threads="yes (nt)"
|
b1f4eb | 1998-01-13 | Fredrik Hübinette (Hubbe) | |
|
40fb6d | 2003-01-05 | Henrik Grubbström (Grubba) | | pike_cv_thread_t_type=integer
|
b1f4eb | 1998-01-13 | Fredrik Hübinette (Hubbe) | | else
|
9ab446 | 1998-11-06 | Honza Petrous | | # Test for POSIX threads
|
50b039 | 1997-01-27 | Henrik Grubbström (Grubba) | | case "x$pike_cv_sys_os" in
|
372426 | 1999-08-25 | Henrik Grubbström (Grubba) | | xOSF1*)
|
d4ac01 | 2000-03-29 | Fredrik Hübinette (Hubbe) | | # LIBS="${OLDLIBS} -lpthread -lmach -lexc -lc"
LIBS="${OLDLIBS} -lpthread -lmach -lexc"
|
9ab446 | 1998-11-06 | Honza Petrous | | ;;
xBSD/OS*)
LIBS="${OLDLIBS}"
;;
|
bcb538 | 2001-08-23 | Boyd Lynn Gerber | | xUnixWare*|xOpenUNIX*)
|
902224 | 1998-08-27 | Honza Petrous | | if test "$GCC" = yes ; then
|
0d5111 | 2000-04-10 | Boyd Lynn Gerber | | CFLAGS="${CFLAGS} -pthread"
|
902224 | 1998-08-27 | Honza Petrous | | else
|
9ab446 | 1998-11-06 | Honza Petrous | | CFLAGS="${CFLAGS} -Kthread"
|
902224 | 1998-08-27 | Honza Petrous | | fi
|
50b039 | 1997-01-27 | Henrik Grubbström (Grubba) | | ;;
|
080971 | 1998-02-27 | Marcus Comstedt | |
|
46d630 | 2002-05-27 | Henrik Grubbström (Grubba) | | xOpenBSD*)
CFLAGS="${CFLAGS} -pthread"
LDFLAGS="${LDFLAGS} -pthread"
;;
|
9ab446 | 1998-11-06 | Honza Petrous | | xFreeBSD*)
# Threads on FreeBSD earlier than 1998-06-07 are broken.
LIBS="${OLDLIBS}"
AC_MSG_CHECKING(if this version of FreeBSD may have working threads)
AC_CACHE_VAL(pike_cv_freebsd_threads, [
AC_TRY_RUN([
|
54905d | 1998-06-16 | Henrik Grubbström (Grubba) | | #include <osreldate.h>
int main(int argc, char **argv)
{
|
fc84cc | 1998-12-03 | Henrik Grubbström (Grubba) | | /* FreeBSD before 228000 and 300000 - 300005 have broken threads.
|
8e4842 | 1998-06-17 | Henrik Grubbström (Grubba) | | */
|
fc84cc | 1998-12-03 | Henrik Grubbström (Grubba) | | if (__FreeBSD_version < 228000)
|
54905d | 1998-06-16 | Henrik Grubbström (Grubba) | | return(1);
if (__FreeBSD_version < 300000)
return(0);
|
fc84cc | 1998-12-03 | Henrik Grubbström (Grubba) | | if (__FreeBSD_version < 300006)
|
54905d | 1998-06-16 | Henrik Grubbström (Grubba) | | return(1);
return(0);
}
|
9ab446 | 1998-11-06 | Honza Petrous | | ], pike_cv_freebsd_threads=yes, pike_cv_freebsd_threads=no,
pike_cv_freebsd_threads=yes)
])
if test "x$pike_cv_freebsd_threads" = "xno"; then
AC_MSG_RESULT(no)
else
AC_MSG_RESULT(yes)
|
e45ef2 | 2001-02-14 | Mirar (Pontus Hagland) | | using_threads="yes (freebsd)"
|
f369dd | 2000-03-26 | Fredrik Hübinette (Hubbe) | |
AC_PATH_PROG(PTHREAD_CONFIG,pthread-config,no)
|
95013b | 2000-03-27 | Dan Nelson | | if test "x$PTHREAD_CONFIG" = xno ; then
|
3b14b9 | 2002-10-07 | Henrik Grubbström (Grubba) | | AC_SYS_COMPILER_FLAG(-pthread, pthread, CFLAGS, LIBS="$LIBS -lc_r")
|
f369dd | 2000-03-26 | Fredrik Hübinette (Hubbe) | | LD_FALLBACK_FLAGS="${LD_FALLBACK_FLAGS-} -lc_r"
|
fcf073 | 2000-03-28 | Fredrik Hübinette (Hubbe) | |
AC_MSG_CHECKING(Initial stack limit)
AC_CACHE_VAL(pike_cv_initial_stack_size,[
AC_TRY_RUN([
#include <stdio.h>
static int depth=0;
FILE *f;
void save_depth(void);
void use_stack(void *page)
{
void *X[8190];
X[0]=page;
save_depth();
use_stack(&X);
}
void save_depth(void)
{
depth+=sizeof(void *)*8192;
fprintf(f,"%d\n",depth);
fflush(f);
if(depth>0x80000000) exit(0);
}
int main(int argc)
{
f=fopen("confdefs.out.2","w"); /* weird filename to circumvent configure weirdness */
save_depth();
use_stack(0);
}
],
pike_cv_initial_stack_size='',
while read x; do pike_cv_initial_stack_size=$x ; done <confdefs.out.2)
rm confdefs.out.2 >/dev/null 2>/dev/null || :
])
if test x$pike_cv_initial_stack_size = x ; then
AC_MSG_RESULT(unlimited)
else
AC_MSG_RESULT($pike_cv_initial_stack_size)
AC_DEFINE_UNQUOTED(Pike_INITIAL_STACK_SIZE,$pike_cv_initial_stack_size)
fi
|
f369dd | 2000-03-26 | Fredrik Hübinette (Hubbe) | | else
CFLAGS="$CFLAGS `pthread-config --cflags`"
LIBS="$LIBS `pthread-config --libs`"
LDFLAGS="$CFLAGS `pthread-config --ldflags`"
fi
|
9ab446 | 1998-11-06 | Honza Petrous | | fi
;;
|
c371d4 | 1998-06-07 | Simon Coggins | |
|
9ab446 | 1998-11-06 | Honza Petrous | | xAIX*)
|
ea63a7 | 2000-12-19 | Henrik Grubbström (Grubba) | | if test "`uname -v`" -gt 4 ; then
LIBS="${OLDLIBS} -lpthread"
else
LIBS="${OLDLIBS} -lpthreads -lc_r"
fi
|
9ab446 | 1998-11-06 | Honza Petrous | | ;;
|
b1335c | 1998-07-03 | Francesco Chemolli | |
|
73ea7f | 2000-07-09 | Henrik Grubbström (Grubba) | | xSolaris*)
# Some versions of Solaris 2.5.1 require linking with -lthread too.
LIBS="${OLDLIBS} -lpthread -lthread"
;;
|
66a374 | 2000-10-02 | Jonas Wallden | | xDarwin*)
LIBS="${OLDLIBS}"
;;
|
9ab446 | 1998-11-06 | Honza Petrous | | *)
LIBS="${OLDLIBS} -lpthread"
;;
esac
|
50b039 | 1997-01-27 | Henrik Grubbström (Grubba) | |
|
e5f982 | 2000-10-03 | Henrik Grubbström (Grubba) | | AC_CHECK_FUNCS(pthread_init pthread_mutexattr_init pthread_kill)
|
8b1407 | 1997-10-03 | Henrik Grubbström (Grubba) | |
|
9ab446 | 1998-11-06 | Honza Petrous | | AC_MSG_CHECKING(posix threads)
|
b27ea3 | 1997-10-25 | Henrik Grubbström (Grubba) | |
|
9ab446 | 1998-11-06 | Honza Petrous | | AC_CACHE_VAL(pike_cv_posix_threads, [
AC_TRY_RUN([
|
aeafe1 | 1997-01-26 | Per Hedbor | | #define _REENTRANT
#define _THREAD_SAFE
|
f14742 | 1997-03-12 | Fredrik Hübinette (Hubbe) | | #define _MIT_POSIX_THREADS 1
|
aeafe1 | 1997-01-26 | Per Hedbor | |
|
07513e | 1996-10-04 | Fredrik Hübinette (Hubbe) | | #include <pthread.h>
|
eea7c2 | 1997-09-11 | Henrik Grubbström (Grubba) | | void *foo(void *bar) { pthread_exit(0); return 0; }
|
158e9f | 1997-03-10 | Henrik Grubbström (Grubba) | | pthread_mutexattr_t attr;
|
07513e | 1996-10-04 | Fredrik Hübinette (Hubbe) | | pthread_mutex_t tmp;
pthread_t gazonk;
int main()
{
void *sune;
|
8b1407 | 1997-10-03 | Henrik Grubbström (Grubba) | | #ifdef HAVE_PTHREAD_INIT
pthread_init();
#endif /* HAVE_PTHREAD_INIT */
|
080971 | 1998-02-27 | Marcus Comstedt | | #ifdef HAVE_PTHREAD_MUTEXATTR_INIT
|
158e9f | 1997-03-10 | Henrik Grubbström (Grubba) | | pthread_mutexattr_init(&attr);
|
080971 | 1998-02-27 | Marcus Comstedt | | #else
memset(&attr, 0, sizeof(attr));
|
f601ac | 1998-03-06 | Francesco Chemolli | | #endif /* HAVE_PTHREAD_MUTEXATTR_INIT */
|
158e9f | 1997-03-10 | Henrik Grubbström (Grubba) | | pthread_mutex_init(&tmp, &attr);
pthread_mutex_lock(&tmp);
|
07513e | 1996-10-04 | Fredrik Hübinette (Hubbe) | | pthread_create(&gazonk,0,foo,0);
pthread_join(gazonk,&sune);
exit(0);
}
|
6b15b7 | 2001-01-19 | Henrik Grubbström (Grubba) | | ], [ pike_cv_posix_threads=yes ], [ pike_cv_posix_threads=no ], [
AC_TRY_LINK([
#define _REENTRANT
#define _THREAD_SAFE
#define _MIT_POSIX_THREADS 1
#include <pthread.h>
void *foo(void *bar) { pthread_exit(0); return 0; }
pthread_mutexattr_t attr;
pthread_mutex_t tmp;
pthread_t gazonk;
], [
{
void *sune;
#ifdef HAVE_PTHREAD_INIT
pthread_init();
#endif /* HAVE_PTHREAD_INIT */
#ifdef HAVE_PTHREAD_MUTEXATTR_INIT
pthread_mutexattr_init(&attr);
#else
memset(&attr, 0, sizeof(attr));
#endif /* HAVE_PTHREAD_MUTEXATTR_INIT */
pthread_mutex_init(&tmp, &attr);
pthread_mutex_lock(&tmp);
pthread_create(&gazonk,0,foo,0);
pthread_join(gazonk,&sune);
exit(0);
}
], [ pike_cv_posix_threads=yes ], [ pike_cv_posix_threads=no ])
])
|
9ab446 | 1998-11-06 | Honza Petrous | | ])
|
07513e | 1996-10-04 | Fredrik Hübinette (Hubbe) | |
|
9ab446 | 1998-11-06 | Honza Petrous | | if test $pike_cv_posix_threads = yes ; then
AC_MSG_RESULT(yes)
AC_DEFINE(_REENTRANT)
AC_DEFINE(_THREAD_SAFE)
AC_DEFINE(_MIT_POSIX_THREADS,1)
|
67bbf0 | 1999-08-10 | Henrik Grubbström (Grubba) | | AC_DEFINE(PIKE_THREADS)
|
e45ef2 | 2001-02-14 | Mirar (Pontus Hagland) | | using_threads="yes (posix)"
|
9ab446 | 1998-11-06 | Honza Petrous | |
|
71ac9e | 1999-08-29 | Fredrik Hübinette (Hubbe) | | ##########################################################################
|
9ab446 | 1998-11-06 | Honza Petrous | | AC_MSG_CHECKING(for pthread_attr_setstacksize)
AC_CACHE_VAL(pike_cv_have_pthread_attr_setstacksize,[
AC_TRY_LINK([#include <pthread.h>
void foo(pthread_attr_t*x) { pthread_attr_setstacksize(x, 1024*1024); }
],[],[
pike_cv_have_pthread_attr_setstacksize=yes
],[
pike_cv_have_pthread_attr_setstacksize=no
|
8d4ce8 | 1997-04-10 | Fredrik Hübinette (Hubbe) | | ])
|
9ab446 | 1998-11-06 | Honza Petrous | | ])
AC_MSG_RESULT($pike_cv_have_pthread_attr_setstacksize)
if test x$pike_cv_have_pthread_attr_setstacksize = xyes ; then
AC_DEFINE(HAVE_PTHREAD_ATTR_SETSTACKSIZE)
else
:
fi
|
8d4ce8 | 1997-04-10 | Fredrik Hübinette (Hubbe) | |
|
71ac9e | 1999-08-29 | Fredrik Hübinette (Hubbe) | | ##########################################################################
AC_MSG_CHECKING(for pthread_atfork)
AC_CACHE_VAL(pike_cv_have_pthread_atfork,[
AC_TRY_LINK([#include <pthread.h>
void foo(void) { pthread_atfork(0,0,0); }
],[],[
pike_cv_have_pthread_atfork=yes
],[
pike_cv_have_pthread_atfork=no
])
])
|
d20187 | 1999-08-30 | Fredrik Hübinette (Hubbe) | | if test x$pike_cv_have_pthread_atfork = xyes ; then
|
71ac9e | 1999-08-29 | Fredrik Hübinette (Hubbe) | | AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_PTHREAD_ATFORK)
else
AC_MSG_RESULT([no - FreeBSD?])
fi
##########################################################################
|
9ab446 | 1998-11-06 | Honza Petrous | | AC_MSG_CHECKING(for pthread_yield)
AC_CACHE_VAL(pike_cv_have_pthread_yield,[
AC_TRY_LINK([#include <pthread.h>
void foo(void) { pthread_yield(); }
],[],[
pike_cv_have_pthread_yield=yes
],[
pike_cv_have_pthread_yield=no
|
8d4ce8 | 1997-04-10 | Fredrik Hübinette (Hubbe) | | ])
|
9ab446 | 1998-11-06 | Honza Petrous | | ])
AC_MSG_RESULT($pike_cv_have_pthread_yield)
if test x$pike_cv_have_pthread_yield = xyes ; then
AC_DEFINE(HAVE_PTHREAD_YIELD)
else
:
fi
|
8d4ce8 | 1997-04-10 | Fredrik Hübinette (Hubbe) | |
|
71ac9e | 1999-08-29 | Fredrik Hübinette (Hubbe) | | ##########################################################################
|
9ab446 | 1998-11-06 | Honza Petrous | | AC_MSG_CHECKING(for pthread_cond_init)
AC_CACHE_VAL(pike_cv_have_pthread_cond_init,[
AC_TRY_LINK([#include <pthread.h>
void foo(pthread_cond_t*x, pthread_condattr_t*y) { pthread_cond_init(x,y); }
],[],[
pike_cv_have_pthread_cond_init=yes
],[
pike_cv_have_pthread_cond_init=no
|
8d4ce8 | 1997-04-10 | Fredrik Hübinette (Hubbe) | | ])
|
9ab446 | 1998-11-06 | Honza Petrous | | ])
AC_MSG_RESULT($pike_cv_have_pthread_cond_init)
if test x$pike_cv_have_pthread_cond_init = xyes ; then
AC_DEFINE(HAVE_PTHREAD_COND_INIT)
else
:
fi
|
0a40e9 | 1997-04-10 | Fredrik Hübinette (Hubbe) | |
|
71ac9e | 1999-08-29 | Fredrik Hübinette (Hubbe) | | ##########################################################################
|
9ab446 | 1998-11-06 | Honza Petrous | | AC_MSG_CHECKING(if pthread_condattr_default is defined)
AC_CACHE_VAL(pike_cv_have_pthread_condattr_default,[
AC_TRY_LINK([#include <pthread.h>
void foo(pthread_cond_t *bar) { pthread_cond_init(bar, pthread_condattr_default); }
],[],[
pike_cv_have_pthread_condattr_default=yes
],[
pike_cv_have_pthread_condattr_default=no
|
5377b9 | 1997-02-01 | Henrik Grubbström (Grubba) | | ])
|
9ab446 | 1998-11-06 | Honza Petrous | | ])
|
5377b9 | 1997-02-01 | Henrik Grubbström (Grubba) | |
|
9ab446 | 1998-11-06 | Honza Petrous | | AC_MSG_RESULT($pike_cv_have_pthread_condattr_default)
|
5377b9 | 1997-02-01 | Henrik Grubbström (Grubba) | |
|
9ab446 | 1998-11-06 | Honza Petrous | | if test x$pike_cv_have_pthread_condattr_default = xyes ; then
AC_DEFINE(HAVE_PTHREAD_CONDATTR_DEFAULT)
else
:
fi
|
afbcda | 1998-08-31 | Henrik Grubbström (Grubba) | |
|
752e10 | 1999-04-30 | Fredrik Hübinette (Hubbe) | |
|
9ab446 | 1998-11-06 | Honza Petrous | | #
# FreeBSD doesn't like the &, while AIX requires it...
#
AC_MSG_CHECKING(if pthread_condattr_default is needs an & (AIX))
AC_CACHE_VAL(pike_cv_have_pthread_condattr_default_aix,[
AC_TRY_LINK([#include <pthread.h>
void foo(pthread_cond_t *bar) { pthread_cond_init(bar, &pthread_condattr_default); }
],[],[
pike_cv_have_pthread_condattr_default_aix=yes
],[
pike_cv_have_pthread_condattr_default_aix=no
|
afbcda | 1998-08-31 | Henrik Grubbström (Grubba) | | ])
|
9ab446 | 1998-11-06 | Honza Petrous | | ])
|
afbcda | 1998-08-31 | Henrik Grubbström (Grubba) | |
|
9ab446 | 1998-11-06 | Honza Petrous | | AC_MSG_RESULT($pike_cv_have_pthread_condattr_default_aix)
|
afbcda | 1998-08-31 | Henrik Grubbström (Grubba) | |
|
9ab446 | 1998-11-06 | Honza Petrous | | if test x$pike_cv_have_pthread_condattr_default_aix = xyes ; then
AC_DEFINE(HAVE_PTHREAD_CONDATTR_DEFAULT_AIX)
else
:
fi
|
afbcda | 1998-08-31 | Henrik Grubbström (Grubba) | |
|
71ac9e | 1999-08-29 | Fredrik Hübinette (Hubbe) | | ##########################################################################
|
752e10 | 1999-04-30 | Fredrik Hübinette (Hubbe) | |
AC_MSG_CHECKING(for __pthread_initial_thread_bos)
AC_CACHE_VAL(pike_cv_have_pthread_initial_thread_bos,[
AC_TRY_LINK([#include <pthread.h>
char *foo(void) { extern char *__pthread_initial_thread_bos;
return __pthread_initial_thread_bos; }
],[],[
pike_cv_have_pthread_initial_thread_bos=yes
],[
pike_cv_have_pthread_initial_thread_bos=no
])
])
AC_MSG_RESULT($pike_cv_have_pthread_initial_thread_bos)
if test x$pike_cv_have_pthread_initial_thread_bos = xyes ; then
AC_DEFINE(HAVE_PTHREAD_INITIAL_THREAD_BOS)
else
:
fi
|
d0cb8d | 2000-05-20 | Henrik Grubbström (Grubba) | | ##########################################################################
# On Linux the threads don't inherit euid & egid from the main thread.
# FIXME: Add a real test here!
if test "x$pike_cv_sys_os" = "xLinux"; then
AC_DEFINE(HAVE_BROKEN_LINUX_THREAD_EUID)
else :; fi
|
752e10 | 1999-04-30 | Fredrik Hübinette (Hubbe) | |
|
40fb6d | 2003-01-05 | Henrik Grubbström (Grubba) | | AC_MSG_CHECKING([behaviour of the pthread_t type])
AC_CACHE_VAL(pike_cv_thread_t_type, [
AC_TRY_COMPILE([
#include <sys/types.h>
#ifdef STDC_HEADERS
#include <stdlib.h>
#include <stddef.h>
#endif
#include <pthread.h>
extern pthread_t bar;
], [
void *foo = (void *)(ptrdiff_t)bar;
return 0;
], [ pike_cv_thread_t_type=integer ], [ pike_cv_thread_t_type=pointer ])
])
AC_MSG_RESULT($pike_cv_thread_t_type)
|
9ab446 | 1998-11-06 | Honza Petrous | | else
AC_MSG_RESULT(no)
LIBS="$OLDLIBS"
|
284e06 | 1998-11-09 | Fredrik Hübinette (Hubbe) | | CFLAGS="$OLDCFLAGS"
|
9ab446 | 1998-11-06 | Honza Petrous | |
# No POSIX threads.
# Try UNIX threads instead
AC_MSG_CHECKING(unix threads)
case "x$pike_cv_sys_os" in
|
bcb538 | 2001-08-23 | Boyd Lynn Gerber | | xUnixWare*|xOpenUNIX*)
|
9ab446 | 1998-11-06 | Honza Petrous | | if test "$GCC" = yes ; then
|
0d5111 | 2000-04-10 | Boyd Lynn Gerber | | CFLAGS="${CFLAGS} -pthread"
|
9ab446 | 1998-11-06 | Honza Petrous | | else
CFLAGS="${CFLAGS} -Kthread"
fi
CFLAGS="${CFLAGS} -D_UNIXWARE_THREADS_"
;;
*)
LIBS="${LIBS} -lthread"
;;
esac
AC_CACHE_VAL(pike_cv_unix_threads, [
AC_TRY_RUN([
#define _REENTRANT
#define _THREAD_SAFE
#define _MIT_POSIX_THREADS 1
#include <thread.h>
#ifdef _UNIXWARE_THREADS_
#include <synch.h>
#endif
void *foo(void *bar) { thr_exit(0); return 0; }
mutex_t tmp;
thread_t gazonk;
int main()
{
void *sune;
mutex_lock(& tmp);
thr_create(0,0,foo,0,0,&gazonk);
thr_join(gazonk,0,&sune);
exit(0);
}
],pike_cv_unix_threads=yes,pike_cv_unix_threads=no,pike_cv_unix_threads=no)
])
if test x$pike_cv_unix_threads = xyes ; then
AC_MSG_RESULT(yes)
AC_DEFINE(_REENTRANT)
AC_DEFINE(_THREAD_SAFE)
AC_DEFINE(_UNIX_THREADS)
|
67bbf0 | 1999-08-10 | Henrik Grubbström (Grubba) | | AC_DEFINE(PIKE_THREADS)
|
e45ef2 | 2001-02-14 | Mirar (Pontus Hagland) | | using_threads="yes (unix)"
|
50b039 | 1997-01-27 | Henrik Grubbström (Grubba) | | else
AC_MSG_RESULT(no)
LIBS="$OLDLIBS"
|
284e06 | 1998-11-09 | Fredrik Hübinette (Hubbe) | | CFLAGS="$OLDCFLAGS"
|
07513e | 1996-10-04 | Fredrik Hübinette (Hubbe) | |
|
50b039 | 1997-01-27 | Henrik Grubbström (Grubba) | | # Now we've sunk really low -- test for proprietary threads
# SGI old-style shared group processes
|
43032e | 1997-10-09 | Henrik Grubbström (Grubba) | | # AC_CHECK_FUNCS(sproc oserror)
#
# AC_MSG_CHECKING(Fallback to sproc)
#
# if test x$ac_cv_func_sproc$ac_cv_func_oserror = xyesyes; then
# AC_MSG_RESULT(yes)
# AC_DEFINE(_REENTRANT)
# AC_DEFINE(_THREAD_SAFE)
# AC_DEFINE(_SGI_SPROC_THREADS)
# AC_DEFINE(_SGI_MP_SOURCE)
|
e45ef2 | 2001-02-14 | Mirar (Pontus Hagland) | | # using_threads="yes (sgi)"
|
43032e | 1997-10-09 | Henrik Grubbström (Grubba) | | # else
# AC_MSG_RESULT(no)
# :
# fi
|
9ab446 | 1998-11-06 | Honza Petrous | | fi # UNIX threads
|
40fb6d | 2003-01-05 | Henrik Grubbström (Grubba) | |
pike_cv_thread_t_type=integer
|
9ab446 | 1998-11-06 | Honza Petrous | | fi # POSIX threads
|
b1f4eb | 1998-01-13 | Fredrik Hübinette (Hubbe) | | fi # NT
|
50b039 | 1997-01-27 | Henrik Grubbström (Grubba) | | else
# Without threads
|
40fb6d | 2003-01-05 | Henrik Grubbström (Grubba) | | pike_cv_thread_t_type=integer
|
50b039 | 1997-01-27 | Henrik Grubbström (Grubba) | | :
|
eec137 | 1996-11-02 | Fredrik Hübinette (Hubbe) | | fi
|
40fb6d | 2003-01-05 | Henrik Grubbström (Grubba) | | if test "x$pike_cv_thread_t_type" = "xpointer"; then
AC_DEFINE(PIKE_THREAD_T_IS_POINTER)
fi
|
07513e | 1996-10-04 | Fredrik Hübinette (Hubbe) | | ########################################################################
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
a888ce | 2000-12-23 | Henrik Grubbström (Grubba) | | # NOTE: The following test is hardcoded to fail when crosscompiling
# It also clobbers $LIBOBJS.
OLD_LIBOBJS="${LIBOBJS}"
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | AC_FUNC_MEMCMP
|
a888ce | 2000-12-23 | Henrik Grubbström (Grubba) | | if test "x$ac_cv_func_memcmp_clean" = "xyes"; then
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | AC_DEFINE(HAVE_MEMCMP)
fi
LIBOBJS="${OLD_LIBOBJS}"
|
a888ce | 2000-12-23 | Henrik Grubbström (Grubba) | | ########################################################################
|
dcad55 | 1996-08-03 | Fredrik Hübinette (Hubbe) | | AC_FUNC_MMAP
|
693018 | 1996-02-25 | Fredrik Hübinette (Hubbe) | |
|
75920f | 1997-12-28 | Fredrik Hübinette (Hubbe) | | AC_CHECK_FUNCS( \
|
744f54 | 2003-01-21 | Henrik Grubbström (Grubba) | | _alldiv \
|
cb2256 | 1995-10-11 | Fredrik Hübinette (Hubbe) | | _crypt \
|
063fe3 | 1998-03-10 | Per Hedbor | | poll \
|
cb2256 | 1995-10-11 | Fredrik Hübinette (Hubbe) | | bcopy \
bzero \
clock \
crypt \
fchmod \
|
9548a8 | 1997-05-07 | Per Hedbor | | gethrtime \
gethrvtime \
|
cb2256 | 1995-10-11 | Fredrik Hübinette (Hubbe) | | getenv \
getrlimit \
getrusage \
|
067bc1 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | gettimeofday \
|
cb2256 | 1995-10-11 | Fredrik Hübinette (Hubbe) | | index \
|
dcad55 | 1996-08-03 | Fredrik Hübinette (Hubbe) | | localtime \
|
fe9150 | 1998-07-26 | Peter J. Holzer | | gmtime \
|
cb2256 | 1995-10-11 | Fredrik Hübinette (Hubbe) | | memchr \
|
565c36 | 1997-01-27 | Fredrik Hübinette (Hubbe) | | mktime \
|
5539c5 | 1998-06-08 | Henrik Grubbström (Grubba) | | perror \
|
cb2256 | 1995-10-11 | Fredrik Hübinette (Hubbe) | | rindex \
|
d9c717 | 2001-03-23 | Henrik Grubbström (Grubba) | | setbuf \
|
cb2256 | 1995-10-11 | Fredrik Hübinette (Hubbe) | | setlocale \
setrlimit \
|
3605b8 | 1998-09-18 | Peter J. Holzer | | setresuid \
|
d9c717 | 2001-03-23 | Henrik Grubbström (Grubba) | | setvbuf \
|
93b808 | 1995-11-02 | Fredrik Hübinette (Hubbe) | | sigaction \
|
574088 | 1998-01-01 | Fredrik Hübinette (Hubbe) | | sigblock \
sigprocmask \
|
93b808 | 1995-11-02 | Fredrik Hübinette (Hubbe) | | sigvec \
|
cb2256 | 1995-10-11 | Fredrik Hübinette (Hubbe) | | strcasecmp \
|
9b15e0 | 2000-12-22 | Fredrik Hübinette (Hubbe) | | strnlen \
strncmp \
|
cb2256 | 1995-10-11 | Fredrik Hübinette (Hubbe) | | strchr \
strcspn \
|
2b2583 | 1997-01-31 | Fredrik Hübinette (Hubbe) | | strerror \
|
cb2256 | 1995-10-11 | Fredrik Hübinette (Hubbe) | | strrchr \
strtod \
strtok \
strtol \
|
574088 | 1998-01-01 | Fredrik Hübinette (Hubbe) | | time \
|
cb2256 | 1995-10-11 | Fredrik Hübinette (Hubbe) | | times \
|
2ea211 | 2002-09-07 | Henrik Grubbström (Grubba) | | tzset \
|
cb2256 | 1995-10-11 | Fredrik Hübinette (Hubbe) | | vfprintf \
vsprintf \
|
cd9681 | 1998-05-15 | Henrik Grubbström (Grubba) | | vsnprintf \
|
693018 | 1996-02-25 | Fredrik Hübinette (Hubbe) | | wait3 \
|
65887d | 1995-11-15 | Fredrik Hübinette (Hubbe) | | wait4 \
waitpid \
|
dcad55 | 1996-08-03 | Fredrik Hübinette (Hubbe) | | munmap \
|
423839 | 1998-07-09 | Francesco Chemolli | | shl_load \
|
59bc1b | 1997-01-22 | Bernhard Fastenrath | | dld_link \
dld_get_func \
|
3e84d6 | 1997-04-16 | Fredrik Hübinette (Hubbe) | | pipe \
|
75920f | 1997-12-28 | Fredrik Hübinette (Hubbe) | | strdup \
|
f196ef | 1999-08-31 | Fredrik Hübinette (Hubbe) | | strstr \
|
75920f | 1997-12-28 | Fredrik Hübinette (Hubbe) | | kill \
alarm \
|
85f59e | 1998-01-08 | Fredrik Hübinette (Hubbe) | | fork1 \
|
d386e6 | 1998-03-20 | Fredrik Hübinette (Hubbe) | | flock \
|
e6f98c | 1998-05-22 | David Hedbor | | lockf \
|
0d52dd | 1998-01-16 | Fredrik Hübinette (Hubbe) | | setuid getuid seteuid geteuid \
setgid getgid setegid getegid \
|
f087c4 | 1998-02-04 | Fredrik Hübinette (Hubbe) | | getpwent getpwnam getpwuid \
getgrent getgrnam \
|
8f6385 | 2000-09-16 | Mirar (Pontus Hagland) | | setsid setpgrp getpgrp setpgid getpgid \
|
d386e6 | 1998-03-20 | Fredrik Hübinette (Hubbe) | | initgroups setgroups \
|
9c5020 | 1998-03-26 | Fredrik Hübinette (Hubbe) | | socketpair \
|
5ff14f | 1998-05-25 | Marcus Comstedt | | fpclass \
fp_class_d \
isinf \
isnan \
iszero \
finite \
signbit \
|
1b28b8 | 2001-05-28 | Marcus Comstedt | | nan \
|
70c9c1 | 1998-05-05 | Fredrik Hübinette (Hubbe) | | nice \
|
ea959d | 1999-02-01 | Per Hedbor | | __priocntl \
sched_setscheduler \
setpriority \
|
dac637 | 1999-10-17 | Mirar (Pontus Hagland) | | usleep \
nanosleep \
|
a85ac5 | 2001-08-23 | Per Hedbor | | thr_yield \
|
cb2256 | 1995-10-11 | Fredrik Hübinette (Hubbe) | | )
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
6cefa1 | 2000-09-27 | Henrik Grubbström (Grubba) | | AC_MSG_CHECKING(for the type of the last argument to accept)
|
11ceb0 | 1998-08-07 | Henrik Grubbström (Grubba) | | AC_CACHE_VAL(pike_cv_accept_size_t, [
|
6cefa1 | 2000-09-27 | Henrik Grubbström (Grubba) | | for t in socklen_t size_t int; do
AC_TRY_COMPILE([
#ifndef _LARGEFILE_SOURCE
# define _FILE_OFFSET_BITS 64
# define _LARGEFILE_SOURCE
# define _LARGEFILE64_SOURCE 1
#endif
/* HPUX needs these too... */
#ifndef __STDC_EXT__
# define __STDC_EXT__
#endif /* !__STDC_EXT__ */
#include <sys/types.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
/* NT */
#ifdef HAVE_WINSOCK_H
#include <winsock.h>
#endif
|
a92414 | 2002-11-18 | Henrik Grubbström (Grubba) | | /* Here is the actual test: */
|
6cefa1 | 2000-09-27 | Henrik Grubbström (Grubba) | | int accept(int, struct sockaddr *, $t *);
], [
/* EMPTY */
], [
pike_cv_accept_size_t=$t
break
], [
AC_TRY_COMPILE([
|
11ceb0 | 1998-08-07 | Henrik Grubbström (Grubba) | | #ifndef _LARGEFILE_SOURCE
# define _FILE_OFFSET_BITS 64
# define _LARGEFILE_SOURCE
# define _LARGEFILE64_SOURCE 1
#endif
/* HPUX needs these too... */
#ifndef __STDC_EXT__
# define __STDC_EXT__
#endif /* !__STDC_EXT__ */
#include <sys/types.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
|
3e82a7 | 1998-09-01 | Fredrik Hübinette (Hubbe) | | /* NT */
#ifdef HAVE_WINSOCK_H
#include <winsock.h>
#endif
|
a92414 | 2002-11-18 | Henrik Grubbström (Grubba) | | /* Here is the actual test: */
|
6cefa1 | 2000-09-27 | Henrik Grubbström (Grubba) | | SOCKET accept(SOCKET, struct sockaddr *, $t *);
], [
/* EMPTY */
], [
pike_cv_accept_size_t=$t
break
], [])
])
done
if test "x$pike_cv_accept_size_t" = "x"; then
# Check if it could be a Psocklen_t
# Psocklen_t is a stupid typedef of socklen_t *.
|
69bae8 | 2000-08-20 | Henrik Grubbström (Grubba) | | AC_TRY_COMPILE([
#ifndef _LARGEFILE_SOURCE
# define _FILE_OFFSET_BITS 64
# define _LARGEFILE_SOURCE
# define _LARGEFILE64_SOURCE 1
#endif
/* HPUX needs these too... */
#ifndef __STDC_EXT__
# define __STDC_EXT__
#endif /* !__STDC_EXT__ */
#include <sys/types.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
/* NT */
#ifdef HAVE_WINSOCK_H
#include <winsock.h>
#endif
|
a92414 | 2002-11-18 | Henrik Grubbström (Grubba) | | /* Here is the actual test: */
|
6cefa1 | 2000-09-27 | Henrik Grubbström (Grubba) | | int accept(int, struct sockaddr *, Psocklen_t);
|
69bae8 | 2000-08-20 | Henrik Grubbström (Grubba) | | ], [
/* EMPTY */
|
6cefa1 | 2000-09-27 | Henrik Grubbström (Grubba) | | ], [
pike_cv_accept_size_t=socklen_t
], [
# FIXME: Should probably have a warning here.
# FIXME: Should we check if socklen_t exists, and use that?
pike_cv_accept_size_t=int
])
fi
|
11ceb0 | 1998-08-07 | Henrik Grubbström (Grubba) | | ])
|
6cefa1 | 2000-09-27 | Henrik Grubbström (Grubba) | | AC_MSG_RESULT($pike_cv_accept_size_t *)
|
11ceb0 | 1998-08-07 | Henrik Grubbström (Grubba) | | AC_DEFINE_UNQUOTED(ACCEPT_SIZE_T, $pike_cv_accept_size_t)
|
08af09 | 2000-04-12 | Marcus Comstedt | | if test x"$pike_cv_sys_os" = xWindows_NT ; then
|
964949 | 1998-02-27 | Fredrik Hübinette (Hubbe) | | AC_DEFINE(HAVE_LOADLIBRARY)
AC_DEFINE(HAVE_FREELIBRARY)
AC_DEFINE(HAVE_GETPROCADDRESS)
AC_DEFINE(DL_EXPORT, _dlspec(export))
else
AC_DEFINE(DL_EXPORT, [])
fi
|
e78abd | 1996-11-21 | Fredrik Hübinette (Hubbe) | | if test $ac_cv_func_crypt$ac_cv_func__crypt = nono ; then
|
905bb1 | 1998-01-31 | Fredrik Hübinette (Hubbe) | | AC_CHECK_LIB(crypt,crypt,[LIBS="${LIBS} -lcrypt" ; AC_DEFINE(HAVE_CRYPT)],
[
if test -f "$srcdir/crypt.c"; then
AC_MSG_RESULT(Using crypt.c for BSD style crypt())
EXTRA_OBJS="${EXTRA_OBJS} crypt.o"
AC_DEFINE(HAVE_CRYPT)
|
a68066 | 2000-08-20 | Henrik Grubbström (Grubba) | | AC_DEFINE(USE_CRYPT_C)
|
905bb1 | 1998-01-31 | Fredrik Hübinette (Hubbe) | | else
:
fi
])
|
e78abd | 1996-11-21 | Fredrik Hübinette (Hubbe) | | fi
|
1b28b8 | 2001-05-28 | Marcus Comstedt | | #############################################################################
MY_CHECK_FUNCTION(infnan,
[
#include <errno.h>
#include <math.h>
], [
double pinf = infnan(ERANGE);
double ninf = infnan(-ERANGE);
double nan = infnan(EDOM);
exit(!(isinf(pinf)>0 && isinf(ninf)<0 && isnan(nan)));
])
|
5539c5 | 1998-06-08 | Henrik Grubbström (Grubba) | | #############################################################################
|
c3d103 | 2001-06-12 | Henrik Grubbström (Grubba) | | MY_CHECK_FUNCTION(_isnan,
[
#include <float.h>
], [
exit(_isnan(0.0));
])
#############################################################################
|
5539c5 | 1998-06-08 | Henrik Grubbström (Grubba) | |
# FreeBSD 3.0 has broken F_SETFD when running with threads.
AC_MSG_CHECKING(whether F_SETFD exists and works)
AC_CACHE_VAL(pike_cv_broken_f_setfd, [
AC_TRY_RUN([
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif /* HAVE_SYS_TYPES_H */
#include <sys/stat.h>
#ifdef HAVE_FCNTL_H
#include <fcntl.h>
#endif /* HAVE_FCNTL_H */
#include <stdio.h>
#ifndef FD_CLOEXEC
#define FD_CLOEXEC 1
#endif /* FD_CLOEXEC */
int main(int argc, char **argv)
{
int fd = 0;
if (fcntl(fd, F_SETFD, FD_CLOEXEC) < 0) {
exit(1);
}
if (fcntl(fd, F_GETFD) != FD_CLOEXEC) {
exit(1);
}
exit(0);
}
], pike_cv_broken_f_setfd=no, pike_cv_broken_f_setfd=yes,
|
56d1c0 | 2000-06-29 | Henrik Grubbström (Grubba) | | pike_cv_broken_f_setfd=yes)
|
5539c5 | 1998-06-08 | Henrik Grubbström (Grubba) | | ])
if test "x$pike_cv_broken_f_setfd" = "xyes"; then
AC_MSG_RESULT(no)
AC_DEFINE(HAVE_BROKEN_F_SETFD)
else
AC_MSG_RESULT(yes)
fi
#############################################################################
|
067bc1 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | AC_STRUCT_TM
|
dcad55 | 1996-08-03 | Fredrik Hübinette (Hubbe) | | #############################################################################
|
067bc1 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | AC_MSG_CHECKING(extern int timezone)
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | AC_CACHE_VAL(pike_cv_has_external_timezone,[
|
067bc1 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | AC_TRY_LINK([
#include <time.h>
],[
int _tz;
_tz=timezone;
|
a05f92 | 1998-05-05 | Fredrik Hübinette (Hubbe) | | timezone=_tz;
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | ],pike_cv_has_external_timezone=yes,pike_cv_has_external_timezone=no)
|
067bc1 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | ])
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | if test "$pike_cv_has_external_timezone" = "yes"; then
|
067bc1 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | AC_DEFINE(HAVE_EXTERNAL_TIMEZONE)
fi
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | AC_MSG_RESULT($pike_cv_has_external_timezone)
|
dcad55 | 1996-08-03 | Fredrik Hübinette (Hubbe) | |
#############################################################################
|
e0b956 | 1996-07-02 | Fredrik Hübinette (Hubbe) | | # No test for this yet...
AC_DEFINE(HAVE_STRUCT_TIMEVAL)
|
dcad55 | 1996-08-03 | Fredrik Hübinette (Hubbe) | | #############################################################################
|
067bc1 | 1996-06-21 | Fredrik Hübinette (Hubbe) | |
|
63a6e0 | 1998-05-29 | Henrik Grubbström (Grubba) | | if test "x$ac_cv_func_strtol" = "xyes"; then
AC_MSG_CHECKING(if strtol works for large hexadecimal constants)
AC_CACHE_VAL(pike_cv_func_strtol_works, [
AC_TRY_RUN([
#include <stdlib.h>
int main(int argc, char **argv)
{
|
a92414 | 2002-11-18 | Henrik Grubbström (Grubba) | | /* On some OS:s strtol() rounds this to 0x7fffffff. */
|
63a6e0 | 1998-05-29 | Henrik Grubbström (Grubba) | | return(strtol("0xffffffff", NULL, 0) != 0xffffffff);
}
], pike_cv_func_strtol_works=yes,
pike_cv_func_strtol_works=no,
pike_cv_func_strtol_works=no)
])
AC_MSG_RESULT($pike_cv_func_strtol_works)
if test "x$pike_cv_func_strtol_works" = "xyes"; then
AC_DEFINE(HAVE_WORKING_STRTOL)
else :; fi
else :; fi
#############################################################################
|
e0b956 | 1996-07-02 | Fredrik Hübinette (Hubbe) | | AC_MSG_CHECKING(if gettimeofday takes two arguments)
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | AC_CACHE_VAL(pike_cv_func_gettimeofday_has_two_args,
|
e0b956 | 1996-07-02 | Fredrik Hübinette (Hubbe) | | [
|
6b15b7 | 2001-01-19 | Henrik Grubbström (Grubba) | | AC_TRY_RUN([
|
e0b956 | 1996-07-02 | Fredrik Hübinette (Hubbe) | | #if TIME_WITH_SYS_TIME
# include <sys/time.h>
# include <time.h>
#else
# if HAVE_SYS_TIME_H
# include <sys/time.h>
# else
# if HAVE_TIME_H
# include <time.h>
# endif
# endif
#endif
#ifndef HAVE_STRUCT_TIMEVAL
struct timeval
{
long tv_sec;
long tv_usec;
};
#endif
int main() {
struct timeval tv;
gettimeofday(&tv,(void *)0);
exit(0);
}
|
6b15b7 | 2001-01-19 | Henrik Grubbström (Grubba) | | ], [ pike_cv_func_gettimeofday_has_two_args=yes
], [ pike_cv_func_gettimeofday_has_two_args=no
], [
AC_TRY_LINK([
#if TIME_WITH_SYS_TIME
# include <sys/time.h>
# include <time.h>
#else
# if HAVE_SYS_TIME_H
# include <sys/time.h>
# else
# if HAVE_TIME_H
# include <time.h>
# endif
# endif
#endif
#ifndef HAVE_STRUCT_TIMEVAL
struct timeval
{
long tv_sec;
long tv_usec;
};
#endif
], [
{
struct timeval tv;
gettimeofday(&tv,(void *)0);
exit(0);
}
], [ pike_cv_func_gettimeofday_has_two_args=yes ], [pike_cv_func_gettimeofday_has_two_args=no])
])
])
|
e0b956 | 1996-07-02 | Fredrik Hübinette (Hubbe) | |
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | if test $pike_cv_func_gettimeofday_has_two_args = yes; then
|
e0b956 | 1996-07-02 | Fredrik Hübinette (Hubbe) | | AC_DEFINE(GETTIMEOFDAY_TAKES_TWO_ARGS)
fi
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | AC_MSG_RESULT($pike_cv_func_gettimeofday_has_two_args)
|
067bc1 | 1996-06-21 | Fredrik Hübinette (Hubbe) | |
|
9aae7e | 2001-06-20 | Per Hedbor | | # if test "x$ac_cv_func_gethrtime" != "xyes"; then
# AC_MSG_CHECKING(if we can make gethrtime by the RDTSC instruction)
# AC_CACHE_VAL(pike_cv_own_gethrtime_rdtsc, [
# AC_TRY_RUN([
# #include <unistd.h>
# #include <stdio.h>
# #include <sys/time.h>
#
# static long long hrtime_rtsc_zero;
# static long long hrtime_rtsc_last;
# static long long hrtime_max;
# static struct timeval hrtime_timeval_zero;
# static long double hrtime_conv=0.0;
#
# #define GETTIMEOFDAY(PTR) gettimeofday(PTR,NULL)
#
# #define RTSC(x) \
# __asm__ __volatile__ ( "rdtsc" \
# :"=a" (((unsigned long*)&x)[0]), \
# "=d" (((unsigned long*)&x)[1]))
#
# void own_gethrtime_init()
# {
# GETTIMEOFDAY(&hrtime_timeval_zero);
# RTSC(hrtime_rtsc_zero);
# hrtime_rtsc_last=hrtime_rtsc_zero;
# hrtime_max=0;
# }
#
# int own_gethrtime_update(struct timeval *ptr)
# {
# long long td,t,now;
# GETTIMEOFDAY(ptr);
# RTSC(now);
# td=((long long)ptr->tv_sec-hrtime_timeval_zero.tv_sec)*1000000000+
# ((long long)ptr->tv_usec-hrtime_timeval_zero.tv_usec)*1000;
#
# hrtime_rtsc_last=now;
# t=now-hrtime_rtsc_zero;
# if (t) hrtime_conv=((long double)td)/t;
#
# return 1;
# }
#
# /* this is very sensitive to the compiler; keep all crap */
#
# long long gethrtime()
# {
# long long now;
# struct timeval tv;
#
# if (hrtime_conv==0.0)
# {
# if (!own_gethrtime_update(&tv)) /* not calibrated yet */
# {
# return
# hrtime_max=
# ((long long)tv.tv_sec-hrtime_timeval_zero.tv_sec)*1000000000+
# ((long long)tv.tv_usec-hrtime_timeval_zero.tv_usec)*1000;
# }
# }
#
# RTSC(now);
#
# if (now-hrtime_rtsc_last > 2000000000)
# {
# own_gethrtime_update(&tv);
# return gethrtime();
# }
#
# now = (long long) ( (long double)(now-hrtime_rtsc_zero) * hrtime_conv );
#
# if (now<hrtime_max) now=hrtime_max;
# return hrtime_max=now;
# }
#
# #include <stdio.h>
#
# int main()
# {
# struct timeval tv1,tv2;
# long long td,t1,t2;
# own_gethrtime_init();
#
# usleep(10);
# own_gethrtime_update(&tv2);
#
# t1=gethrtime();
#
# gettimeofday(&tv1,NULL);
# for (;;) /* busy loop */
# {
# GETTIMEOFDAY(&tv2);
# td=((long long)tv2.tv_sec-tv1.tv_sec)*1000000000+
# ((long long)tv2.tv_usec-tv1.tv_usec)*1000;
# if (td>1000000) break;
# }
# t2=gethrtime();
#
# /* printf("t2-t1=%lld\n",t2-t1); */
#
# if (t2==hrtime_rtsc_zero ||
# t2-t1>1100000 ||
# t2-t1<900000) return 1;
#
# return 0;
# }], pike_cv_own_gethrtime_rdtsc=yes,
# pike_cv_own_gethrtime_rdtsc=no, pike_cv_own_gethrtime_rdtsc=no)
# ])
# if test "x$pike_cv_own_gethrtime_rdtsc" = "xyes"; then
# AC_MSG_RESULT(yes)
# AC_DEFINE(OWN_GETHRTIME)
# AC_DEFINE(OWN_GETHRTIME_RDTSC)
# AC_DEFINE(HAVE_GETHRTIME)
# else
# AC_MSG_RESULT([no])
# fi
# fi
#
|
067bc1 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | AC_MSG_CHECKING(if struct tm has tm_gmtoff)
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | AC_CACHE_VAL(pike_cv_struct_tm_has_gmtoff,[
|
658f1a | 1997-01-26 | Fredrik Hübinette (Hubbe) | | AC_TRY_COMPILE([
|
067bc1 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | #ifdef TM_IN_SYS_TIME
#include <sys/time.h>
#else
|
a28592 | 1998-09-27 | Henrik Grubbström (Grubba) | | #include <time.h>
#endif
|
067bc1 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | ],[
int _tz;
struct tm foo;
|
647f5d | 2001-12-03 | Xavier Beaudouin | | _tz=foo.tm_gmtoff;
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | ],pike_cv_struct_tm_has_gmtoff=yes,pike_cv_struct_tm_has_gmtoff=no)
|
067bc1 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | ])
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | if test "$pike_cv_struct_tm_has_gmtoff" = "yes"; then
|
067bc1 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | AC_DEFINE(STRUCT_TM_HAS_GMTOFF)
fi
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | AC_MSG_RESULT($pike_cv_struct_tm_has_gmtoff)
|
067bc1 | 1996-06-21 | Fredrik Hübinette (Hubbe) | |
|
4b2ccc | 2002-03-21 | Henrik Grubbström (Grubba) | | AC_MSG_CHECKING(if struct tm has __tm_gmtoff)
AC_CACHE_VAL(pike_cv_struct_tm_has___tm_gmtoff,[
AC_TRY_COMPILE([
#ifdef TM_IN_SYS_TIME
#include <sys/time.h>
#else
#include <time.h>
#endif
],[
int _tz;
struct tm foo;
_tz=foo.__tm_gmtoff;
],pike_cv_struct_tm_has___tm_gmtoff=yes,pike_cv_struct_tm_has___tm_gmtoff=no)
])
if test "$pike_cv_struct_tm_has___tm_gmtoff" = "yes"; then
AC_DEFINE(STRUCT_TM_HAS___TM_GMTOFF)
fi
AC_MSG_RESULT($pike_cv_struct_tm_has___tm_gmtoff)
|
c69eb5 | 1996-09-29 | Fredrik Hübinette (Hubbe) | | AC_MSG_CHECKING(for USHRT_MAX definition)
AC_CACHE_VAL(pike_cv_ushrt_max_is_defined,[
AC_EGREP_CPP(yes,[
#include <limits.h>
#ifdef USHRT_MAX
yes
#endif
],pike_cv_ushrt_max_is_defined=yes,pike_cv_ushrt_max_is_defined=no)
])
if test "$pike_cv_ushrt_max_is_defined" = "no" ; then
AC_DEFINE(USHRT_MAX,65535)
fi
AC_MSG_RESULT($pike_cv_ushrt_max_is_defined)
|
067bc1 | 1996-06-21 | Fredrik Hübinette (Hubbe) | |
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | define(MY_CHECK_HEADERS,
[
AC_MSG_CHECKING(for $1 declaration)
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | AC_CACHE_VAL(pike_cv_decl_$1,
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | [
|
9b6287 | 2002-10-03 | Henrik Grubbström (Grubba) | | OLD_CPPFLAGS="$CPPFLAGS"
|
63a0f7 | 2003-01-27 | Martin Stjernholm | | pike_cv_decl_$1=nonexistent
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | for a in $2
do
|
63a0f7 | 2003-01-27 | Martin Stjernholm | | AC_EGREP_HEADER($1,$a,[ pike_cv_decl_$1=existent; break ])
|
b933a6 | 2002-10-03 | Henrik Grubbström (Grubba) | |
# Kludge for MacOS X. Retry with the traditional cpp...
CPPFLAGS="$CPPFLAGS -traditional-cpp"
|
63a0f7 | 2003-01-27 | Martin Stjernholm | | AC_EGREP_HEADER($1,$a,[ pike_cv_decl_$1=existent; break ])
|
b933a6 | 2002-10-03 | Henrik Grubbström (Grubba) | | CPPFLAGS="$OLD_CPPFLAGS"
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | done
|
9b6287 | 2002-10-03 | Henrik Grubbström (Grubba) | | CPPFLAGS="$OLD_CPPFLAGS"
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | ])
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | AC_MSG_RESULT($pike_cv_decl_$1)
|
63a0f7 | 2003-01-27 | Martin Stjernholm | | if test "$pike_cv_decl_$1" = nonexistent -o "$pike_cv_decl_$1" = nonexistant; then
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | AC_DEFINE(translit($1,[a-z],[A-Z])[]_DECL_MISSING)
fi
])
MY_CHECK_HEADERS(strchr,string.h unistd.h stdlib.h)
MY_CHECK_HEADERS(malloc,memory.h unistd.h stdlib.h)
|
2043ba | 1998-02-10 | Fredrik Hübinette (Hubbe) | | MY_CHECK_HEADERS(getpeername,sys/socket.h sys/socketvar.h sys/socketio.h winsock.h winsock2.h)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | MY_CHECK_HEADERS(popen,stdio.h unistd.h)
MY_CHECK_HEADERS(getenv,unistd.h stdlib.h)
|
2043ba | 1998-02-10 | Fredrik Hübinette (Hubbe) | | MY_CHECK_HEADERS(gethostname,unistd.h netdb.h winsock.h winsock2.h)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
AC_ALLOCA
|
693018 | 1996-02-25 | Fredrik Hübinette (Hubbe) | | AC_C_CONST
AC_C_INLINE
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
9b372f | 1998-09-05 | Henrik Grubbström (Grubba) | | AC_CHECK_FUNCS(ualarm setitimer)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
9b372f | 1998-09-05 | Henrik Grubbström (Grubba) | | if test "x$ac_cv_func_ualarm" = "xyes"; then
AC_MSG_CHECKING(no of arguments to ualarm)
AC_CACHE_VAL(pike_cv_ualarm_takes_two_args,
[
AC_TRY_COMPILE([
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif /* HAVE_UNISTD_H */
],[
|
e16ff5 | 1996-12-05 | Fredrik Hübinette (Hubbe) | | ualarm(0,0);
|
9b372f | 1998-09-05 | Henrik Grubbström (Grubba) | | ],pike_cv_ualarm_takes_two_args=yes,pike_cv_ualarm_takes_two_args=no)
])
if test "$pike_cv_ualarm_takes_two_args" = yes; then
AC_MSG_RESULT(2)
AC_DEFINE(UALARM_TAKES_TWO_ARGS)
else
AC_MSG_RESULT(1)
fi
fi
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
d7be5b | 1997-01-28 | Fredrik Hübinette (Hubbe) | | ########################################################################
|
2ee669 | 1999-01-07 | Fredrik Hübinette (Hubbe) | | AC_MSG_CHECKING(stack direction)
AC_CACHE_VAL(pike_cv_hardware_stack_direction,
[
|
6b15b7 | 2001-01-19 | Henrik Grubbström (Grubba) | | AC_TRY_RUN([
|
46d5c5 | 2000-02-03 | Henrik Grubbström (Grubba) | | #include <stdio.h>
|
2ee669 | 1999-01-07 | Fredrik Hübinette (Hubbe) | | static int find_stack_direction(void *foo)
{
if (((void *)&foo) > foo) {
return 1;
} else {
return -1;
}
}
|
46d5c5 | 2000-02-03 | Henrik Grubbström (Grubba) | | int main() { void *bar; exit( find_stack_direction(&bar) > 0); }
|
6b15b7 | 2001-01-19 | Henrik Grubbström (Grubba) | | ], [ pike_cv_hardware_stack_direction=down
], [ pike_cv_hardware_stack_direction=up
], [
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN([defaulting to down.])
|
6b15b7 | 2001-01-19 | Henrik Grubbström (Grubba) | | pike_cv_hardware_stack_direction=down
])
|
2ee669 | 1999-01-07 | Fredrik Hübinette (Hubbe) | | ])
AC_MSG_RESULT($pike_cv_hardware_stack_direction)
if grep STACK_DIRECTION confdefs.h >/dev/null 2>&1; then
:
else
if test "x$pike_cv_hardware_stack_direction" = "xup" ; then
AC_DEFINE(STACK_DIRECTION, 1)
else
AC_DEFINE(STACK_DIRECTION, -1)
fi
fi
|
07513e | 1996-10-04 | Fredrik Hübinette (Hubbe) | | ########################################################################
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | AC_MSG_CHECKING(byteorder)
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | AC_CACHE_VAL(pike_cv_hardware_byteorder,
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | [
|
c6f4a8 | 2002-01-27 | Martin Stjernholm | | if test "x$enable_binary" = "xno"; then
pike_cv_hardware_byteorder=0
else
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | AC_TRY_RUN([
#include <stdio.h>
int main()
{
|
5c8e89 | 1995-10-29 | Fredrik Hübinette (Hubbe) | | #if SIZEOF_INT == 4
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | #define T int
#else
#define T long
#endif
FILE *f;
T a;
int e;
for(e=0;e<sizeof(T);e++)
((char *)&a)[e]=(e+1) % 10;
f=fopen("conftest.out.2","w");
for(e=0;e<sizeof(T);e++)
{
fprintf(f,"%d",(int)(a & 255));
a>>=8;
}
fprintf(f,"\n");
fclose(f);
return 0;
}],
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | pike_cv_hardware_byteorder=`cat conftest.out.2`
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | ,
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | pike_cv_hardware_byteorder=0
|
75920f | 1997-12-28 | Fredrik Hübinette (Hubbe) | | ,
pike_cv_hardware_byteorder=0
|
c6f4a8 | 2002-01-27 | Martin Stjernholm | | )
fi
])
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | AC_MSG_RESULT($pike_cv_hardware_byteorder)
|
71f3a2 | 1998-11-22 | Fredrik Hübinette (Hubbe) | | AC_DEFINE_UNQUOTED(PIKE_BYTEORDER,$pike_cv_hardware_byteorder)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
6a3647 | 2000-12-19 | Marcus Comstedt | | ########################################################################
AC_MSG_CHECKING(INT32 alignment)
AC_CACHE_VAL(pike_cv_hardware_alignment,
[
|
c6f4a8 | 2002-01-27 | Martin Stjernholm | | if test "x$enable_binary" = "xno"; then
pike_cv_hardware_alignment=4
else
|
6a3647 | 2000-12-19 | Marcus Comstedt | | AC_TRY_RUN([
#include <stdio.h>
#if SIZEOF_SHORT >= 4
#define INT32 short
#else
#if SIZEOF_INT >= 4
#define INT32 int
#else
#define INT32 long
#endif
#endif
struct x { char a; INT32 b; };
int main(int argc, char *argv[])
{
FILE f;
struct x x;
if(!(f=fopen("conftest.out.2","w")))
return 1;
fprintf(f, "%u\n", (unsigned int)(((char *)&x.b)-((char*)&x)));
fclose(f);
return 0;
}],
pike_cv_hardware_alignment=`cat conftest.out.2`,
pike_cv_hardware_alignment=4,
pike_cv_hardware_alignment=4
|
c6f4a8 | 2002-01-27 | Martin Stjernholm | | )
fi
])
|
6a3647 | 2000-12-19 | Marcus Comstedt | |
AC_MSG_RESULT($pike_cv_hardware_alignment)
AC_DEFINE_UNQUOTED(PIKE_INT32_ALIGNMENT,$pike_cv_hardware_alignment)
|
ef6d66 | 2002-04-07 | Martin Stjernholm | | #############################################################################
## Check if we should default to --with-machine-code
#############################################################################
if test "$with_machine_code" = "no"; then :; else
AC_MSG_CHECKING(machine code architecture)
AC_CACHE_VAL(pike_cv_machine_code_arch, [
pike_cv_machine_code_arch=unknown
AC_TRY_COMPILE([
#if !defined(__i386__) && !defined(__i386)
#error Not ia32 architecture
#endif
], [], [pike_cv_machine_code_arch=ia32], [])
AC_TRY_COMPILE([
#if !defined(sparc) && !defined(__sparc__) && !defined(__sparc)
#error Not sparc architecture
#endif
], [], [pike_cv_machine_code_arch=sparc], [])
AC_TRY_COMPILE([
|
320583 | 2002-04-08 | Marcus Comstedt | | #if !defined(__ppc__) && !defined(__powerpc__) && !defined(_POWER)
|
ef6d66 | 2002-04-07 | Martin Stjernholm | | #error Not ppc32 architecture
#endif
], [], [pike_cv_machine_code_arch=ppc32], [])
])
AC_MSG_RESULT($pike_cv_machine_code_arch)
if test "x$pike_cv_machine_code_arch" = xunknown ; then
with_machine_code="no"
else
with_machine_code="yes"
AC_DEFINE(PIKE_USE_MACHINE_CODE)
fi
fi
|
7a6404 | 2001-08-15 | Marcus Comstedt | | ########################################################################
if test yes = "$with_machine_code"; then
AC_MSG_CHECKING(register name convention)
AC_CACHE_VAL(pike_cv_cpu_reg_prefix,
[
for pike_cv_cpu_reg_prefix in "default" "" "r" "%%" "%%r" "unknown"; do
AC_TRY_COMPILE([
#define REGPREFIX "$pike_cv_cpu_reg_prefix"
], [
|
320583 | 2002-04-08 | Marcus Comstedt | | #if defined(__ppc__) || defined(__powerpc__) || defined(_POWER)
|
7a6404 | 2001-08-15 | Marcus Comstedt | | __asm__ __volatile__(" li "REGPREFIX"11,1");
#else
|
a92414 | 2002-11-18 | Henrik Grubbström (Grubba) | | ; /* Do not need to find out */
|
7a6404 | 2001-08-15 | Marcus Comstedt | | #endif
],[break])
done
])
case "$pike_cv_cpu_reg_prefix" in
default|unknown) AC_MSG_RESULT($pike_cv_cpu_reg_prefix);;
*) AC_MSG_RESULT(${pike_cv_cpu_reg_prefix}0)
AC_DEFINE_UNQUOTED(PIKE_CPU_REG_PREFIX,"$pike_cv_cpu_reg_prefix");;
esac
else :; fi
|
05030b | 1998-11-18 | Marcus Comstedt | | ########################################################################
MY_CHECK_FUNCTION(fork,
[
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
|
1a3f88 | 2000-08-21 | Henrik Grubbström (Grubba) | | ], [
|
05030b | 1998-11-18 | Marcus Comstedt | | exit(fork()==-1);
|
1a3f88 | 2000-08-21 | Henrik Grubbström (Grubba) | | ])
|
a3c9a7 | 2000-10-13 | Fredrik Hübinette (Hubbe) | |
########################################################################
MY_CHECK_FUNCTION(PTHREAD_MUTEX_RECURSIVE,
[
#include <pthread.h>
], [
PTHREAD_MUTEX_RECURSIVE;
exit(0);
])
########################################################################
MY_CHECK_FUNCTION(PTHREAD_MUTEX_RECURSIVE_NP,
[
#include <pthread.h>
], [
PTHREAD_MUTEX_RECURSIVE_NP;
exit(0);
])
|
4bcc44 | 1998-07-22 | Fredrik Hübinette (Hubbe) | | ########################################################################
MY_CHECK_FUNCTION(fpsetmask,
[
#include <math.h>
#ifdef HAVE_FLOATINGPOINT_H
#include <floatingpoint.h>
#endif
#ifdef HAVE_IEEEFP_H
#include <ieeefp.h>
#endif
|
1a3f88 | 2000-08-21 | Henrik Grubbström (Grubba) | | ], [
|
4bcc44 | 1998-07-22 | Fredrik Hübinette (Hubbe) | | fpsetmask(0);
exit(0);
|
1a3f88 | 2000-08-21 | Henrik Grubbström (Grubba) | | ])
|
07513e | 1996-10-04 | Fredrik Hübinette (Hubbe) | | ########################################################################
|
b36a45 | 2000-03-28 | Henrik Grubbström (Grubba) | | MY_CHECK_FUNCTION(fpsetround,
[
#include <math.h>
#ifdef HAVE_FLOATINGPOINT_H
#include <floatingpoint.h>
#endif
#ifdef HAVE_IEEEFP_H
#include <ieeefp.h>
#endif
#ifndef FP_RN
#define FP_RN 0
#endif /* FP_RN */
|
1a3f88 | 2000-08-21 | Henrik Grubbström (Grubba) | | ], [
|
b36a45 | 2000-03-28 | Henrik Grubbström (Grubba) | | fpsetround(FP_RN);
exit(0);
|
1a3f88 | 2000-08-21 | Henrik Grubbström (Grubba) | | ])
|
b36a45 | 2000-03-28 | Henrik Grubbström (Grubba) | | ########################################################################
|
e1184f | 2001-01-24 | Marcus Comstedt | | MY_CHECK_FUNCTION(isless,
[
#include <math.h>
#ifdef HAVE_FLOATINGPOINT_H
#include <floatingpoint.h>
#endif
#ifdef HAVE_IEEEFP_H
#include <ieeefp.h>
#endif
], [
int t = isless(0.0, 0.0);
exit(0);
])
########################################################################
|
07513e | 1996-10-04 | Fredrik Hübinette (Hubbe) | |
|
de1608 | 1997-06-03 | Fredrik Hübinette (Hubbe) | | MY_CHECK_FUNCTION(dlopen,
[
#include <dlfcn.h>
|
1a3f88 | 2000-08-21 | Henrik Grubbström (Grubba) | | ], [
|
de1608 | 1997-06-03 | Fredrik Hübinette (Hubbe) | | dlopen(0, 0);
exit(0);
|
1a3f88 | 2000-08-21 | Henrik Grubbström (Grubba) | | ])
|
4bcc44 | 1998-07-22 | Fredrik Hübinette (Hubbe) | | ########################################################################
|
de1608 | 1997-06-03 | Fredrik Hübinette (Hubbe) | |
|
c411dc | 1997-04-21 | Fredrik Hübinette (Hubbe) | | MY_CHECK_FUNCTION(ldexp,
[
#include <math.h>
|
1a3f88 | 2000-08-21 | Henrik Grubbström (Grubba) | | ], [
|
c411dc | 1997-04-21 | Fredrik Hübinette (Hubbe) | | double x;
int p;
for(x=0.0;x<2.0;x+=1.0/64.0)
for(p=-6;p<7;p++)
if(ldexp(x,p) != x*pow(2.0, (double)p))
exit(1);
exit(0);
|
1a3f88 | 2000-08-21 | Henrik Grubbström (Grubba) | | ])
|
c411dc | 1997-04-21 | Fredrik Hübinette (Hubbe) | |
|
22c21e | 1999-06-19 | Fredrik Hübinette (Hubbe) | | ########################################################################
MY_CHECK_FUNCTION(rint,
[
#include <math.h>
|
b36a45 | 2000-03-28 | Henrik Grubbström (Grubba) | | #ifdef HAVE_FLOATINGPOINT_H
#include <floatingpoint.h>
#endif
#ifdef HAVE_IEEEFP_H
#include <ieeefp.h>
#endif /* HAVE_IEEEFP_H */
|
1a3f88 | 2000-08-21 | Henrik Grubbström (Grubba) | | ], [
|
b36a45 | 2000-03-28 | Henrik Grubbström (Grubba) | | #ifdef HAVE_FPSETROUND
/* Round to nearest */
#ifndef FP_RN
#define FP_RN 0
#endif /* FP_RN */
fpsetround(FP_RN);
#endif /* HAVE_FPSETROUND */
|
22c21e | 1999-06-19 | Fredrik Hübinette (Hubbe) | | if(rint(0.1) != 0.0 ||
rint(0.6) != 1.0) exit(1);
exit(0);
|
1a3f88 | 2000-08-21 | Henrik Grubbström (Grubba) | | ])
|
22c21e | 1999-06-19 | Fredrik Hübinette (Hubbe) | |
|
c411dc | 1997-04-21 | Fredrik Hübinette (Hubbe) | | ########################################################################
MY_CHECK_FUNCTION(frexp,
[
#include <math.h>
|
1a3f88 | 2000-08-21 | Henrik Grubbström (Grubba) | | ], [
|
c411dc | 1997-04-21 | Fredrik Hübinette (Hubbe) | | double x,y;
|
1a631e | 1997-04-22 | Fredrik Hübinette (Hubbe) | | int p,e;
|
c411dc | 1997-04-21 | Fredrik Hübinette (Hubbe) | |
|
1a631e | 1997-04-22 | Fredrik Hübinette (Hubbe) | | x=frexp(1.0, &e);
|
3b7ea3 | 1998-07-22 | Fredrik Hübinette (Hubbe) | | if(x * pow(2.0,(double)e) != 1.0) exit(3);
|
1a631e | 1997-04-22 | Fredrik Hübinette (Hubbe) | |
p=-7;
|
c411dc | 1997-04-21 | Fredrik Hübinette (Hubbe) | | for(x=3.0/4.0*pow(2.0,(double)p);x<50000.0;x*=2.0,p++)
{
if(frexp(x, &e)!=3.0/4.0) exit(1);
|
1a631e | 1997-04-22 | Fredrik Hübinette (Hubbe) | | if(e!=p) exit(2);
|
c411dc | 1997-04-21 | Fredrik Hübinette (Hubbe) | | }
exit(0);
|
1a3f88 | 2000-08-21 | Henrik Grubbström (Grubba) | | ])
|
c411dc | 1997-04-21 | Fredrik Hübinette (Hubbe) | |
|
964949 | 1998-02-27 | Fredrik Hübinette (Hubbe) | | #############################################################################
MY_CHECK_FUNCTION(GetSystemTimeAsFileTime,
[
|
25e474 | 2002-10-13 | Xavier Beaudouin | | #ifdef HAVE_WINDOWS_H
|
964949 | 1998-02-27 | Fredrik Hübinette (Hubbe) | | #include <windows.h>
|
25e474 | 2002-10-13 | Xavier Beaudouin | | #endif
#ifdef HAVE_WINBASE_H
|
964949 | 1998-02-27 | Fredrik Hübinette (Hubbe) | | #include <winbase.h>
|
25e474 | 2002-10-13 | Xavier Beaudouin | | #endif
|
1a3f88 | 2000-08-21 | Henrik Grubbström (Grubba) | | ], [
|
964949 | 1998-02-27 | Fredrik Hübinette (Hubbe) | | FILETIME f;
GetSystemTimeAsFileTime(&f);
exit(0);
])
#############################################################################
MY_CHECK_FUNCTION(gethostname,
[
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef HAVE_WINSOCK_H
#include <winsock.h>
#endif
|
1a3f88 | 2000-08-21 | Henrik Grubbström (Grubba) | | ], [
|
964949 | 1998-02-27 | Fredrik Hübinette (Hubbe) | | char buffer[10000];
char *x=gethostname(buffer,sizeof(buffer));
exit(0);
])
#############################################################################
MY_CHECK_FUNCTION(strcoll,
[
#include <string.h>
#include <locale.h>
|
1a3f88 | 2000-08-21 | Henrik Grubbström (Grubba) | | ], [
|
964949 | 1998-02-27 | Fredrik Hübinette (Hubbe) | | setlocale(LC_CTYPE, "ISO-8859-1");
exit(strcoll("abc", "def") >= 0 ||
strcoll("ABC", "DEF") >= 0 ||
strcoll("ABC", "ABCD") >= 0 ||
strcoll("ABCD", "ABC") <= 0 ||
strcoll("*^#", "*^#") != 0 ||
strcoll("123", "456") >= 0);
])
|
c411dc | 1997-04-21 | Fredrik Hübinette (Hubbe) | | ########################################################################
MY_CHECK_FUNCTION(memmem,
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | [
#include <string.h>
char *a="foo bar gazonk";
char *b="foo";
char *c="bar";
char *d="gazonk";
|
1a3f88 | 2000-08-21 | Henrik Grubbström (Grubba) | | ], [
|
c46396 | 1998-09-27 | Henrik Grubbström (Grubba) | | if(((char *)memmem(b,strlen(b),a,strlen(a)))!=a ||
((char *)memmem(c,strlen(c),a,strlen(a)))!=(a+4) ||
((char *)memmem(d,strlen(d),a,strlen(a)))!=(a+8) ||
((char *)memmem(d,0,a,strlen(a)))!=a ||
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | memmem(d,strlen(d)+1,a,strlen(a))!=0)
exit(1);
exit(0);
|
c411dc | 1997-04-21 | Fredrik Hübinette (Hubbe) | | ])
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
c411dc | 1997-04-21 | Fredrik Hübinette (Hubbe) | | ########################################################################
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
7a5e47 | 1999-11-22 | Fredrik Hübinette (Hubbe) | | MY_CHECK_FUNCTION(memcpy,
[
#include <string.h>
char *a="foo bar gazonk";
char foo[23];
|
1a3f88 | 2000-08-21 | Henrik Grubbström (Grubba) | | ], [
|
7a5e47 | 1999-11-22 | Fredrik Hübinette (Hubbe) | | memcpy(foo, a, strlen(a)+1);
memcpy(foo, a+4, 3);
if(strcmp(foo,"bar bar gazonk")) exit(1);
exit(0);
])
########################################################################
MY_CHECK_FUNCTION(memset,
[
|
c4dc22 | 2000-11-25 | Henrik Grubbström (Grubba) | | #ifdef HAVE_STDDEF_H
#include <stddef.h>
#endif /* HAVE_STDDEF_H */
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif /* HAVE_SYS_TYPES_H */
|
5a469f | 2001-04-20 | Henrik Grubbström (Grubba) | | #ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif /* HAVE_STDLIB_H */
|
c4dc22 | 2000-11-25 | Henrik Grubbström (Grubba) | | #include <stdio.h>
|
7a5e47 | 1999-11-22 | Fredrik Hübinette (Hubbe) | | #include <string.h>
char foo[23];
|
0e85fb | 2000-08-28 | Henrik Grubbström (Grubba) | |
struct pike_string {
int refs;
int size_shift;
ptrdiff_t len;
size_t hval;
struct pike_string *next;
char str[1];
};
struct pike_string *begin_shared_string(int len)
{
|
1bc8c3 | 2001-04-17 | Henrik Grubbström (Grubba) | | return (struct pike_string *)malloc(sizeof(struct pike_string) + len);
|
0e85fb | 2000-08-28 | Henrik Grubbström (Grubba) | | }
|
1a3f88 | 2000-08-21 | Henrik Grubbström (Grubba) | | ], [
|
534170 | 2000-08-28 | Henrik Grubbström (Grubba) | | int i;
|
0e85fb | 2000-08-28 | Henrik Grubbström (Grubba) | | struct pike_string *str;
|
c4dc22 | 2000-11-25 | Henrik Grubbström (Grubba) | | ptrdiff_t len;
|
0e85fb | 2000-08-28 | Henrik Grubbström (Grubba) | |
|
7a5e47 | 1999-11-22 | Fredrik Hübinette (Hubbe) | | memset(foo, 0, 11);
memset(foo, 'a', 10);
memset(foo, 'b', 5);
|
1bc8c3 | 2001-04-17 | Henrik Grubbström (Grubba) | | fprintf(stderr, "1\n");
|
c4dc22 | 2000-11-25 | Henrik Grubbström (Grubba) | | if(strcmp(foo,"bbbbbaaaaa")) {
exit(1);
}
|
534170 | 2000-08-28 | Henrik Grubbström (Grubba) | | memset(foo, 0, 6);
|
1bc8c3 | 2001-04-17 | Henrik Grubbström (Grubba) | | fprintf(stderr, "2\n");
|
534170 | 2000-08-28 | Henrik Grubbström (Grubba) | | for (i=6; i--;) {
|
c4dc22 | 2000-11-25 | Henrik Grubbström (Grubba) | | if (foo[i]) {
exit(1);
}
|
534170 | 2000-08-28 | Henrik Grubbström (Grubba) | | }
|
08d51f | 2000-08-28 | Henrik Grubbström (Grubba) | | memset(foo+1, 1, 6);
|
1bc8c3 | 2001-04-17 | Henrik Grubbström (Grubba) | | fprintf(stderr, "3\n");
|
08d51f | 2000-08-28 | Henrik Grubbström (Grubba) | | for (i=6; i--;) {
|
c4dc22 | 2000-11-25 | Henrik Grubbström (Grubba) | | if (foo[i+1] != 1) {
exit(1);
}
|
08d51f | 2000-08-28 | Henrik Grubbström (Grubba) | | }
memset(foo+2, 0, 6);
|
1bc8c3 | 2001-04-17 | Henrik Grubbström (Grubba) | | fprintf(stderr, "4\n");
|
08d51f | 2000-08-28 | Henrik Grubbström (Grubba) | | for (i=6; i--;) {
|
c4dc22 | 2000-11-25 | Henrik Grubbström (Grubba) | | if (foo[i+2]) {
exit(1);
}
|
08d51f | 2000-08-28 | Henrik Grubbström (Grubba) | | }
memset(foo+3, 1, 6);
|
1bc8c3 | 2001-04-17 | Henrik Grubbström (Grubba) | | fprintf(stderr, "5\n");
|
08d51f | 2000-08-28 | Henrik Grubbström (Grubba) | | for (i=6; i--;) {
|
c4dc22 | 2000-11-25 | Henrik Grubbström (Grubba) | | if (foo[i+3] != 1) {
exit(1);
}
|
08d51f | 2000-08-28 | Henrik Grubbström (Grubba) | | }
|
d21a45 | 2000-08-28 | Henrik Grubbström (Grubba) | | memset(foo+4, 0, 6);
|
1bc8c3 | 2001-04-17 | Henrik Grubbström (Grubba) | | fprintf(stderr, "6\n");
|
d21a45 | 2000-08-28 | Henrik Grubbström (Grubba) | | for (i=6; i--;) {
|
c4dc22 | 2000-11-25 | Henrik Grubbström (Grubba) | | if (foo[i+4]) {
exit(1);
}
|
d21a45 | 2000-08-28 | Henrik Grubbström (Grubba) | | }
memset(foo+5, 1, 6);
|
1bc8c3 | 2001-04-17 | Henrik Grubbström (Grubba) | | fprintf(stderr, "7\n");
|
d21a45 | 2000-08-28 | Henrik Grubbström (Grubba) | | for (i=6; i--;) {
|
c4dc22 | 2000-11-25 | Henrik Grubbström (Grubba) | | if (foo[i+5] != 1) {
exit(1);
}
|
d21a45 | 2000-08-28 | Henrik Grubbström (Grubba) | | }
memset(foo+6, 0, 6);
|
1bc8c3 | 2001-04-17 | Henrik Grubbström (Grubba) | | fprintf(stderr, "8\n");
|
d21a45 | 2000-08-28 | Henrik Grubbström (Grubba) | | for (i=6; i--;) {
|
c4dc22 | 2000-11-25 | Henrik Grubbström (Grubba) | | if (foo[i+6]) {
exit(1);
}
|
d21a45 | 2000-08-28 | Henrik Grubbström (Grubba) | | }
memset(foo+7, 1, 6);
|
1bc8c3 | 2001-04-17 | Henrik Grubbström (Grubba) | | fprintf(stderr, "9\n");
|
d21a45 | 2000-08-28 | Henrik Grubbström (Grubba) | | for (i=6; i--;) {
|
c4dc22 | 2000-11-25 | Henrik Grubbström (Grubba) | | if (foo[i+7] != 1) {
exit(1);
}
|
d21a45 | 2000-08-28 | Henrik Grubbström (Grubba) | | }
|
0e85fb | 2000-08-28 | Henrik Grubbström (Grubba) | |
len = 6;
str = begin_shared_string(len);
|
1bc8c3 | 2001-04-17 | Henrik Grubbström (Grubba) | | fprintf(stderr, "string start\n");
|
0e85fb | 2000-08-28 | Henrik Grubbström (Grubba) | | if (!str) exit(1);
for (i=len; i--;) {
str->str[i] = ~0;
}
|
c4dc22 | 2000-11-25 | Henrik Grubbström (Grubba) | | memset(str->str, 0, len);
|
1bc8c3 | 2001-04-17 | Henrik Grubbström (Grubba) | | fprintf(stderr, "string end\n");
|
0e85fb | 2000-08-28 | Henrik Grubbström (Grubba) | | for (i = len; i--;) {
|
c4dc22 | 2000-11-25 | Henrik Grubbström (Grubba) | | if (str->str[i]) {
exit(1);
}
|
0e85fb | 2000-08-28 | Henrik Grubbström (Grubba) | | }
free(str);
|
7a5e47 | 1999-11-22 | Fredrik Hübinette (Hubbe) | | exit(0);
])
########################################################################
|
c411dc | 1997-04-21 | Fredrik Hübinette (Hubbe) | | MY_CHECK_FUNCTION(memmove,
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | [
#include <string.h>
char buf[100];
|
1a3f88 | 2000-08-21 | Henrik Grubbström (Grubba) | | ], [
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | strcpy(buf,"foo bar gazonk elefantsnabel.");
if(strcmp(buf,"foo bar gazonk elefantsnabel.")) exit(1);
|
cb2256 | 1995-10-11 | Fredrik Hübinette (Hubbe) | | memmove(buf,buf+1,7);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | if(strcmp(buf,"oo bar gazonk elefantsnabel.")) exit(1);
memmove(buf+1,buf+1,9);
if(strcmp(buf,"oo bar gazonk elefantsnabel.")) exit(1);
memmove(buf+1,buf,11);
if(strcmp(buf,"ooo bar gaznk elefantsnabel.")) exit(1);
exit(0);
|
c411dc | 1997-04-21 | Fredrik Hübinette (Hubbe) | | ])
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
07513e | 1996-10-04 | Fredrik Hübinette (Hubbe) | | ########################################################################
|
c411dc | 1997-04-21 | Fredrik Hübinette (Hubbe) | | MY_CHECK_FUNCTION(isspace,
[
#include <ctype.h>
|
1a3f88 | 2000-08-21 | Henrik Grubbström (Grubba) | | ], [
|
c411dc | 1997-04-21 | Fredrik Hübinette (Hubbe) | | if(isspace(' ')) exit(0);
exit(1);
])
#############################################################################
|
85f59e | 1998-01-08 | Fredrik Hübinette (Hubbe) | | AC_MSG_CHECKING(if we can declare environ)
AC_CACHE_VAL(pike_cv_declare_environ,[
AC_TRY_COMPILE([
#include <stdlib.h>
],[
extern char **environ;
exit(0);
],pike_cv_declare_environ=yes,pike_cv_declare_environ=no,pike_cv_declare_environ=yes)
])
AC_MSG_RESULT($pike_cv_declare_environ)
if test "x$pike_cv_declare_environ" = xyes ; then
AC_DEFINE(DECLARE_ENVIRON)
fi
#############################################################################
|
c411dc | 1997-04-21 | Fredrik Hübinette (Hubbe) | |
|
9dd220 | 1998-05-17 | Henrik Grubbström (Grubba) | | AC_MSG_CHECKING([for union wait (old BSD convention)])
AC_CACHE_VAL(pike_cv_union_wait, [ AC_TRY_COMPILE([
#ifdef HAVE_SYS_WAIT_H
#include <sys/wait.h>
|
d6980f | 1998-05-17 | Henrik Grubbström (Grubba) | | #endif /* HAVE_SYS_WAIT_H */
|
9dd220 | 1998-05-17 | Henrik Grubbström (Grubba) | | ], [
union wait status;
exit(0);
], pike_cv_union_wait=yes, pike_cv_union_wait=no)
])
AC_MSG_RESULT($pike_cv_union_wait)
if test "x$pike_cv_union_wait" = "xyes" ; then
|
f37617 | 1998-05-22 | Henrik Grubbström (Grubba) | | AC_MSG_CHECKING([whether union wait is really needed])
AC_CACHE_VAL(pike_cv_union_wait_needed, [ AC_TRY_COMPILE([
#ifdef HAVE_SYS_WAIT_H
#include <sys/wait.h>
#endif /* HAVE_SYS_WAIT_H */
], [
int status;
return WIFEXITED(status) || 0;
], pike_cv_union_wait_needed=no, pike_cv_union_wait_needed=yes)
])
|
efad7a | 1998-10-28 | Henrik Grubbström (Grubba) | | AC_MSG_RESULT($pike_cv_union_wait_needed)
|
f37617 | 1998-05-22 | Henrik Grubbström (Grubba) | | if test "x$pike_cv_union_wait_needed" = "xyes" ; then
AC_DEFINE(HAVE_UNION_WAIT)
else :; fi
else :; fi
|
9dd220 | 1998-05-17 | Henrik Grubbström (Grubba) | |
#############################################################################
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | AC_MSG_CHECKING(how to extract an unsigned char)
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | AC_CACHE_VAL(pike_cv_method_extract_uchar,
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | [
AC_TRY_RUN([
|
cb2256 | 1995-10-11 | Fredrik Hübinette (Hubbe) | | int main()
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
char i,*p;
i=-10;
p=&i;
if(*(unsigned char *)(p)!= 0x100 - 10) exit(1);
exit(0);
}
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | ],pike_cv_method_extract_uchar=by_cast,
|
75920f | 1997-12-28 | Fredrik Hübinette (Hubbe) | | pike_cv_method_extract_uchar=not_by_cast,
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | pike_cv_method_extract_uchar=not_by_cast)])
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | if test "$pike_cv_method_extract_uchar" = by_cast; then
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | AC_MSG_RESULT(by cast)
AC_DEFINE(EXTRACT_UCHAR_BY_CAST)
else
AC_MSG_RESULT(not by cast)
fi
|
07513e | 1996-10-04 | Fredrik Hübinette (Hubbe) | | ########################################################################
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | AC_MSG_CHECKING(how to extract a signed char)
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | AC_CACHE_VAL(pike_cv_method_extract_char,
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | [
AC_TRY_RUN([
|
cb2256 | 1995-10-11 | Fredrik Hübinette (Hubbe) | | int main()
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | {
char i,*p;
i=-10;
p=&i;
if(*(signed char *)(p)!= -10) exit(1);
exit(0);
}
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | ],pike_cv_method_extract_char=by_cast,
|
75920f | 1997-12-28 | Fredrik Hübinette (Hubbe) | | pike_cv_method_extract_char=not_by_cast,
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | pike_cv_method_extract_char=not_by_cast)])
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | if test "$pike_cv_method_extract_char" = by_cast; then
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | AC_MSG_RESULT(by cast)
AC_DEFINE(EXTRACT_CHAR_BY_CAST)
else
AC_MSG_RESULT(not by cast)
fi
|
9debfa | 1999-08-11 | Fredrik Hübinette (Hubbe) | | #############################################################################
|
4d036d | 2002-12-11 | Mirar (Pontus Hagland) | | AC_ARG_WITH(copt, MY_DESCR([--without-mmx], [disable MMX usage]), [], [with_mmx=])
|
ec2931 | 2001-03-19 | Mirar (Pontus Hagland) | | mmx_reason=' (no mmx.h found)'
|
4d036d | 2002-12-11 | Mirar (Pontus Hagland) | | if test "x$with_mmx" = xno; then
mmx_reason=' (--without-mmx)'
unset pike_cv_sys_has_working_mmx
else
|
b5cef8 | 2001-03-19 | Mirar (Pontus Hagland) | | if test "x$ac_cv_header_mmx_h" = xyes; then
|
27da5c | 1999-09-23 | Fredrik Noring | | AC_MSG_CHECKING(for working MMX)
|
ec2931 | 2001-03-19 | Mirar (Pontus Hagland) | | mmx_reason=' (mmx.h found, but mmx operations failed)'
|
9debfa | 1999-08-11 | Fredrik Hübinette (Hubbe) | |
|
c724c4 | 1999-08-12 | Henrik Grubbström (Grubba) | | AC_CACHE_VAL(pike_cv_sys_has_working_mmx,
[
AC_TRY_LINK([
|
ec2931 | 2001-03-19 | Mirar (Pontus Hagland) | | #ifdef HAVE_MMX_H
|
9debfa | 1999-08-11 | Fredrik Hübinette (Hubbe) | | #include <mmx.h>
|
ec2931 | 2001-03-19 | Mirar (Pontus Hagland) | | #endif
|
c724c4 | 1999-08-12 | Henrik Grubbström (Grubba) | | ],[
{
|
27da5c | 1999-09-23 | Fredrik Noring | | int try_use_mmx;
|
dd5074 | 1999-10-25 | Per Hedbor | | char a[8];
movq_m2r( *a, mm0 );
paddb_r2r( mm0, mm0 );
movq_r2m( mm0, *a );
|
27da5c | 1999-09-23 | Fredrik Noring | | try_use_mmx=mmx_ok();
|
c724c4 | 1999-08-12 | Henrik Grubbström (Grubba) | | }
|
ec2931 | 2001-03-19 | Mirar (Pontus Hagland) | | ],pike_cv_sys_has_working_mmx=yes,pike_cv_sys_has_working_mmx=no)
|
c724c4 | 1999-08-12 | Henrik Grubbström (Grubba) | | ])
|
9debfa | 1999-08-11 | Fredrik Hübinette (Hubbe) | |
|
c724c4 | 1999-08-12 | Henrik Grubbström (Grubba) | | AC_MSG_RESULT($pike_cv_sys_has_working_mmx)
|
9debfa | 1999-08-11 | Fredrik Hübinette (Hubbe) | |
|
e8f42f | 1999-08-12 | Henrik Grubbström (Grubba) | | if test "x$pike_cv_sys_has_working_mmx" = xyes ; then
AC_DEFINE(TRY_USE_MMX)
|
ec2931 | 2001-03-19 | Mirar (Pontus Hagland) | | mmx_reason=''
|
e8f42f | 1999-08-12 | Henrik Grubbström (Grubba) | | else :; fi
|
4d036d | 2002-12-11 | Mirar (Pontus Hagland) | |
if test "x$with_copt" = "xno"; then
PIKE_MSG_WARN([--without-mmx is advisable when using --without-copt.])
fi
|
e8f42f | 1999-08-12 | Henrik Grubbström (Grubba) | | else :; fi
|
4d036d | 2002-12-11 | Mirar (Pontus Hagland) | | fi
|
9debfa | 1999-08-11 | Fredrik Hübinette (Hubbe) | |
|
d30082 | 1998-02-27 | Marcus Comstedt | | #############################################################################
|
71b44e | 1998-06-05 | Fredrik Hübinette (Hubbe) | | AC_MSG_CHECKING(if float conversion can cause SIGFPE)
AC_CACHE_VAL(pike_cv_sys_idiot_sigfpe,
[
AC_TRY_RUN([
#include <math.h>
|
3b7ea3 | 1998-07-22 | Fredrik Hübinette (Hubbe) | | #ifdef HAVE_FLOATINGPOINT_H
#include <floatingpoint.h>
#endif
#ifdef HAVE_IEEEFP_H
#include <ieeefp.h>
#endif
|
c371d4 | 1998-06-07 | Simon Coggins | | float foo_float = 0.0;
|
71b44e | 1998-06-05 | Fredrik Hübinette (Hubbe) | | int main(int argc, char **argv)
{
|
c371d4 | 1998-06-07 | Simon Coggins | | float x=2.0, y=-128.0;
|
3b7ea3 | 1998-07-22 | Fredrik Hübinette (Hubbe) | | #ifdef HAVE_FPSETMASK
fpsetmask(0);
#endif
|
c371d4 | 1998-06-07 | Simon Coggins | | x = pow(2.0, -128.0);
foo_float = x;
if (x == 2.0) exit(1);
x = pow(2.0, 1024.0);
foo_float = x;
if(x == 2.0) exit(1);
|
71b44e | 1998-06-05 | Fredrik Hübinette (Hubbe) | | exit(0);
}
|
e33f4c | 1998-06-28 | Henrik Grubbström (Grubba) | | ],pike_cv_sys_idiot_sigfpe=no,pike_cv_sys_idiot_sigfpe=yes,
pike_cv_sys_idiot_sigfpe=yes)
|
71b44e | 1998-06-05 | Fredrik Hübinette (Hubbe) | | ])
if test $pike_cv_sys_idiot_sigfpe = yes ; then
AC_MSG_RESULT(yes)
|
c371d4 | 1998-06-07 | Simon Coggins | | IEEE_FLAG=no
if test "x${GCC-}" = xyes ; then
|
71b44e | 1998-06-05 | Fredrik Hübinette (Hubbe) | | AC_SYS_COMPILER_FLAG(-mieee, mieee, CFLAGS,[],IEEE_FLAG=yes)
|
c371d4 | 1998-06-07 | Simon Coggins | | else
|
71b44e | 1998-06-05 | Fredrik Hübinette (Hubbe) | | AC_SYS_COMPILER_FLAG(-ieee, ieee, CFLAGS,[],IEEE_FLAG=yes)
|
c371d4 | 1998-06-07 | Simon Coggins | | fi
TEST_IGNORE_SIGFPE=yes
|
71b44e | 1998-06-05 | Fredrik Hübinette (Hubbe) | |
|
c371d4 | 1998-06-07 | Simon Coggins | | if test $IEEE_FLAG = yes; then
AC_MSG_CHECKING(if float conversion is still broken)
AC_CACHE_VAL(pike_cv_sys_idiot_sigfpe_with_ieee,
|
71b44e | 1998-06-05 | Fredrik Hübinette (Hubbe) | | [
|
8aa31a | 1998-06-07 | Henrik Grubbström (Grubba) | | OLD_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS $OPTIMIZE"
|
71b44e | 1998-06-05 | Fredrik Hübinette (Hubbe) | | AC_TRY_RUN([
#include <math.h>
|
c371d4 | 1998-06-07 | Simon Coggins | |
|
3b7ea3 | 1998-07-22 | Fredrik Hübinette (Hubbe) | | #ifdef HAVE_FLOATINGPOINT_H
#include <floatingpoint.h>
#endif
#ifdef HAVE_IEEEFP_H
#include <ieeefp.h>
#endif
|
c371d4 | 1998-06-07 | Simon Coggins | | float foo_float = 0.0;
|
71b44e | 1998-06-05 | Fredrik Hübinette (Hubbe) | | int main(int argc, char **argv)
{
|
c371d4 | 1998-06-07 | Simon Coggins | | float x=2.0, y=-128.0;
|
3b7ea3 | 1998-07-22 | Fredrik Hübinette (Hubbe) | | #ifdef HAVE_FPSETMASK
fpsetmask(0);
#endif
|
c371d4 | 1998-06-07 | Simon Coggins | | x = pow(2.0, -128.0);
foo_float = x;
if (x == 2.0) exit(1);
x = pow(2.0, 1024.0);
foo_float = x;
if(x == 2.0) exit(1);
|
71b44e | 1998-06-05 | Fredrik Hübinette (Hubbe) | | exit(0);
}
|
e33f4c | 1998-06-28 | Henrik Grubbström (Grubba) | | ],pike_cv_sys_idiot_sigfpe_with_ieee=no,pike_cv_sys_idiot_sigfpe_with_ieee=yes,
pike_cv_sys_idiot_sigfpe_with_ieee=yes)
|
8aa31a | 1998-06-07 | Henrik Grubbström (Grubba) | | CFLAGS="$OLD_CFLAGS"
|
71b44e | 1998-06-05 | Fredrik Hübinette (Hubbe) | | ])
|
c371d4 | 1998-06-07 | Simon Coggins | | if test $pike_cv_sys_idiot_sigfpe_with_ieee = yes ; then
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
TEST_IGNORE_SIGFPE=no
fi
|
71b44e | 1998-06-05 | Fredrik Hübinette (Hubbe) | | fi # IEEE_FLAG
if test $TEST_IGNORE_SIGFPE = yes; then
AC_MSG_CHECKING(if ignoring SIGFPE helps)
AC_CACHE_VAL(pike_cv_sys_ignore_sigfpe,
[
|
8aa31a | 1998-06-07 | Henrik Grubbström (Grubba) | | OLD_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS $OPTIMIZE"
|
71b44e | 1998-06-05 | Fredrik Hübinette (Hubbe) | | AC_TRY_RUN([
|
8aa31a | 1998-06-07 | Henrik Grubbström (Grubba) | | #include <signal.h>
|
71b44e | 1998-06-05 | Fredrik Hübinette (Hubbe) | | #include <math.h>
int counter=0;
RETSIGTYPE func(void)
{
if(counter++>10) exit(7);
signal(SIGFPE,func);
}
|
c371d4 | 1998-06-07 | Simon Coggins | | float foo_float = 0.0;
|
71b44e | 1998-06-05 | Fredrik Hübinette (Hubbe) | | int main(int argc, char **argv)
{
|
c371d4 | 1998-06-07 | Simon Coggins | | float x=2.0, y=-128.0;
|
71b44e | 1998-06-05 | Fredrik Hübinette (Hubbe) | | signal(SIGFPE,func);
|
c371d4 | 1998-06-07 | Simon Coggins | | x = pow(2.0, -128.0);
foo_float = x;
if (x == 2.0) exit(1);
x = pow(2.0, 1024.0);
foo_float = x;
if(x == 2.0) exit(1);
|
71b44e | 1998-06-05 | Fredrik Hübinette (Hubbe) | | exit(0);
}
|
e33f4c | 1998-06-28 | Henrik Grubbström (Grubba) | | ],pike_cv_sys_ignore_sigfpe=yes,pike_cv_sys_ignore_sigfpe=no,
pike_cv_sys_ignore_sigfpe=yes)
|
8aa31a | 1998-06-07 | Henrik Grubbström (Grubba) | | CFLAGS="$OLD_CFLAGS"
|
71b44e | 1998-06-05 | Fredrik Hübinette (Hubbe) | | ])
if test "$pike_cv_sys_ignore_sigfpe" = yes; then
AC_MSG_RESULT(yes)
AC_DEFINE(IGNORE_SIGFPE)
else
AC_MSG_RESULT(no)
fi
fi # TEST_IGNORE_SIGFPE
else
AC_MSG_RESULT(no)
fi # pike_cv_sys_idiot_sigfpe
#############################################################################
|
5ff14f | 1998-05-25 | Marcus Comstedt | | define(float_check, [[
#include <math.h>
#define TY $1
#define TEST_$1
#define TEST_$2
#define EXPECTED_SIZE_float 4
#define EXPECTED_SIZE_double 8
void check(TY n, char *pf, char *pd)
{
int i;
char *p, *p2 = (char*)&n;
#ifdef TEST_float
p = pf;
#else
p = pd;
#endif
for(i=0; i<sizeof(TY); i++)
#ifdef TEST_BIG
if(p[i] != p2[i])
exit(1);
#else
if(p[i] != p2[sizeof(TY)-i-1])
exit(1);
#endif
}
int main()
{
if(sizeof(TY)!=EXPECTED_SIZE_$1)
exit(1);
check((TY)0.0, "\000\000\000\000", "\000\000\000\000\000\000\000\000");
check((TY)1.0, "\077\200\000\000", "\077\360\000\000\000\000\000\000");
check((TY)-1.0, "\277\200\000\000", "\277\360\000\000\000\000\000\000");
check((TY)2.0, "\100\000\000\000", "\100\000\000\000\000\000\000\000");
check((TY)1.5, "\077\300\000\000", "\077\370\000\000\000\000\000\000");
check((TY)0.032999999821186065673828125, "\075\007\053\002", "\077\240\345\140\100\000\000\000");
exit(0);
}
]])
AC_MSG_CHECKING(for type of float)
|
32cf26 | 2000-08-20 | Henrik Grubbström (Grubba) | | AC_CACHE_VAL(pike_cv_float_type, [
AC_TRY_RUN(float_check(float,BIG), pike_cv_float_type=ieee_big, [
AC_TRY_RUN(float_check(float,LITTLE), pike_cv_float_type=ieee_little,
pike_cv_float_type=not_ieee, pike_cv_float_type=not_ieee)
], [
|
1f958f | 2000-08-21 | Henrik Grubbström (Grubba) | | echo $ac_n "crosscompiling... $ac_c" 1>&6
|
32cf26 | 2000-08-20 | Henrik Grubbström (Grubba) | | # Use some magical constants...
cat > conftest.$ac_ext <<EOF
dnl This sometimes fails to find confdefs.h, for some reason.
dnl [#]line __oline__ "[$]0"
[#]line __oline__ "configure"
#include "confdefs.h"
#include <stdio.h>
float float_info[[]] = {
0.0,
14914788644012054221422592.0, 16305677175569252352.0,
0.0
};
EOF
if AC_TRY_EVAL(ac_compile); then
if test -f "conftest.$ac_objext"; then
if strings "conftest.$ac_objext" | grep "iEeE_bIg" >/dev/null; then
pike_cv_float_type=ieee_big
else
if strings "conftest.$ac_objext" | grep "EeEigIb_" >/dev/null; then
pike_cv_float_type=ieee_little
else
pike_cv_float_type=not_ieee
fi
fi
else
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN([Object file not found.])
|
32cf26 | 2000-08-20 | Henrik Grubbström (Grubba) | | pike_cv_float_type=not_ieee
fi
else
pike_cv_float_type=not_ieee
fi
|
fdb698 | 2000-08-20 | Henrik Grubbström (Grubba) | | rm -rf conftest*
|
32cf26 | 2000-08-20 | Henrik Grubbström (Grubba) | | ])
])
|
5ff14f | 1998-05-25 | Marcus Comstedt | | if test "$pike_cv_float_type" = ieee_big; then
AC_MSG_RESULT(IEEE big endian)
AC_DEFINE(FLOAT_IS_IEEE_BIG)
else
if test "$pike_cv_float_type" = ieee_little; then
AC_MSG_RESULT(IEEE little endian)
AC_DEFINE(FLOAT_IS_IEEE_LITTLE)
else
AC_MSG_RESULT(not IEEE)
fi
fi
AC_MSG_CHECKING(for type of double)
|
32cf26 | 2000-08-20 | Henrik Grubbström (Grubba) | | AC_CACHE_VAL(pike_cv_double_type, [
AC_TRY_RUN(float_check(double,BIG), pike_cv_double_type=ieee_big, [
AC_TRY_RUN(float_check(double,LITTLE), pike_cv_double_type=ieee_little,
pike_cv_double_type=not_ieee, pike_cv_double_type=not_ieee)
], [
|
1f958f | 2000-08-21 | Henrik Grubbström (Grubba) | | echo $ac_n "crosscompiling... $ac_c" 1>&6
|
32cf26 | 2000-08-20 | Henrik Grubbström (Grubba) | | # Use some magical constants...
cat > conftest.$ac_ext <<EOF
dnl This sometimes fails to find confdefs.h, for some reason.
dnl [#]line __oline__ "[$]0"
[#]line __oline__ "configure"
#include "confdefs.h"
#include <stdio.h>
double double_info[[]] = {
0.0,
12794738495187527498222028847205909954314554441725728393516969126669975252147490126864122090122288822751876426313291683594796075946303753742007913302630260537160845833197547903208108732031187791380480.0,
0.0
};
EOF
if AC_TRY_EVAL(ac_compile); then
if test -f "conftest.$ac_objext"; then
if strings "conftest.$ac_objext" | grep "iEeE_bIg" >/dev/null; then
pike_cv_double_type=ieee_big
else
if strings "conftest.$ac_objext" | grep "gIb_EeEi" >/dev/null; then
pike_cv_double_type=ieee_little
else
pike_cv_double_type=not_ieee
fi
fi
else
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN([Object file not found.])
|
32cf26 | 2000-08-20 | Henrik Grubbström (Grubba) | | pike_cv_float_type=not_ieee
fi
else
pike_cv_float_type=not_ieee
fi
|
fdb698 | 2000-08-20 | Henrik Grubbström (Grubba) | | rm -rf conftest*
|
32cf26 | 2000-08-20 | Henrik Grubbström (Grubba) | | ])
])
|
5ff14f | 1998-05-25 | Marcus Comstedt | | if test "$pike_cv_double_type" = ieee_big; then
AC_MSG_RESULT(IEEE big endian)
AC_DEFINE(DOUBLE_IS_IEEE_BIG)
else
if test "$pike_cv_double_type" = ieee_little; then
AC_MSG_RESULT(IEEE little endian)
AC_DEFINE(DOUBLE_IS_IEEE_LITTLE)
else
AC_MSG_RESULT(not IEEE)
fi
fi
#############################################################################
|
d30082 | 1998-02-27 | Marcus Comstedt | | AC_MSG_CHECKING(for volatile)
AC_CACHE_VAL(pike_cv_volatile,
[
AC_TRY_COMPILE([],[ volatile int foo=1;], pike_cv_volatile=yes,pike_cv_volatile=no)
])
if test "$pike_cv_volatile" = yes; then
AC_MSG_RESULT(yes)
AC_DEFINE(VOLATILE,volatile)
else
AC_MSG_RESULT(no)
AC_DEFINE(VOLATILE,)
fi
|
07513e | 1996-10-04 | Fredrik Hübinette (Hubbe) | | ########################################################################
|
93b808 | 1995-11-02 | Fredrik Hübinette (Hubbe) | |
|
61d3cf | 1998-02-27 | Marcus Comstedt | | AC_MSG_CHECKING(for sig_atomic_t)
AC_CACHE_VAL(ac_cv_type_sig_atomic_t,
[
AC_EGREP_CPP(sig_atomic_t, [
#ifdef HAVE_SIGNAL_H
#include <signal.h>
#endif
|
9c9bf2 | 2000-08-04 | Henrik Grubbström (Grubba) | | #ifdef HAVE_CRT_SIGNAL_H
#include <crt/signal.h>
#endif
|
61d3cf | 1998-02-27 | Marcus Comstedt | | #include <sys/types.h>
#if STDC_HEADERS
#include <stdlib.h>
#include <stddef.h>
#endif], ac_cv_type_sig_atomic_t=yes, ac_cv_type_sig_atomic_t=no)])
AC_MSG_RESULT($ac_cv_type_sig_atomic_t)
if test x"$ac_cv_type_sig_atomic_t" = xno; then
AC_DEFINE(sig_atomic_t, int)
else
:
fi
|
c8a4ce | 1995-11-20 | Fredrik Hübinette (Hubbe) | | AC_MSG_CHECKING(if signal handlers reset automatically)
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | AC_CACHE_VAL(pike_cv_sys_signal_oneshot,
|
93b808 | 1995-11-02 | Fredrik Hübinette (Hubbe) | | [
AC_TRY_RUN([
|
61d3cf | 1998-02-27 | Marcus Comstedt | | #ifdef HAVE_SIGNAL_H
|
93b808 | 1995-11-02 | Fredrik Hübinette (Hubbe) | | #include <signal.h>
|
61d3cf | 1998-02-27 | Marcus Comstedt | | #endif
#include <sys/types.h>
#if STDC_HEADERS
#include <stdlib.h>
#include <stddef.h>
#endif
|
450e9d | 2001-05-08 | Henrik Grubbström (Grubba) | | VOLATILE sig_atomic_t sigrun[2]= { 0, 0 };
|
607710 | 1999-05-15 | Henrik Grubbström (Grubba) | | RETSIGTYPE func(int sig)
{
write(2, "func called\n", sizeof("func called\n") - sizeof(""));
|
450e9d | 2001-05-08 | Henrik Grubbström (Grubba) | | sigrun[0] = -1;
|
607710 | 1999-05-15 | Henrik Grubbström (Grubba) | | }
|
93b808 | 1995-11-02 | Fredrik Hübinette (Hubbe) | |
int main()
{
#define sig SIGSEGV
#ifdef HAVE_SIGACTION
{
|
fb140c | 2002-04-07 | Marcus Comstedt | | static struct sigaction action;
|
93b808 | 1995-11-02 | Fredrik Hübinette (Hubbe) | | action.sa_handler= func;
sigfillset(&action.sa_mask);
#ifdef SA_INTERRUPT
action.sa_flags=SA_INTERRUPT;
#endif
sigaction(sig,&action,0);
}
#else
#ifdef HAVE_SIGVEC
{
|
fb140c | 2002-04-07 | Marcus Comstedt | | static struct sigvec action;
|
93b808 | 1995-11-02 | Fredrik Hübinette (Hubbe) | | action.sv_handler= func;
action.sv_mask=-1;
#ifdef SV_INTERRUPT
action.sv_flags=SV_INTERRUPT;
#endif
sigvec(sig,&action,0);
}
#else
signal(sig, func);
#endif
#endif
kill(getpid(), sig);
|
a3c9a7 | 2000-10-13 | Fredrik Hübinette (Hubbe) | | #ifdef HAVE_POLL
|
450e9d | 2001-05-08 | Henrik Grubbström (Grubba) | | while(!strlen((char *)sigrun)) poll(0,0,100);
|
a3c9a7 | 2000-10-13 | Fredrik Hübinette (Hubbe) | | #else
|
450e9d | 2001-05-08 | Henrik Grubbström (Grubba) | | while(!strlen((char *)sigrun)) sleep(1);
|
a3c9a7 | 2000-10-13 | Fredrik Hübinette (Hubbe) | | #endif
|
450e9d | 2001-05-08 | Henrik Grubbström (Grubba) | | sigrun[0]=0;
|
93b808 | 1995-11-02 | Fredrik Hübinette (Hubbe) | | kill(getpid(), sig);
|
a3c9a7 | 2000-10-13 | Fredrik Hübinette (Hubbe) | | #ifdef HAVE_POLL
|
450e9d | 2001-05-08 | Henrik Grubbström (Grubba) | | while(!strlen((char *)sigrun)) poll(0,0,100);
|
a3c9a7 | 2000-10-13 | Fredrik Hübinette (Hubbe) | | #else
|
450e9d | 2001-05-08 | Henrik Grubbström (Grubba) | | while(!strlen((char *)sigrun)) sleep(1);
|
a3c9a7 | 2000-10-13 | Fredrik Hübinette (Hubbe) | | #endif
|
450e9d | 2001-05-08 | Henrik Grubbström (Grubba) | | sigrun[0]=0;
|
93b808 | 1995-11-02 | Fredrik Hübinette (Hubbe) | | exit(0);
}
|
75920f | 1997-12-28 | Fredrik Hübinette (Hubbe) | | ],pike_cv_sys_signal_oneshot=no,pike_cv_sys_signal_oneshot=yes,pike_cv_sys_signal_oneshot=yes)])
|
93b808 | 1995-11-02 | Fredrik Hübinette (Hubbe) | |
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | if test "$pike_cv_sys_signal_oneshot" = yes; then
|
93b808 | 1995-11-02 | Fredrik Hübinette (Hubbe) | | AC_MSG_RESULT(yes)
AC_DEFINE(SIGNAL_ONESHOT)
else
AC_MSG_RESULT(no)
fi
|
07513e | 1996-10-04 | Fredrik Hübinette (Hubbe) | | ########################################################################
|
93b808 | 1995-11-02 | Fredrik Hübinette (Hubbe) | |
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | AC_MSG_CHECKING(available file descriptors)
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | AC_CACHE_VAL(pike_cv_max_open_fd,
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | [
|
c6f4a8 | 2002-01-27 | Martin Stjernholm | | if test "x$enable_binary" = "xno"; then
pike_cv_max_open_fd=256
else
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | AC_TRY_RUN([
#include <stdio.h>
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
#ifdef HAVE_SYS_RESOURCE_H
#include <sys/resource.h>
#endif
#ifndef MAX_FD
|
c0d65d | 2000-05-20 | Per Hedbor | | #define MAX_FD 65536
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | #endif
int main()
{
FILE *f;
|
f90e54 | 1995-08-17 | Fredrik Hübinette (Hubbe) | | long limit;
|
5c8e89 | 1995-10-29 | Fredrik Hübinette (Hubbe) | |
|
2a5096 | 1995-08-23 | Fredrik Hübinette (Hubbe) | | #if !defined(RLIMIT_NOFILE) && defined(RLIMIT_OFILE)
|
f90e54 | 1995-08-17 | Fredrik Hübinette (Hubbe) | | #define RLIMIT_NOFILE RLIMIT_OFILE
#endif
|
5c8e89 | 1995-10-29 | Fredrik Hübinette (Hubbe) | |
|
cb2256 | 1995-10-11 | Fredrik Hübinette (Hubbe) | | #if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | struct rlimit lim;
if(getrlimit(RLIMIT_NOFILE,&lim))
{
limit = MAX_FD;
}else{
|
f90e54 | 1995-08-17 | Fredrik Hübinette (Hubbe) | | if(lim.rlim_max == RLIM_INFINITY)
{
|
c0d65d | 2000-05-20 | Per Hedbor | | limit = 1024 * 1024 * 2; /* Noone needs more :-) */
|
f90e54 | 1995-08-17 | Fredrik Hübinette (Hubbe) | | }else{
limit=lim.rlim_max;
|
c0d65d | 2000-05-20 | Per Hedbor | | if(limit > 1024 * 1024 * 2) limit= 1024 * 1024 * 2;
|
f90e54 | 1995-08-17 | Fredrik Hübinette (Hubbe) | | }
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | }
#else
limit = MAX_FD;
#endif
f=fopen("conftest.out.2","w");
|
f90e54 | 1995-08-17 | Fredrik Hübinette (Hubbe) | | fprintf(f,"%ld\n",(long)limit);
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | fclose(f);
return 0;
}
],
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | pike_cv_max_open_fd=`cat conftest.out.2`
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | ,
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | pike_cv_max_open_fd=256
|
75920f | 1997-12-28 | Fredrik Hübinette (Hubbe) | | ,
pike_cv_max_open_fd=256
|
c6f4a8 | 2002-01-27 | Martin Stjernholm | | )
fi
])
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | AC_MSG_RESULT($pike_cv_max_open_fd)
AC_DEFINE_UNQUOTED(MAX_OPEN_FILEDESCRIPTORS,$pike_cv_max_open_fd)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
AC_MSG_CHECKING(full availability of struct rusage members)
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | AC_CACHE_VAL(pike_cv_func_getrusage_full,
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | [
AC_TRY_LINK([
#include <sys/time.h>
#ifdef HAVE_SYS_RUSAGE_H
#include <sys/rusage.h>
#endif
#include <sys/resource.h>
#ifndef RUSAGE_SELF
#define RUSAGE_SELF 0
#endif
],[
struct rusage rus;
long *v = (long *)main;
getrusage(RUSAGE_SELF, &rus);
*v++ = rus.ru_maxrss;
*v++ = rus.ru_ixrss;
*v++ = rus.ru_idrss;
*v++ = rus.ru_isrss;
*v++ = rus.ru_minflt;
*v++ = rus.ru_majflt;
*v++ = rus.ru_nswap;
*v++ = rus.ru_inblock;
*v++ = rus.ru_oublock;
*v++ = rus.ru_msgsnd;
*v++ = rus.ru_msgrcv;
*v++ = rus.ru_nsignals;
*v++ = rus.ru_nvcsw;
*v++ = rus.ru_nivcsw;
],
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | pike_cv_func_getrusage_full=yes
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | ,
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | pike_cv_func_getrusage_full=no
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | )])
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | if test "$pike_cv_func_getrusage_full" = yes; then
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | AC_MSG_RESULT(all there)
else
AC_MSG_RESULT(getrusage is restricted)
AC_DEFINE(GETRUSAGE_RESTRICTED)
fi
|
07513e | 1996-10-04 | Fredrik Hübinette (Hubbe) | | ########################################################################
|
d20354 | 1998-06-10 | Fredrik Hübinette (Hubbe) | | #
# IRIX also has procfs support, but it it different, a separate test
# should be made. /Hubbe
#
|
07513e | 1996-10-04 | Fredrik Hübinette (Hubbe) | |
|
221347 | 1997-09-16 | Henrik Grubbström (Grubba) | | if test "$ac_cv_header_sys_procfs_h" = "yes"; then
AC_MSG_CHECKING(getrusage() through procfs)
AC_CACHE_VAL(pike_cv_getrusage_procfs, [
AC_TRY_COMPILE([
|
c5f17c | 1998-06-04 | Henrik Grubbström (Grubba) | | #ifndef _LARGEFILE_SOURCE
# define _FILE_OFFSET_BITS 64
# define _LARGEFILE_SOURCE
# define _LARGEFILE64_SOURCE 1
#endif
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | #include <sys/procfs.h>
#include <sys/fcntl.h>
int proc_fd;
|
d20354 | 1998-06-10 | Fredrik Hübinette (Hubbe) | | long tmp;
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | char proc_name[20];
|
c5f17c | 1998-06-04 | Henrik Grubbström (Grubba) | | prusage_t pru;
|
221347 | 1997-09-16 | Henrik Grubbström (Grubba) | | ],[
sprintf(proc_name, "/proc/%05d", getpid());
proc_fd = open(proc_name, O_RDONLY);
ioctl(proc_fd, PIOCUSAGE, &pru);
|
d20354 | 1998-06-10 | Fredrik Hübinette (Hubbe) | | tmp=pru.pr_utime.tv_sec;
|
221347 | 1997-09-16 | Henrik Grubbström (Grubba) | | ],
pike_cv_getrusage_procfs=yes
,
pike_cv_getrusage_procfs=no
)
])
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
eb42e8 | 1997-09-16 | Henrik Grubbström (Grubba) | | if test "$pike_cv_getrusage_procfs" = yes; then
AC_MSG_RESULT(yes)
AC_DEFINE(GETRUSAGE_THROUGH_PROCFS)
else
AC_MSG_RESULT(no)
fi
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | fi
|
c411dc | 1997-04-21 | Fredrik Hübinette (Hubbe) | | #############################################################################
|
bdb509 | 1996-09-25 | Fredrik Hübinette (Hubbe) | |
|
76aa1f | 2000-03-25 | Fredrik Hübinette (Hubbe) | | if test "$ac_cv_getrusage_procfs" = "yes"; then
AC_MSG_CHECKING(prstatus_t contains pr_brksize and pr_stksize)
AC_CACHE_VAL(pike_cv_getrusage_procfs_prs, [
AC_TRY_COMPILE([
#ifndef _LARGEFILE_SOURCE
# define _FILE_OFFSET_BITS 64
# define _LARGEFILE_SOURCE
# define _LARGEFILE64_SOURCE 1
#endif
#include <sys/procfs.h>
#include <sys/fcntl.h>
int proc_fd;
long tmp;
char proc_name[20];
prstatus_t prs;
],[
sprintf(proc_name, "/proc/%05d", getpid());
proc_fd = open(proc_name, O_RDONLY);
ioctl(proc_fd, PIOCSTATUS, &prs);
tmp=prs.pr_brksize + prs.pr_stksize;
],
pike_cv_getrusage_procfs_prs=yes
,
pike_cv_getrusage_procfs_prs=no
)
])
if test "$pike_cv_getrusage_procfs_prs" = yes; then
AC_MSG_RESULT(yes)
AC_DEFINE(GETRUSAGE_THROUGH_PROCFS_PRS)
else
AC_MSG_RESULT(no)
fi
fi
#############################################################################
|
371176 | 1998-05-18 | Henrik Grubbström (Grubba) | | AC_MSG_CHECKING(for isgraph)
|
b2018d | 1998-10-23 | Henrik Grubbström (Grubba) | | AC_CACHE_VAL(pike_cv_func_isgraph, [ AC_TRY_LINK([
|
371176 | 1998-05-18 | Henrik Grubbström (Grubba) | | #include <ctype.h>
], [
return(!isgraph('A'));
], pike_cv_func_isgraph=yes, pike_cv_func_isgraph=no)
])
AC_MSG_RESULT($pike_cv_func_isgraph)
if test "x$pike_cv_func_isgraph" = "xyes" ; then
AC_DEFINE(HAVE_ISGRAPH)
else :; fi
|
94cf72 | 1998-07-11 | Henrik Grubbström (Grubba) | | #############################################################################
#
# __func__ is new in ISO C 9x
#
# It should expand to the name of the current function, and is
# useful for debug.
AC_MSG_CHECKING(if __func__ exists and works)
AC_CACHE_VAL(pike_cv_have_working___func__,
[
AC_TRY_RUN([
#ifdef HAVE_STRING_H
#include <string.h>
#else /* !HAVE_STRING_H */
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif /* HAVE_STRIGNS_H */
#endif /* HAVE_STRING_H */
int main()
{
exit(strcmp("main", __func__));
}
], pike_cv_have_working___func__=yes, pike_cv_have_working___func__=no,
pike_cv_have_working___func__=no)
])
AC_MSG_RESULT($pike_cv_have_working___func__)
if test "$pike_cv_have_working___func__" = yes; then
AC_DEFINE(HAVE_WORKING___FUNC__)
else :; fi
|
7f4195 | 1998-07-11 | Henrik Grubbström (Grubba) | | # gcc has __FUNCTION__ instead.
AC_MSG_CHECKING(if __FUNCTION__ exists and works)
AC_CACHE_VAL(pike_cv_have_working___FUNCTION__,
[
AC_TRY_RUN([
#ifdef HAVE_STRING_H
#include <string.h>
#else /* !HAVE_STRING_H */
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif /* HAVE_STRIGNS_H */
#endif /* HAVE_STRING_H */
int main()
{
exit(strcmp("main", __FUNCTION__));
}
], pike_cv_have_working___FUNCTION__=yes,
pike_cv_have_working___FUNCTION__=no,
pike_cv_have_working___FUNCTION__=no)
])
AC_MSG_RESULT($pike_cv_have_working___FUNCTION__)
if test "$pike_cv_have_working___FUNCTION__" = yes; then
AC_DEFINE(HAVE_WORKING___FUNCTION__)
else :; fi
|
371176 | 1998-05-18 | Henrik Grubbström (Grubba) | | #############################################################################
|
7e2ee2 | 2001-07-08 | Henrik Grubbström (Grubba) | |
if test "x$with_computed_goto" = "xyes"; then
AC_MSG_CHECKING(for gcc-style computed goto)
AC_CACHE_VAL(pike_cv_gcc_computed_goto, [
AC_TRY_COMPILE([], [
void *skip = &&label;
goto *skip;
return 1;
label:
return 0;
], [ pike_cv_gcc_computed_goto=yes ], [ pike_cv_gcc_computed_goto=no ])
|
0341d0 | 2001-07-08 | Henrik Grubbström (Grubba) | | ])
|
cf9945 | 2001-07-08 | Henrik Grubbström (Grubba) | | AC_MSG_RESULT($pike_cv_gcc_computed_goto)
|
7e2ee2 | 2001-07-08 | Henrik Grubbström (Grubba) | | if test "x$pike_cv_gcc_computed_goto" = "xyes"; then
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | PIKE_MSG_WARN([Enabling computed goto (EXPERIMENTAL).])
|
7e2ee2 | 2001-07-08 | Henrik Grubbström (Grubba) | | AC_DEFINE(HAVE_COMPUTED_GOTO)
else :; fi
else :; fi
#############################################################################
|
ef6d66 | 2002-04-07 | Martin Stjernholm | |
if test "$with_machine_code" = "yes" ; then
|
9762e0 | 2002-04-17 | Martin Stjernholm | | AC_DEFINE_UNQUOTED(PIKE_BYTECODE_METHOD, [[PIKE_BYTECODE_`echo $pike_cv_machine_code_arch | tr '[a-z]' '[A-Z]'`]])
|
91d3b1 | 2002-04-07 | Martin Stjernholm | | byte_code_format=$pike_cv_machine_code_arch
|
ef6d66 | 2002-04-07 | Martin Stjernholm | | elif test "x$pike_cv_gcc_computed_goto" = "xyes"; then
AC_DEFINE(PIKE_BYTECODE_METHOD, PIKE_BYTECODE_GOTO)
|
91d3b1 | 2002-04-07 | Martin Stjernholm | | byte_code_format="computed goto"
|
ef6d66 | 2002-04-07 | Martin Stjernholm | | else
AC_DEFINE(PIKE_BYTECODE_METHOD, PIKE_BYTECODE_DEFAULT)
|
91d3b1 | 2002-04-07 | Martin Stjernholm | | byte_code_format="virtual machine"
|
ef6d66 | 2002-04-07 | Martin Stjernholm | | fi
#############################################################################
|
371176 | 1998-05-18 | Henrik Grubbström (Grubba) | |
|
f96866 | 2000-08-21 | Henrik Grubbström (Grubba) | | AC_MSG_CHECKING(for lc __declspec)
AC_CACHE_VAL(pike_cv_lc___declspec,
[
AC_TRY_RUN([
#include <stdarg.h>
__declspec(noreturn) void fatal(char *foo,...);
__declspec(noreturn) void fatal(char *foo,...)
{
va_list args;
va_start(foo,args);
printf(foo,args);
va_end(args);
exit(2);
}
int main() { exit(0); }
], pike_cv_lc___declspec=yes, pike_cv_lc___declspec=no, [
echo $ac_n "crosscompiling... $ac_c" 1>&6
AC_TRY_LINK([
#include <stdarg.h>
__declspec(noreturn) void fatal(char *foo,...);
__declspec(noreturn) void fatal(char *foo,...)
{
va_list args;
va_start(foo,args);
printf(foo,args);
va_end(args);
exit(2);
}
], [
exit(0);
], pike_cv_lc___declspec=yes, pike_cv_lc___declspec=no)
])
])
AC_MSG_RESULT($pike_cv_lc___declspec)
if test "$pike_cv_lc___declspec" = yes; then
AC_DEFINE(HAVE_DECLSPEC)
|
9b6287 | 2002-10-03 | Henrik Grubbström (Grubba) | | else
# NOTE: Avoid using __attribute__ if __declspec is available.
# This is a kludge to descrease the number of warnings
# on ecc.
AC_MSG_CHECKING(for gcc function attributes)
AC_CACHE_VAL(pike_cv_gcc_attributes,
[
AC_TRY_RUN([
#include <stdarg.h>
void fatal(char *foo,...) __attribute__ ((noreturn,format (printf,1,2)));
int sqr(int x) __attribute__ ((const));
int sqr(int x) { return x*x; }
void fatal(char *foo,...)
{
va_list args;
va_start(foo,args);
printf(foo,args);
va_end(args);
exit(2);
}
int main() { exit(0); }
], pike_cv_gcc_attributes=yes, pike_cv_gcc_attributes=no, [
echo $ac_n "crosscompiling... $ac_c" 1>&6
AC_TRY_LINK([
#include <stdarg.h>
void fatal(char *foo,...) __attribute__ ((noreturn,format (printf,1,2)));
int sqr(int x) __attribute__ ((const));
int sqr(int x) { return x*x; }
void fatal(char *foo,...)
{
va_list args;
va_start(foo,args);
printf(foo,args);
va_end(args);
exit(2);
}
], [
exit(0);
], pike_cv_gcc_attributes=yes, pike_cv_gcc_attributes=no)
])
])
AC_MSG_RESULT($pike_cv_gcc_attributes)
if test "$pike_cv_gcc_attributes" = yes; then
AC_DEFINE(HAVE_FUNCTION_ATTRIBUTES)
fi
|
f96866 | 2000-08-21 | Henrik Grubbström (Grubba) | | fi
|
7a5e47 | 1999-11-22 | Fredrik Hübinette (Hubbe) | | #############################################################################
|
68debd | 1997-09-12 | Henrik Grubbström (Grubba) | | AC_MSG_CHECKING(how to concatenate two symbols)
AC_CACHE_VAL(pike_cv_cpp_symbol_concat, [
AC_TRY_COMPILE([
|
897653 | 1997-12-22 | Fredrik Hübinette (Hubbe) | | int AABB=0;
|
68debd | 1997-09-12 | Henrik Grubbström (Grubba) | | #define CONCAT(X,Y) X##Y
], [
return CONCAT(AA,BB);
], pike_cv_cpp_symbol_concat=ANSI, [
AC_TRY_COMPILE([
|
897653 | 1997-12-22 | Fredrik Hübinette (Hubbe) | | int AABB=0;
|
68debd | 1997-09-12 | Henrik Grubbström (Grubba) | | #define CONCAT(X,Y) X/**/Y
], [
return CONCAT(AA,BB);
], pike_cv_cpp_symbol_concat=KR, [
pike_cv_cpp_symbol_concat=Unknown
])
])
])
AC_MSG_RESULT($pike_cv_cpp_symbol_concat)
case "$pike_cv_cpp_symbol_concat" in
"ANSI")
AC_DEFINE(HAVE_ANSI_CONCAT)
;;
"KR")
AC_DEFINE(HAVE_KR_CONCAT)
;;
esac
|
c411dc | 1997-04-21 | Fredrik Hübinette (Hubbe) | | #############################################################################
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | AC_MSG_CHECKING(how to set things nonblocking)
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | AC_CACHE_VAL(pike_cv_sys_nonblock,
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | [
|
59bc1b | 1997-01-22 | Bernhard Fastenrath | | # Kludge needed for AmigaOS
|
092a0e | 1997-03-05 | Henrik Grubbström (Grubba) | | if test "$pike_cv_sys_os" = "AmigaOS" ; then
|
59bc1b | 1997-01-22 | Bernhard Fastenrath | | pike_cv_sys_nonblock=USE_FCNTL_O_NONBLOCK
else
|
ed7aeb | 2000-06-16 | Henrik Grubbström (Grubba) | | OCPPFLAGS="$CPPFLAGS"
|
1ac5c0 | 2002-09-02 | Henrik Grubbström (Grubba) | | pike_cv_sys_bad_signal_handling=""
|
a09e4f | 2001-01-21 | Henrik Grubbström (Grubba) | | pike_cv_sys_nonblock=UNKNOWN
|
80f626 | 2002-08-13 | Henrik Grubbström (Grubba) | | # USE_FCNTL_O_NONBLOCK seems to be the most common, so let's start
# with it.
for method in USE_FCNTL_O_NONBLOCK USE_FCNTL_FNDELAY USE_FCNTL_O_NDELAY \
|
a09e4f | 2001-01-21 | Henrik Grubbström (Grubba) | | USE_IOCTL_FIONBIO USE_IOCTLSOCKET_FIONBIO; do
# Make sure we can run configure in a separate directory,
# and set the method to try.
|
ed616b | 2003-02-08 | Martin Stjernholm | | CPPFLAGS="$OCPPFLAGS -D$method"
|
a09e4f | 2001-01-21 | Henrik Grubbström (Grubba) | | AC_TRY_RUN([
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | #define TESTING
|
d4f9e9 | 2000-05-19 | Martin Stjernholm | | #include "fd_control.c"
|
a09e4f | 2001-01-21 | Henrik Grubbström (Grubba) | | ], [
pike_cv_sys_nonblock=$method
break;
], [], [
AC_TRY_LINK([
|
bdfb86 | 1997-12-22 | Fredrik Hübinette (Hubbe) | | #define TESTING
|
d4f9e9 | 2000-05-19 | Martin Stjernholm | | #include "fd_control.c"
|
a09e4f | 2001-01-21 | Henrik Grubbström (Grubba) | | #define main dummy_main
], [], [
pike_cv_sys_nonblock=$method
break;
])
])
done
|
1ac5c0 | 2002-09-02 | Henrik Grubbström (Grubba) | | if test "$pike_cv_sys_nonblock" = "UNKNOWN"; then
# Some OS's don't like signals in combination with threads.
# Try compiling half the test...
# USE_FCNTL_O_NONBLOCK seems to be the most common, so let's start
# with it.
for method in USE_FCNTL_O_NONBLOCK USE_FCNTL_FNDELAY USE_FCNTL_O_NDELAY \
USE_IOCTL_FIONBIO USE_IOCTLSOCKET_FIONBIO; do
# Make sure we can run configure in a separate directory,
# and set the method to try.
|
ed616b | 2003-02-08 | Martin Stjernholm | | CPPFLAGS="$OCPPFLAGS -D$method -DSHORT_TEST"
|
1ac5c0 | 2002-09-02 | Henrik Grubbström (Grubba) | | AC_TRY_RUN([
#define TESTING
#include "fd_control.c"
], [
pike_cv_sys_bad_signal_handling=" (signal handling failed)"
pike_cv_sys_nonblock=$method
break;
], [], [
|
be5d89 | 2002-09-03 | Henrik Grubbström (Grubba) | | :; # Not meaningful.
|
1ac5c0 | 2002-09-02 | Henrik Grubbström (Grubba) | | ])
done
else :; fi
|
ed7aeb | 2000-06-16 | Henrik Grubbström (Grubba) | | # Restore CPPFLAGS
CPPFLAGS="$OCPPFLAGS"
|
59bc1b | 1997-01-22 | Bernhard Fastenrath | | fi
])
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
a09e4f | 2001-01-21 | Henrik Grubbström (Grubba) | | if test "${pike_cv_sys_nonblock}" = "UNKNOWN"; then
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | AC_MSG_RESULT(none found)
|
6c8437 | 2002-09-03 | Henrik Grubbström (Grubba) | | if test "${pike_cv_sys_os}" = "Windows_NT"; then :; else
config_fail="No way to set nonblocking I/O"
fi
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | else
|
1ac5c0 | 2002-09-02 | Henrik Grubbström (Grubba) | | AC_MSG_RESULT($pike_cv_sys_nonblock$pike_cv_sys_bad_signal_handling)
|
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | AC_DEFINE_UNQUOTED($pike_cv_sys_nonblock)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | fi
rm -f core
|
bcf946 | 1998-01-27 | Fredrik Hübinette (Hubbe) | | ##########################################################################
|
29c183 | 2001-02-02 | Fredrik Hübinette (Hubbe) | | AC_MSG_CHECKING(how well OOB handling works)
AC_CACHE_VAL(pike_cv_system_oob_working,[
|
c6f4a8 | 2002-01-27 | Martin Stjernholm | | if test "x$enable_binary" = "xno"; then
pike_cv_system_oob_working=WORKING
else
|
29c183 | 2001-02-02 | Fredrik Hübinette (Hubbe) | | AC_TRY_RUN([
#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <errno.h>
#include <fcntl.h>
#include <signal.h>
#include <sys/stat.h>
#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
#ifdef HAVE_SYS_POLL_H
#include <sys/poll.h>
#endif
#include <fcntl.h>
#ifdef HAVE_SYS_FILE_H
#include <sys/file.h>
#endif
#define SP_DEBUG(X) fprintf X
#ifndef POLLRDNORM
#define POLLRDNORM POLLIN
#endif
#ifndef POLLRDBAND
#define POLLRDBAND POLLPRI
#endif
#ifndef POLLWRBAND
#define POLLWRBAND POLLOUT
#endif
int set_nonblocking(int fd,int which)
{
int ret;
do
{
#if defined(USE_IOCTL_FIONBIO) || defined(__NT__)
ret=ioctl(fd, FIONBIO, &which);
#else
#ifdef USE_FCNTL_O_NDELAY
ret=fcntl(fd, F_SETFL, which?O_NDELAY:0);
#else
#ifdef USE_FCNTL_O_NONBLOCK
ret=fcntl(fd, F_SETFL, which?O_NONBLOCK:0);
#else
#ifdef USE_FCNTL_FNDELAY
ret=fcntl(fd, F_SETFL, which?FNDELAY:0);
#else
#error Do not know how to set your filedescriptors nonblocking.
#endif
#endif
#endif
#endif
} while(ret <0 && errno==EINTR);
return ret;
}
static int socketpair_fd = -1;
int my_socketpair(int family, int type, int protocol, int sv[2])
{
static struct sockaddr_in my_addr;
struct sockaddr_in addr,addr2;
int retries=0;
ACCEPT_SIZE_T len;
memset((char *)&addr,0,sizeof(struct sockaddr_in));
if(socketpair_fd==-1)
{
if((socketpair_fd=socket(AF_INET, SOCK_STREAM, 0)) < 0) {
SP_DEBUG((stderr, "my_socketpair:socket() failed, errno:%d\n",
errno));
return -1;
}
memset((char *)&my_addr,0,sizeof(struct sockaddr_in));
my_addr.sin_family=AF_INET;
my_addr.sin_addr.s_addr=htonl(INADDR_ANY);
my_addr.sin_port=htons(0);
if(bind(socketpair_fd, (struct sockaddr *)&my_addr, sizeof(addr)) < 0)
{
SP_DEBUG((stderr, "my_socketpair:bind() failed, errno:%d\n",
errno));
close(socketpair_fd);
socketpair_fd=-1;
return -1;
}
len = sizeof(my_addr);
if(getsockname(socketpair_fd,(struct sockaddr *)&my_addr,&len) < 0)
{
SP_DEBUG((stderr, "my_socketpair:getsockname() failed, errno:%d\n",
errno));
close(socketpair_fd);
socketpair_fd=-1;
return -1;
}
if(listen(socketpair_fd, 5) < 0)
{
SP_DEBUG((stderr, "my_socketpair:listen() failed, errno:%d\n",
errno));
close(socketpair_fd);
socketpair_fd=-1;
return -1;
}
set_nonblocking(socketpair_fd, 1);
my_addr.sin_addr.s_addr=inet_addr("127.0.0.1");
}
if((sv[1]=socket(AF_INET, SOCK_STREAM, 0)) <0) {
SP_DEBUG((stderr, "my_socketpair:socket() failed, errno:%d (2)\n",
errno));
return -1;
}
retry_connect:
retries++;
if(connect(sv[1], (struct sockaddr *)&my_addr, sizeof(addr)) < 0)
{
SP_DEBUG((stderr, "my_socketpair:connect() failed, errno:%d (%d)\n",
errno, EWOULDBLOCK));
if(errno != EWOULDBLOCK)
{
int tmp2;
for(tmp2=0;tmp2<20;tmp2++)
{
int tmp;
ACCEPT_SIZE_T len2;
len2=sizeof(addr);
tmp=accept(socketpair_fd,(struct sockaddr *)&addr,&len2);
if(tmp!=-1) {
SP_DEBUG((stderr, "my_socketpair:accept() failed, errno:%d\n",
errno));
close(tmp);
}
else
break;
}
if(retries > 20) return -1;
goto retry_connect;
}
}
do
{
ACCEPT_SIZE_T len3;
len3=sizeof(addr);
retry_accept:
sv[0]=accept(socketpair_fd,(struct sockaddr *)&addr,&len3);
if(sv[0] < 0) {
SP_DEBUG((stderr, "my_socketpair:accept() failed, errno:%d (2)\n",
errno));
if(errno==EINTR) goto retry_accept;
close(sv[1]);
return -1;
}
set_nonblocking(sv[0],0);
len=sizeof(addr);
if(getpeername(sv[0], (struct sockaddr *)&addr,&len)) {
SP_DEBUG((stderr, "my_socketpair:getpeername() failed, errno:%d\n",
errno));
return -1;
}
len=sizeof(addr);
if(getsockname(sv[1],(struct sockaddr *)&addr2,&len) < 0) {
SP_DEBUG((stderr, "my_socketpair:getsockname() failed, errno:%d\n",
errno));
return -1;
}
}while(len < (int)sizeof(addr) ||
addr2.sin_addr.s_addr != addr.sin_addr.s_addr ||
addr2.sin_port != addr.sin_port);
SP_DEBUG((stderr, "my_socketpair: succeeded\n",
errno));
return 0;
}
int socketpair_ultra(int family, int type, int protocol, int sv[2])
{
int retries=0;
while(1)
{
int ret=my_socketpair(family, type, protocol, sv);
if(ret>=0) return ret;
switch(errno)
{
case EAGAIN: break;
case EADDRINUSE:
if(retries++ > 10) return ret;
break;
default:
return ret;
}
}
}
FILE *output;
struct pollfd pollset[2];
int fds[2];
static int sent=0;
int xcalls=0;
int ping(int fd)
{
int r;
sent++;
if(sent > 10000)
{
fprintf(output,xcalls ? "SEMIWORKING" : "WORKING");
exit(0);
}
do {
r=send(fds[fd],"x",1,MSG_OOB);
}while(r < 0 && errno==EINTR);
if(r!=1)
{
fprintf(output,"XBYTES\n");
exit(0);
}
pollset[fd].events &=~ POLLWRBAND;
pollset[!fd].events |= POLLRDBAND;
}
int pong(int fd)
{
char foo[2];
int r;
do {
r=recv(fds[fd], &foo, 2, MSG_OOB);
}while(r < 0 && errno==EINTR);
if(r!=1)
{
fprintf(output,"XBYTES\n");
exit(0);
}
pollset[fd].events &=~ POLLRDBAND;
pollset[fd].events |= POLLWRBAND;
}
void pang(int fd)
{
char foo[2];
int r;
xcalls++;
do {
r=recv(fds[fd], &foo, 2, 0);
}while(r < 0 && errno==EINTR);
if(r<0 && errno==EAGAIN) return;
fprintf(output,"INLINED\n");
exit(0);
}
int main(int argc, char **argv)
{
int e;
output=fopen("conftest.out.2","w");
socketpair_ultra(AF_UNIX, SOCK_STREAM, 0, fds);
#define INIT(X) do {\
set_nonblocking(fds[X],1); \
pollset[X].fd=fds[X]; \
pollset[X].events=POLLIN; \
}while(0);
INIT(0);
INIT(1);
ping(0);
while(1)
{
if(!poll(pollset, 2, 10000))
{
fprintf(output,sent>1 ? "WORKS_A_LITTLE\n" : "TIMEOUT\n");
exit(0);
}
for(e=0;e<2;e++)
{
if(pollset[e].revents & POLLRDBAND) pong(e);
if(pollset[e].revents & POLLWRBAND) ping(e);
if(pollset[e].revents & POLLIN) pang(e);
}
}
} ],
pike_cv_system_oob_working="`cat conftest.out.2`",
pike_cv_system_oob_working=UNKNOWN,
pike_cv_system_oob_working=UNKNOWN)
rm conftest.out.2 >/dev/null 2>/dev/null || :
|
c6f4a8 | 2002-01-27 | Martin Stjernholm | | fi
|
29c183 | 2001-02-02 | Fredrik Hübinette (Hubbe) | | ])
AC_MSG_RESULT($pike_cv_system_oob_working)
case "x$pike_cv_system_oob_working" in
xWORKING) AC_DEFINE_UNQUOTED(PIKE_OOB_WORKS,3) ;;
xSEMIWORKING) AC_DEFINE_UNQUOTED(PIKE_OOB_WORKS,2) ;;
xINLINED) AC_DEFINE_UNQUOTED(PIKE_OOB_WORKS,1) ;;
xWORKS_A_LITTLE) AC_DEFINE_UNQUOTED(PIKE_OOB_WORKS,1) ;;
xXBYTES) AC_DEFINE_UNQUOTED(PIKE_OOB_WORKS,0) ;;
xTIMEOUT) AC_DEFINE_UNQUOTED(PIKE_OOB_WORKS,0) ;;
*) AC_DEFINE_UNQUOTED(PIKE_OOB_WORKS,-1) ;; #unknown
esac
|
18099a | 2001-03-04 | Mirar (Pontus Hagland) | |
#######################################################################
|
3c6eaa | 2002-04-12 | Martin Stjernholm | | MY_AC_CHECK_PRINTF_INT_TYPE(size_t,
|
d331e7 | 2002-08-15 | Henrik Grubbström (Grubba) | | "" "l" "ll" "L", "",
|
3c6eaa | 2002-04-12 | Martin Stjernholm | | PRINTSIZET,
[%${res}u, %${res}x])
MY_AC_CHECK_PRINTF_INT_TYPE(ptrdiff_t,
|
d331e7 | 2002-08-15 | Henrik Grubbström (Grubba) | | "" "l" "ll" "L", "",
|
3c6eaa | 2002-04-12 | Martin Stjernholm | | PRINTPTRDIFFT,
[%${res}d, %${res}x])
MY_AC_CHECK_PRINTF_INT_TYPE(INT_TYPE,
|
d331e7 | 2002-08-15 | Henrik Grubbström (Grubba) | | "" "l" "ll" "L", "",
|
3c6eaa | 2002-04-12 | Martin Stjernholm | | PRINTPIKEINT,
[%${res}d, %${res}x])
MY_AC_CHECK_PRINTF_FLOAT_TYPE(FLOAT_TYPE,
|
d331e7 | 2002-08-15 | Henrik Grubbström (Grubba) | | "" "l" "L" "ll", "",
|
3c6eaa | 2002-04-12 | Martin Stjernholm | | PRINTPIKEFLOAT,
[%${res}g, %${res}f])
|
18099a | 2001-03-04 | Mirar (Pontus Hagland) | |
|
29c183 | 2001-02-02 | Fredrik Hübinette (Hubbe) | | #######################################################################
|
7b3941 | 1997-02-06 | Fredrik Hübinette (Hubbe) | |
|
2fbeae | 2001-07-01 | Martin Stjernholm | | AC_MSG_CHECKING(if union initialization works)
AC_CACHE_VAL(pike_cv_have_union_init, [
|
4046ee | 2001-07-20 | Martin Stjernholm | | AC_TRY_RUN([
struct foo {int a;};
struct bar {char b[2];};
|
2fbeae | 2001-07-01 | Martin Stjernholm | | union anything
{
|
21a625 | 2001-07-20 | Martin Stjernholm | | struct foo foo;
struct bar bar;
|
2fbeae | 2001-07-01 | Martin Stjernholm | | };
struct svalue
{
unsigned type;
unsigned subtype;
union anything u;
};
|
4046ee | 2001-07-20 | Martin Stjernholm | | struct svalue my_svalue = {0, 0, {{4711}}};
int main() {
return !(my_svalue.u.foo.a == 4711);
}
],
pike_cv_have_union_init=yes,
pike_cv_have_union_init=no,
pike_cv_have_union_init=no)])
|
2fbeae | 2001-07-01 | Martin Stjernholm | | AC_MSG_RESULT($pike_cv_have_union_init)
if test "$pike_cv_have_union_init" = yes; then
AC_DEFINE(HAVE_UNION_INIT)
fi
#######################################################################
|
83b184 | 2003-02-08 | Martin Stjernholm | | AC_MSG_CHECKING(if cpu time is thread local)
AC_CACHE_VAL(pike_cv_thread_local_cpu_time, [
rm -f conftest.out.2 2>/dev/null
AC_TRY_RUN([
#include <stdio.h>
#ifdef PIKE_THREADS
#define CONFIGURE_TEST
#include "rusage.c"
#include "threads.c"
PIKE_MUTEX_T m;
COND_T c;
cpu_time_t work_time, wait_time;
TH_RETURN_TYPE work_thread (void *dummy)
{
cpu_time_t start;
mt_lock (&m);
start = get_cpu_time();
|
9d2b70 | 2003-02-09 | Martin Stjernholm | | do {
cpu_time_t t = get_cpu_time();
if (t == (cpu_time_t) -1) {
work_time = t;
break;
}
work_time = t - start;
} while (work_time < (CPU_TIME_TICKS / 10));
|
83b184 | 2003-02-08 | Martin Stjernholm | | co_signal (&c);
mt_unlock (&m);
}
int main()
{
cpu_time_t start;
THREAD_T worker;
FILE *res = fopen ("conftest.out.2", "w");
if (!res) return 2;
really_low_th_init();
mt_init (&m);
co_init (&c);
mt_lock (&m);
if (th_create (&worker, work_thread, NULL)) {
fputs ("unknown (failed to create thread)", res);
fclose (res);
|
c5e173 | 2003-02-08 | Martin Stjernholm | | return 3;
|
83b184 | 2003-02-08 | Martin Stjernholm | | }
|
9d2b70 | 2003-02-09 | Martin Stjernholm | |
|
83b184 | 2003-02-08 | Martin Stjernholm | | start = get_cpu_time();
co_wait (&c, &m);
wait_time = get_cpu_time() - start;
|
9d2b70 | 2003-02-09 | Martin Stjernholm | | if (start == (cpu_time_t) -1 || work_time == (cpu_time_t) -1) {
|
83b184 | 2003-02-08 | Martin Stjernholm | | fputs ("unknown (get_cpu_time doesn't work)", res);
fclose (res);
|
c5e173 | 2003-02-08 | Martin Stjernholm | | return 4;
|
83b184 | 2003-02-08 | Martin Stjernholm | | }
if (work_time > wait_time)
return 0; /* It's thread local. */
else {
fputs ("no", res);
fclose (res);
return 1; /* It's not thread local. */
}
}
#else
int main()
{
FILE *res = fopen ("conftest.out.2", "w");
|
c5e173 | 2003-02-08 | Martin Stjernholm | | if (!res) return 5;
|
83b184 | 2003-02-08 | Martin Stjernholm | | fputs ("no", res);
fclose (res);
return 1;
}
#endif
], [
pike_cv_thread_local_cpu_time=yes
], [
if test -f conftest.out.2; then
pike_cv_thread_local_cpu_time=`cat conftest.out.2`
rm -f conftest.out.2 2>/dev/null
else
AC_MSG_WARN([
Test failed to compile.
Problems in rusage.c or threads.c with CONFIGURE_TEST is defined?
])
pike_cv_thread_local_cpu_time="unknown (compilation failed)"
fi
], [
pike_cv_thread_local_cpu_time="unknown (cross compilation)"
])
])
AC_MSG_RESULT($pike_cv_thread_local_cpu_time)
if test "$pike_cv_thread_local_cpu_time" = yes; then
AC_DEFINE(CPU_TIME_IS_THREAD_LOCAL, YES)
elif test "$pike_cv_thread_local_cpu_time" = no; then
AC_DEFINE(CPU_TIME_IS_THREAD_LOCAL, NO)
else
AC_DEFINE(CPU_TIME_IS_THREAD_LOCAL, UNKNOWN)
fi
#######################################################################
|
7b3941 | 1997-02-06 | Fredrik Hübinette (Hubbe) | | # Set info about shared libraries.
AC_SUBST(SO)
AC_SUBST(LDSHARED)
AC_SUBST(CCSHARED)
AC_SUBST(LINKFORSHARED)
# SO is the extension of shared libraries
|
e1195f | 1997-03-23 | Fredrik Hübinette (Hubbe) | | # -- usually so, sl on HP-UX
|
7b3941 | 1997-02-06 | Fredrik Hübinette (Hubbe) | | AC_MSG_CHECKING(SO)
if test -z "$SO"
then
|
092a0e | 1997-03-05 | Henrik Grubbström (Grubba) | | case "$pike_cv_sys_os" in
|
7b3941 | 1997-02-06 | Fredrik Hübinette (Hubbe) | | hp*|HP*) SO=sl;;
*) SO=so;;
esac
fi
AC_MSG_RESULT($SO)
# LDSHARED is the ld *command* used to create shared library
# -- "ld" on SunOS 4.x.x, "ld -G" on SunOS 5.x, "ld -shared" on IRIX 5
AC_MSG_CHECKING(LDSHARED)
|
9ab446 | 1998-11-06 | Honza Petrous | | if test -z "$LDSHARED" ; then
case "$pike_cv_sys_os" in
AIX*)
if test "$GCC" = yes ; then
|
05ca9b | 2000-12-18 | Henrik Grubbström (Grubba) | | if test "`uname -r`" -ge 2 -a "`uname -v`" -eq 4 ; then
|
9ab446 | 1998-11-06 | Honza Petrous | | LDSHARED="ld -G -bexpall"
else if test "`uname -v`" -gt 4 ; then
|
05ca9b | 2000-12-18 | Henrik Grubbström (Grubba) | | # AIX 5L+
LDSHARED="ld -G"
|
e0a6aa | 1997-12-12 | Henrik Grubbström (Grubba) | | else
|
9ab446 | 1998-11-06 | Honza Petrous | | # AIX 4.1 and earlier don't have/have unreliable
# handling of dlopen et al.
#
# Even AIX 4.2.1 has buggy dlopen -- NEVER attempt
# to dlopen a file that hasn't been linked with -G.
pike_cv_sys_dynamic_loading=no
LDSHARED="ld"
|
e0a6aa | 1997-12-12 | Henrik Grubbström (Grubba) | | fi
|
9ab446 | 1998-11-06 | Honza Petrous | | fi
else
|
05ca9b | 2000-12-18 | Henrik Grubbström (Grubba) | | if test "`uname -r`" -ge 3 -a "`uname -v`" -eq 4 ; then
|
2a5054 | 2000-10-24 | Henrik Grubbström (Grubba) | | LDSHARED="ld -G -bexpall"
else if test "`uname -v`" -gt 4 ; then
|
05ca9b | 2000-12-18 | Henrik Grubbström (Grubba) | | # AIX 5L+
LDSHARED="ld -G"
|
2a5054 | 2000-10-24 | Henrik Grubbström (Grubba) | | else
# AIX 4.1 and earlier don't have/have unreliable
# handling of dlopen et al.
#
# Even AIX 4.2.1 has buggy dlopen -- NEVER attempt
# to dlopen a file that hasn't been linked with -G.
pike_cv_sys_dynamic_loading=no
LDSHARED="ld"
fi
fi
|
9ab446 | 1998-11-06 | Honza Petrous | | fi
;;
|
ecf155 | 2001-09-10 | Henrik Grubbström (Grubba) | | Darwin*)
|
0ee802 | 2002-03-07 | H. William Welliver III | | LDSHARED="ld -bundle -bind_at_load -flat_namespace -undefined suppress -lbundle1.o"
|
ecf155 | 2001-09-10 | Henrik Grubbström (Grubba) | | ;;
|
9ab446 | 1998-11-06 | Honza Petrous | | IRIX*)
if test "$GCC" = yes ; then
# egcs defaults to building -n32 objects
LDSHARED="ld -shared -n32"
else
LDSHARED="ld -shared"
fi
# -woff isn't understood by ld on Irix 5.
if test "`uname -r`" -ge 6 ; then
LDSHARED="$LDSHARED -woff 84,85,134"
else :; fi
;;
SunOS*) LDSHARED="ld";;
Solaris) LDSHARED="/usr/ccs/bin/ld -G";;
hp*|HP*) LDSHARED="ld -b";;
OSF*) LDSHARED="ld -expect_unresolved '*' -shared -msym -O3";;
DYNIX/ptx*) LDSHARED="ld -G";;
|
372426 | 1999-08-25 | Henrik Grubbström (Grubba) | | next*) LDSHARED="$CC $CFLAGS -nostdlib -r";;
|
9ab446 | 1998-11-06 | Honza Petrous | | Linux*) LDSHARED="$CC -shared";;
GNU*) LDSHARED="ld -Bshareable";;
|
6da30c | 2000-02-19 | Fredrik Hübinette (Hubbe) | | FreeBSD*) LDSHARED="$CC -Wl,-Bshareable";;
|
372426 | 1999-08-25 | Henrik Grubbström (Grubba) | | NetBSD*) LDSHARED="ld -Bshareable";;
|
9ab446 | 1998-11-06 | Honza Petrous | | OpenBSD*) LDSHARED="ld -Bshareable";;
|
1807bd | 2000-11-28 | Fredrik Hübinette (Hubbe) | | BSD/OS*)
case "`uname -r`" in
|
e9e9d8 | 2001-09-22 | Henrik Grubbström (Grubba) | | [4-9].*) LDSHARED="$CC -shared";;
|
1807bd | 2000-11-28 | Fredrik Hübinette (Hubbe) | | *) LDSHARED="shlicc -r";;
esac
;;
|
e984b1 | 2001-02-20 | Boyd Lynn Gerber | | SCO_SV*) LDSHARED="$CC -G -KPIC -Wl,-Bexport";;
|
372426 | 1999-08-25 | Henrik Grubbström (Grubba) | | UNIX_SV*) LDSHARED="ld -G";;
|
bcb538 | 2001-08-23 | Boyd Lynn Gerber | | UnixWare*|OpenUNIX*)
|
9ab446 | 1998-11-06 | Honza Petrous | | if test "$GCC" = yes ; then
|
d1afeb | 2001-02-27 | Boyd Lynn Gerber | | LDSHARED="$CC -G -fPIC"
|
9ab446 | 1998-11-06 | Honza Petrous | | else
|
e984b1 | 2001-02-20 | Boyd Lynn Gerber | | LDSHARED="$CC -G -KPIC -Wl,-Bexport"
|
9ab446 | 1998-11-06 | Honza Petrous | | fi
;;
|
a92414 | 2002-11-18 | Henrik Grubbström (Grubba) | | Windows_NT*|NT*)
|
9b15e0 | 2000-12-22 | Fredrik Hübinette (Hubbe) | | LDSHARED="pntld"
;;
|
9ab446 | 1998-11-06 | Honza Petrous | | *) LDSHARED="ld";;
esac
|
7b3941 | 1997-02-06 | Fredrik Hübinette (Hubbe) | | fi
AC_MSG_RESULT($LDSHARED)
# CCSHARED are the C *flags* used to create objects to go into a shared
# library -- this is only needed for a few systems
AC_MSG_CHECKING(CCSHARED)
|
371f75 | 1999-04-29 | Martin Stjernholm | | AC_CACHE_VAL(pike_cv_sys_ccshared,[
if test -z "$CCSHARED" ; then
if test "$GCC" = yes ; then
|
08af09 | 2000-04-12 | Marcus Comstedt | | case "$pike_cv_sys_os" in
|
371f75 | 1999-04-29 | Martin Stjernholm | | BSD/OS*)
|
1807bd | 2000-11-28 | Fredrik Hübinette (Hubbe) | | case "`uname -r`" in
4.*) CCSHARED="-fPIC";;
*) CCSHARED="";;
esac
|
371f75 | 1999-04-29 | Martin Stjernholm | | ;;
|
ecf155 | 2001-09-10 | Henrik Grubbström (Grubba) | | Darwin*)
CCSHARED="-fPIC"
;;
|
371f75 | 1999-04-29 | Martin Stjernholm | | Solaris*)
# The Image module runs out of symbol reference space unless we
# use the large PIC model:
# ld: fatal: too many symbols require `small' PIC references:
# have 2205, maximum 2048 -- recompile some modules -K PIC.
CCSHARED="-fPIC"
;;
*)
|
0dc173 | 2002-09-09 | Henrik Grubbström (Grubba) | | AC_SYS_COMPILER_FLAG(-fPIC, fPIC, CCSHARED, [
AC_SYS_COMPILER_FLAG(-fpic, fpic, CCSHARED)
])
|
371f75 | 1999-04-29 | Martin Stjernholm | | ;;
esac
else
|
08af09 | 2000-04-12 | Marcus Comstedt | | case "$pike_cv_sys_os" in
|
ecf155 | 2001-09-10 | Henrik Grubbström (Grubba) | | Darwin*)
CCSHARED="-fPIC"
;;
|
fcf073 | 2000-03-28 | Fredrik Hübinette (Hubbe) | | IRIX*)
AC_SYS_COMPILER_FLAG(-share,cc_shared,CCSHARED)
;;
|
371f75 | 1999-04-29 | Martin Stjernholm | | hp*|HP*) CCSHARED="+z"; ;;
FreeBSD*) CCSHARED="-fpic";;
SCO_SV*) CCSHARED="-KPIC -dy -Bdynamic";;
|
bcb538 | 2001-08-23 | Boyd Lynn Gerber | | UnixWare*|OpenUNIX*) CCSHARED="-KPIC -dy -Bdynamic";;
|
371f75 | 1999-04-29 | Martin Stjernholm | | Solaris*) CCSHARED="-KPIC -Bdynamic";;
Windows_NT*) CCSHARED="-shared" ;;
esac
fi
|
7b3941 | 1997-02-06 | Fredrik Hübinette (Hubbe) | | fi
|
371f75 | 1999-04-29 | Martin Stjernholm | | OLD_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS $CCSHARED"
|
05ca9b | 2000-12-18 | Henrik Grubbström (Grubba) | | AC_TRY_COMPILE([], [exit(0);],
|
371f75 | 1999-04-29 | Martin Stjernholm | | pike_cv_sys_ccshared="$CCSHARED", pike_cv_sys_ccshared='')
CFLAGS="$OLD_CFLAGS"
])
CCSHARED="$pike_cv_sys_ccshared"
|
7b3941 | 1997-02-06 | Fredrik Hübinette (Hubbe) | | AC_MSG_RESULT($CCSHARED)
|
334e3d | 1997-04-16 | Fredrik Hübinette (Hubbe) | | AC_MSG_CHECKING(LINKFORSHARED)
AC_CACHE_VAL(pike_cv_sys_linkforshared,[
|
7b3941 | 1997-02-06 | Fredrik Hübinette (Hubbe) | | # LINKFORSHARED are the flags passed to the $(CC) command that links
|
e1195f | 1997-03-23 | Fredrik Hübinette (Hubbe) | | # the pike executable -- this is only needed for a few systems
|
7b3941 | 1997-02-06 | Fredrik Hübinette (Hubbe) | | if test -z "$LINKFORSHARED"
then
|
964949 | 1998-02-27 | Fredrik Hübinette (Hubbe) | | LINKFORSHARED=""
|
bb55f8 | 1997-03-16 | Fredrik Hübinette (Hubbe) | | if test "$GCC" = yes ; then
|
08af09 | 2000-04-12 | Marcus Comstedt | | case "$pike_cv_sys_os" in
|
05ca9b | 2000-12-18 | Henrik Grubbström (Grubba) | | AIX*)
if test "`uname -v`" -gt 4 ; then
# This is probably wrong, but I don't have a man page for ld yet.
LINKFORSHARED=""
else
LINKFORSHARED="-Wl,-bexpall -Wl,-brtl"
fi
;;
|
ecf155 | 2001-09-10 | Henrik Grubbström (Grubba) | | Darwin*) LINKFORSHARED="-dynamic";;
|
9ab446 | 1998-11-06 | Honza Petrous | | hp*|HP*) LINKFORSHARED="-Wl,-E";;
Linux*) LINKFORSHARED="-rdynamic";;
|
1807bd | 2000-11-28 | Fredrik Hübinette (Hubbe) | | BSD/OS*)
case "`uname -r`" in
4.*) LINKFORSHARED="-rdynamic";;
esac
;;
BSD/OS*)
case "`uname -r`" in
4.*) LINKFORSHARED="-rdynamic";;
esac
;;
|
9ab446 | 1998-11-06 | Honza Petrous | | GNU*) LINKFORSHARED="-rdynamic";;
|
cc32e0 | 2001-04-10 | Marcus Comstedt | | NetBSD*) LINKFORSHARED="-Wl,-E";;
|
372426 | 1999-08-25 | Henrik Grubbström (Grubba) | | next*) LINKFORSHARED="-u libsys_s";;
|
9ab446 | 1998-11-06 | Honza Petrous | | SCO_SV*) LINKFORSHARED="-fpic -Wl,-Bexport";;
# What about UNIX_SV?
|
bcb538 | 2001-08-23 | Boyd Lynn Gerber | | UnixWare*|OpenUNIX*) LINKFORSHARED="-fpic -Wl,-Bexport";;
|
9ab446 | 1998-11-06 | Honza Petrous | |
|
372426 | 1999-08-25 | Henrik Grubbström (Grubba) | | FreeBSD*)
|
9ab446 | 1998-11-06 | Honza Petrous | | AC_TRY_RUN([int main(){exit(
|
9db92d | 1998-11-06 | Fredrik Hübinette (Hubbe) | | #ifdef __ELF__
0
#else
1
#endif
);}
|
9ab446 | 1998-11-06 | Honza Petrous | | ],LINKFORSHARED=-rdynamic)
;;
|
bb55f8 | 1997-03-16 | Fredrik Hübinette (Hubbe) | | esac
else
|
08af09 | 2000-04-12 | Marcus Comstedt | | case "$pike_cv_sys_os" in
|
05ca9b | 2000-12-18 | Henrik Grubbström (Grubba) | | AIX*)
if test "`uname -v`" -gt 4 ; then
LINKFORSHARED="-Bexport"
else
LINKFORSHARED="-Wl,-bexpall -Wl,-brtl"
fi
;;
|
ecf155 | 2001-09-10 | Henrik Grubbström (Grubba) | | Darwin*) LINKFORSHARED="-dynamic";;
|
9ab446 | 1998-11-06 | Honza Petrous | | hp*|HP*) LINKFORSHARED="-Wl,-E";;
Linux*) LINKFORSHARED="-rdynamic";;
GNU*) LINKFORSHARED="-rdynamic";;
|
372426 | 1999-08-25 | Henrik Grubbström (Grubba) | | next*) LINKFORSHARED="-u libsys_s";;
|
9ab446 | 1998-11-06 | Honza Petrous | | SCO_SV*) LINKFORSHARED="-Bdynamic -dy -Wl,-Bexport";;
# What about UNIX_SV?
|
bcb538 | 2001-08-23 | Boyd Lynn Gerber | | UnixWare*|OpenUNIX*) LINKFORSHARED="-Bdynamic -dy -Wl,-Bexport";;
|
930671 | 2002-11-04 | Henrik Grubbström (Grubba) | | Windows_NT*|NT*) LINKFORSHARED="-rdynamic";;
|
7b3941 | 1997-02-06 | Fredrik Hübinette (Hubbe) | | esac
|
bb55f8 | 1997-03-16 | Fredrik Hübinette (Hubbe) | | fi
|
7b3941 | 1997-02-06 | Fredrik Hübinette (Hubbe) | | fi
|
334e3d | 1997-04-16 | Fredrik Hübinette (Hubbe) | |
OLD_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS $LINKFORSHARED"
|
b298e0 | 1997-04-16 | Fredrik Hübinette (Hubbe) | | AC_TRY_RUN([int main() { exit(0); }],
|
75920f | 1997-12-28 | Fredrik Hübinette (Hubbe) | | pike_cv_sys_linkforshared="$LINKFORSHARED", pike_cv_sys_linkforshared='', pike_cv_sys_linkforshared='')
|
334e3d | 1997-04-16 | Fredrik Hübinette (Hubbe) | | CFLAGS="$OLD_CFLAGS"
])
LINKFORSHARED="$pike_cv_sys_linkforshared"
|
7b3941 | 1997-02-06 | Fredrik Hübinette (Hubbe) | | AC_MSG_RESULT($LINKFORSHARED)
|
ec6ff8 | 2002-04-06 | Marcus Comstedt | | # In case we're going to use gcc for linking shared objects,
# we should use the -static-libgcc flag if it exists.
# Shared libgcc is nothing but trouble.
STATIC_LIBGCC=""
if test yes = "$GCC" ; then
AC_SYS_COMPILER_FLAG(-static-libgcc,static_libgcc,STATIC_LIBGCC)
else :; fi
|
7b3941 | 1997-02-06 | Fredrik Hübinette (Hubbe) | | #############################################################################
|
e1195f | 1997-03-23 | Fredrik Hübinette (Hubbe) | | cat >conftest.c <<EOF
|
a99145 | 1997-07-08 | Fredrik Hübinette (Hubbe) | | #include <stdio.h>
|
559196 | 2000-12-05 | Marcus Comstedt | | #include <stdlib.h>
|
a99145 | 1997-07-08 | Fredrik Hübinette (Hubbe) | | void testfunc(void) {
fprintf(stderr,"Calling testfunc2\n");
testfunc2();
fprintf(stderr,"testfunc2 returned!\n");
exit(1);
}
|
e1195f | 1997-03-23 | Fredrik Hübinette (Hubbe) | | EOF
AC_MSG_CHECKING(if dynamic loading works)
AC_CACHE_VAL(pike_cv_sys_dynamic_loading,
[
|
334e3d | 1997-04-16 | Fredrik Hübinette (Hubbe) | | echo $CC -c $CFLAGS $CCSHARED conftest.c -o conftest.o 1>&5
$CC -c $CFLAGS $CCSHARED conftest.c -o conftest.o 1>&5 2>&5
echo $BINDIR/smartlink $LDSHARED $LDFLAGS conftest.o -o conftest.$SO 1>&5
$BINDIR/smartlink $LDSHARED $LDFLAGS conftest.o -o conftest.$SO 1>&5 2>&5
if test -f conftest.$SO ; then
mv conftest.$SO myconftest.so
OLD_CFLAGS="$CFLAGS"
|
193851 | 2001-01-31 | Fredrik Hübinette (Hubbe) | |
|
334e3d | 1997-04-16 | Fredrik Hübinette (Hubbe) | | CFLAGS="$CFLAGS $LINKFORSHARED"
|
080971 | 1998-02-27 | Marcus Comstedt | | OLD_CC="$CC"
case "$LD" in
|
633b03 | 1998-07-16 | Fredrik Hübinette (Hubbe) | | *shlicc)
CC="$BINDIR/smartlink shlicc"
;;
|
080971 | 1998-02-27 | Marcus Comstedt | | esac
|
e1195f | 1997-03-23 | Fredrik Hübinette (Hubbe) | | AC_TRY_RUN([
#define TESTING
|
d4f9e9 | 2000-05-19 | Martin Stjernholm | | #include "dynamic_load.c"
|
b298e0 | 1997-04-16 | Fredrik Hübinette (Hubbe) | | void testfunc2(void) { exit(0); }
|
75920f | 1997-12-28 | Fredrik Hübinette (Hubbe) | | ], pike_cv_sys_dynamic_loading=yes, pike_cv_sys_dynamic_loading=no, pike_cv_sys_dynamic_loading=no)
|
334e3d | 1997-04-16 | Fredrik Hübinette (Hubbe) | | CFLAGS="$OLD_CFLAGS"
|
080971 | 1998-02-27 | Marcus Comstedt | | CC="$OLD_CC"
|
633b03 | 1998-07-16 | Fredrik Hübinette (Hubbe) | | else
|
75920f | 1997-12-28 | Fredrik Hübinette (Hubbe) | | pike_cv_sys_dynamic_loading=no
|
334e3d | 1997-04-16 | Fredrik Hübinette (Hubbe) | | fi
rm -f myconftest.so >/dev/null 2>/dev/null
|
e1195f | 1997-03-23 | Fredrik Hübinette (Hubbe) | | ])
AC_MSG_RESULT($pike_cv_sys_dynamic_loading)
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | |
|
5f951c | 2001-01-30 | Fredrik Hübinette (Hubbe) | | if test "x$with_dynamic_modules" != "xno" ; then
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | if test x$pike_cv_sys_dynamic_loading = xno ; then
with_dynamic_modules=no
else
with_dynamic_modules=yes
if test x$pike_cv_func_dlopen$ac_cv_func_dld_link$ac_cv_func_shl_load = xnonono;
then
|
1807bd | 2000-11-28 | Fredrik Hübinette (Hubbe) | | # Dynamic loading is now WORKING (maybe)
|
b806a5 | 2001-09-14 | Marcus Comstedt | | if test x"$pike_cv_sys_os" = xWindows_NT ; then
LINKFORSHARED="${LINKFORSHARED} -rdynamic"
else
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | with_dynamic_modules=no
|
e1a8e5 | 2001-09-12 | Marcus Comstedt | | fi
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | fi
fi
|
e1195f | 1997-03-23 | Fredrik Hübinette (Hubbe) | | fi
|
f038d3 | 1999-10-03 | Fredrik Hübinette (Hubbe) | | #######################################################################
|
284e06 | 1998-11-09 | Fredrik Hübinette (Hubbe) | | # Since configure doesn't always know if we will be linking with ld or cc,
# We use this little code snippet to add flags to ld that would otherwise
# be given automatically by $(CC) $(CFLAGS)
# /Hubbe
#
|
7e4d4e | 2000-12-13 | Fredrik Hübinette (Hubbe) | | if test "$ldflags_is_set" = no ; then
case "x$LD $LDFLAGS" in
*\$\(CFLAGS\)*)
|
284e06 | 1998-11-09 | Fredrik Hübinette (Hubbe) | | # Options in CFLAGS, no stuff needs to be added
;;
|
7e4d4e | 2000-12-13 | Fredrik Hübinette (Hubbe) | | x$CC*|x\$\(CC\)*)
LD="$LD \$(CFLAGS)"
;;
*)
LD="$LD ${LD_FALLBACK_FLAGS-}"
;;
esac
case "x$LDSHARED $LDFLAGS" in
*\$\(CFLAGS\)*)
|
b1466e | 2000-03-26 | Fredrik Hübinette (Hubbe) | | # Options in CFLAGS, no stuff needs to be added
;;
|
7e4d4e | 2000-12-13 | Fredrik Hübinette (Hubbe) | | x$CC*|x\$\(CC\)*)
|
ec6ff8 | 2002-04-06 | Marcus Comstedt | | LDSHARED="$LDSHARED $STATIC_LIBGCC \$(CFLAGS)"
|
7e4d4e | 2000-12-13 | Fredrik Hübinette (Hubbe) | | ;;
|
284e06 | 1998-11-09 | Fredrik Hübinette (Hubbe) | | *)
|
7e4d4e | 2000-12-13 | Fredrik Hübinette (Hubbe) | | LDSHARED="$LDSHARED ${LD_FALLBACK_FLAGS-}"
|
284e06 | 1998-11-09 | Fredrik Hübinette (Hubbe) | | ;;
esac
|
7e4d4e | 2000-12-13 | Fredrik Hübinette (Hubbe) | | fi
|
284e06 | 1998-11-09 | Fredrik Hübinette (Hubbe) | |
|
f038d3 | 1999-10-03 | Fredrik Hübinette (Hubbe) | | ##########################################################################
|
119276 | 1999-05-26 | Fredrik Hübinette (Hubbe) | | case "x$pike_cv_sys_os" in
|
e07c41 | 2002-08-19 | Henrik Grubbström (Grubba) | | xWindows_NT)
|
0e126a | 2002-08-19 | Henrik Grubbström (Grubba) | | signal_handler="custom NT"
|
119276 | 1999-05-26 | Fredrik Hübinette (Hubbe) | | ;;
|
e07c41 | 2002-08-19 | Henrik Grubbström (Grubba) | | xLinux)
# Linux's stupid thread implementation doesn't survive USE_WAIT_THREAD.
|
0e126a | 2002-08-19 | Henrik Grubbström (Grubba) | | signal_handler="SIGCHILD"
|
e07c41 | 2002-08-19 | Henrik Grubbström (Grubba) | | AC_DEFINE(USE_SIGCHILD)
|
119276 | 1999-05-26 | Fredrik Hübinette (Hubbe) | | ;;
*)
|
0e126a | 2002-08-19 | Henrik Grubbström (Grubba) | | # This is valid for at least Solaris, AIX and Darwin.
if grep _REENTRANT confdefs.h >/dev/null 2>&1; then
signal_handler="wait thread"
AC_DEFINE(USE_WAIT_THREAD)
else
signal_handler="SIGCHILD"
AC_DEFINE(USE_SIGCHILD)
fi
|
119276 | 1999-05-26 | Fredrik Hübinette (Hubbe) | | ;;
esac
|
284e06 | 1998-11-09 | Fredrik Hübinette (Hubbe) | |
|
7e37bb | 2002-08-20 | Henrik Grubbström (Grubba) | | #######################################################################
# Since all $OPTIMIZE flags have to be automatically included in $CFLAGS
# (because otherwise the tests will not be accurate) we have to remove all
# OPTIMIZE flags from the regular CFLAGS...
|
168c04 | 2003-01-10 | Mirar (Pontus Hagland) | | # (also some other misc work on the flags)
INTERPRET_DEOPTIMIZE=
|
7e37bb | 2002-08-20 | Henrik Grubbström (Grubba) | |
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | OPT_GOT_OFLAG=no
|
b702f3 | 2002-12-11 | Mirar (Pontus Hagland) | | OPT_GOT_MCPU=no
OPT_GOT_MARCH=no
|
7e37bb | 2002-08-20 | Henrik Grubbström (Grubba) | | NEW_CFLAGS=
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | OPT_NOT_USED=
|
7e37bb | 2002-08-20 | Henrik Grubbström (Grubba) | | for opt in ${CFLAGS-}
do
case " $OPTIMIZE " in
*\ $opt\ *) ;;
*)
case "$opt" in
|
168c04 | 2003-01-10 | Mirar (Pontus Hagland) | | -O*)
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | if test "x$OPT_GOT_OFLAG" = "xno"; then
# only use the first -O flag (from make.conf etc)
OPT_GOT_OFLAG=yes
if test "x$with_copt" != xno; then
OPTIMIZE="${OPTIMIZE-} $opt"
else
OPT_NOT_USED="${OPT_NOT_USED-} $opt"
fi
fi
;;
|
168c04 | 2003-01-10 | Mirar (Pontus Hagland) | | -f*)
if test "x$opt" = "x-fomit-frame-pointer" -a \
"x$with_machine_code" = xyes; then
INTERPRET_DEOPTIMIZE=-fno-omit-frame-pointer
PIKE_MSG_WARN([-fno-omit-frame-pointer used for interpret.c,
since the use of machine code is broken by -fomit-frame-pointer])
fi
if test "x$with_copt" != xno; then
OPTIMIZE="${OPTIMIZE-} $opt"
else
OPT_NOT_USED="${OPT_NOT_USED-} $opt"
fi
;;
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | -pipe)
OPTIMIZE="${OPTIMIZE-} $opt"
;;
|
b702f3 | 2002-12-11 | Mirar (Pontus Hagland) | | -mcpu*)
if test "x$OPT_GOT_MCPU" = xno; then
NEW_CFLAGS="$NEW_CFLAGS $opt"
OPT_GOT_MCPU=yes
fi
;;
-march*)
if test "x$OPT_GOT_MARCH" = xno; then
NEW_CFLAGS="$NEW_CFLAGS $opt"
OPT_GOT_MARCH=yes
fi
;;
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | *)
NEW_CFLAGS="$NEW_CFLAGS $opt"
;;
|
7e37bb | 2002-08-20 | Henrik Grubbström (Grubba) | | esac
;;
esac
done
CFLAGS="$NEW_CFLAGS"
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | unset NEW_CFLAGS
unset OPT_GOT_OFLAG
|
b702f3 | 2002-12-11 | Mirar (Pontus Hagland) | | unset OPT_GOT_MCPU
unset OPT_GOT_ARCH
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | |
|
168c04 | 2003-01-10 | Mirar (Pontus Hagland) | | AC_SUBST(INTERPRET_DEOPTIMIZE)
|
43a6c8 | 1999-11-24 | Fredrik Hübinette (Hubbe) | | #############################################################################
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | dnl handled above in the CFLAGS/OPTIMIZE split
dnl if test "x$with_copt" = xno ; then
dnl OPTIMIZE=
|
2f9254 | 2001-01-18 | Fredrik Hübinette (Hubbe) | |
dnl The unused code below can be used to implement a good/bad-list
dnl to determine when to zap the -O2 for buggy gccs...
dnl
dnl else
dnl
dnl if test "x$GCC" = xyes; then
dnl BAD=unknown
dnl case `gcc -v 2>&1` in
dnl */i?86-*/2.95.3/*19991030*) BAD=no ;;
dnl esac
dnl fi
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | dnl fi
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | |
#############################################################################
|
ed616b | 2003-02-08 | Martin Stjernholm | | # Remove the extra args temporarily added to CPPFLAGS.
for extra_arg in $CONF_CPPFLAGS_EXTRA; do
NEW_CPPFLAGS=""
for arg in $CPPFLAGS; do
test "$arg" = "$extra_arg" || NEW_CPPFLAGS="$NEW_CPPFLAGS $arg"
done
CPPFLAGS="$NEW_CPPFLAGS"
done
#############################################################################
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | |
if test x$with_dynamic_modules = xyes ; then
dmmsrc="modules/dynamic_module_makefile.in"
CCSHARED="${CCSHARED} -DDYNAMIC_MODULE"
else
dmmsrc="modules/static_module_makefile.in"
fi
|
6052f6 | 1998-06-06 | Henrik Grubbström (Grubba) | | #############################################################################
|
c6f4a8 | 2002-01-27 | Martin Stjernholm | | PMOD_TARGETS=
for f in $srcdir/*.cmod; do
PMOD_TARGETS="$PMOD_TARGETS $f"
done
PMOD_TARGETS=`echo $srcdir/*.cmod | sed -e "s/\.cmod/\.c/g" | sed -e "s|$srcdir/|\\$(SRCDIR)/|g"`
AC_SUBST(PMOD_TARGETS)
#############################################################################
|
6052f6 | 1998-06-06 | Henrik Grubbström (Grubba) | | echo
echo "Compiler summary:"
echo
echo "C Compiler: $CC"
|
c6f4a8 | 2002-01-27 | Martin Stjernholm | | echo "Preprocessor: $CPP"
|
6052f6 | 1998-06-06 | Henrik Grubbström (Grubba) | | echo "Linker: $LD"
echo "Shared linker: $LDSHARED"
echo
echo "Shared object extension: $SO"
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | echo "Dynamic modules: $with_dynamic_modules"
|
6052f6 | 1998-06-06 | Henrik Grubbström (Grubba) | | echo
echo "CPPFLAGS: $CPPFLAGS"
echo "CFLAGS: $CFLAGS"
echo "CCSHARED: $CCSHARED"
echo "LINKFORSHARED: $LINKFORSHARED"
|
e48c38 | 1998-07-29 | Marcus Comstedt | | echo "LIBGCC: $LIBGCC"
|
6052f6 | 1998-06-06 | Henrik Grubbström (Grubba) | | echo "WARN: $WARN"
|
91006b | 2000-03-21 | Fredrik Hübinette (Hubbe) | | echo "PROFIL: $PROFIL"
|
6052f6 | 1998-06-06 | Henrik Grubbström (Grubba) | | echo "OPTIMIZE: $OPTIMIZE"
echo "LDFLAGS: $LDFLAGS"
|
c371d4 | 1998-06-07 | Simon Coggins | | echo "LIBS: $LIBS"
|
ab0bfa | 1998-07-06 | Martin Stjernholm | | echo "prefix: $prefix"
|
6052f6 | 1998-06-06 | Henrik Grubbström (Grubba) | | echo
|
e1195f | 1997-03-23 | Fredrik Hübinette (Hubbe) | | #############################################################################
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
f2328f | 1997-09-17 | Henrik Grubbström (Grubba) | | export LDFLAGS CFLAGS CPPFLAGS LIBS
|
2e99df | 1999-06-24 | Fredrik Hübinette (Hubbe) | | export prefix exec_prefix OTHERFLAGS
export TMP_BINDIR DEFINES INSTALL
|
abeefc | 2002-04-30 | Martin Stjernholm | | export noopt_retry
|
b5d929 | 1997-01-30 | Henrik Grubbström (Grubba) | |
|
8923cf | 2002-03-06 | Martin Stjernholm | | PIKE_SRC_DIR=$srcdir
export PIKE_SRC_DIR
BUILD_BASE=`pwd`
export BUILD_BASE
|
c37c7e | 1999-03-26 | Fredrik Hübinette (Hubbe) | | default_master=$prefix/pike/%d.%d.%d/lib/master.pike
|
af5647 | 1996-12-03 | Fredrik Hübinette (Hubbe) | | AC_DEFINE_UNQUOTED(DEFAULT_MASTER,"$default_master")
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | AC_SUBST(WARN)
|
91006b | 2000-03-21 | Fredrik Hübinette (Hubbe) | | AC_SUBST(PROFIL)
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | | AC_SUBST(OPTIMIZE)
AC_SUBST(EXTRA_OBJS)
AC_SUBST(RANLIB)
|
51bd9e | 1996-10-09 | Fredrik Hübinette (Hubbe) | | AC_SUBST(DEBUGDEF)
|
1f2133 | 2000-07-28 | Fredrik Hübinette (Hubbe) | | AC_SUBST(EXTRA_MODULE_REQUIREMENTS)
|
abeefc | 2002-04-30 | Martin Stjernholm | | AC_SUBST(noopt_retry)
|
417454 | 2001-01-26 | Martin Stjernholm | |
|
8334e3 | 1999-01-29 | Fredrik Hübinette (Hubbe) | | pike_cv_prog_CC="${CC}"
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
417454 | 2001-01-26 | Martin Stjernholm | | #############################################################################
|
1acce8 | 2001-01-27 | Martin Stjernholm | | AC_CONFIG_SUBDIRS(modules post_modules)
|
417454 | 2001-01-26 | Martin Stjernholm | | AC_SUBST_FILE(dependencies)
dependencies=$srcdir/dependencies
AC_SUBST(YACC)
AC_SUBST(INSTALL)
AC_SUBST(ac_configure_args)
|
6fa228 | 1997-11-04 | Henrik Grubbström (Grubba) | | AC_SUBST(dmmsrc)
|
39bc07 | 2002-09-09 | Marcus Comstedt | | AC_OUTPUT(Makefile modules/static_module_makefile post_modules/static_module_makefile:modules/static_module_makefile.in modules/dynamic_module_makefile:$dmmsrc post_modules/dynamic_module_makefile:$dmmsrc precompile.sh specs,[echo foo >stamp-h ; chmod +x precompile.sh])
|
5267b7 | 1995-08-09 | Fredrik Hübinette (Hubbe) | |
|
f65549 | 2001-02-13 | Mirar (Pontus Hagland) | | # NOTE: M4 uses [] as quotes.
|
78adef | 2002-08-31 | Martin Nilsson | | PIKE_VERSION="`sed -n -e 's/^.*PIKE_MAJOR_VERSION[[ \t]]*\([[^ \t]]*\)/\1/p' <$srcdir/version.h`.`sed -n -e 's/^.*PIKE_MINOR_VERSION[[ \t]]*\([[^ \t]]*\)/\1/p' <$srcdir/version.h`.`sed -n -e 's/^.*PIKE_BUILD_VERSION[[ \t]]*\([[^ \t]]*\)/\1/p' <$srcdir/version.h`"
PIKE_VERSION_LONG="Pike v`sed -n -e 's/^.*PIKE_MAJOR_VERSION[[ \t]]*\([[^ \t]]*\)/\1/p' <$srcdir/version.h`.`sed -n -e 's/^.*PIKE_MINOR_VERSION[[ \t]]*\([[^ \t]]*\)/\1/p' <$srcdir/version.h` release `sed -n -e 's/^.*PIKE_BUILD_VERSION[[ \t]]*\([[^ \t]]*\)/\1/p' <$srcdir/version.h`"
|
f65549 | 2001-02-13 | Mirar (Pontus Hagland) | |
|
684435 | 2001-02-14 | Mirar (Pontus Hagland) | |
cat >conftest.c <<EOF
#include "global.h"
--
FLOAT_TYPE
INT_TYPE
EOF
|
48e8c5 | 2001-02-14 | Mirar (Pontus Hagland) | | $CPP -I. -I$srcdir conftest.c > conftest.cpp
|
684435 | 2001-02-14 | Mirar (Pontus Hagland) | | sed <conftest.cpp >conftypes.txt '1,/^--$/d'
|
299a4e | 2002-03-14 | Martin Stjernholm | | if test "x$with_cdebug" = x; then
with_cdebug=no
|
e45ef2 | 2001-02-14 | Mirar (Pontus Hagland) | | fi
if test "x$with_rtldebug" = x; then
with_rtldebug=no
fi
if test "x$with_dmalloc" = x; then
with_dmalloc=no
fi
|
ec2931 | 2001-03-19 | Mirar (Pontus Hagland) | | with_mmx=$pike_cv_sys_has_working_mmx
if test "x$with_mmx" = x; then
with_mmx=no
fi
|
0361cf | 2001-02-16 | Henrik Grubbström (Grubba) | |
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | if test "x$with_copt" = xno ; then
opt_reasons=" ($OPT_NOT_USED turned off with --without-copt)"
else
opt_reasons=
fi
|
0361cf | 2001-02-16 | Henrik Grubbström (Grubba) | | rm config.info 2>/dev/null
cat >>config.info <<EOF
=========================================================
$PIKE_VERSION_LONG configuration summary
|
7d3046 | 2001-02-16 | Henrik Grubbström (Grubba) | | install information:
|
0361cf | 2001-02-16 | Henrik Grubbström (Grubba) | | prefix........ $prefix
pike binary... $prefix/bin/pike
|
f5a227 | 2001-02-20 | Mirar (Pontus Hagland) | | pike library.. $prefix/pike/${PIKE_VERSION}/lib
|
0361cf | 2001-02-16 | Henrik Grubbström (Grubba) | |
|
7d8a1b | 2001-02-18 | Mirar (Pontus Hagland) | | system information:
system.... $UNAME`echo $pike_cv_libgcc_filename | sed -n -e 's+^.*gcc-lib/\([[^/]]*\)/.*$+ (\1)+p'`
|
0361cf | 2001-02-16 | Henrik Grubbström (Grubba) | | EOF
|
7d8a1b | 2001-02-18 | Mirar (Pontus Hagland) | | uname -a >/dev/null 2>/dev/null && echo "uname..... `uname -a`" >>config.info
hostname >/dev/null 2>/dev/null && echo "hostname.. `hostname`" >>config.info
whoami >/dev/null 2>/dev/null && echo "user...... `whoami`" >>config.info
# too many dots makes too long lines, keep them as short as possible
# inside each section
|
0361cf | 2001-02-16 | Henrik Grubbström (Grubba) | |
cat >>config.info <<EOF
|
7d8a1b | 2001-02-18 | Mirar (Pontus Hagland) | |
build information:
source path..... $srcdir
build path...... $BUILDDIR
cpp............. $CPP
cc.............. $CC
ld.............. $LD
cc shared....... $CCSHARED
ld shared....... $LINKFORSHARED
pike............ $PIKE
install......... $INSTALL
shared object... .$SO
libs............ $LIBS
cross-compiled.. $cross_compiling
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | CPPFLAGS........$CPPFLAGS
CFLAGS (opt)....$OPTIMIZE$opt_reasons
CFLAGS (warn)...$WARN
CFLAGS (misc)...$CFLAGS $OSFLAGS $PROFIL
LDFLAGS.........$LDFLAGS $LINKFORSHARED $EXTRALDFLAGS
EOF
# insert information about debugging tools here, if they are turned on
if test "x$with_valgrind" != xno ; then
cat >>config.info <<EOF
valgrind........ yes, using $VALGRIND $VALGRINDARGS
EOF
fi
|
0361cf | 2001-02-16 | Henrik Grubbström (Grubba) | |
|
aae03c | 2002-12-11 | Mirar (Pontus Hagland) | | cat >>config.info <<EOF
|
0361cf | 2001-02-16 | Henrik Grubbström (Grubba) | | features:
|
7d8a1b | 2001-02-18 | Mirar (Pontus Hagland) | | PAD_FEATURE([dynamic loading])$pike_cv_sys_dynamic_loading
PAD_FEATURE([threads])$using_threads
|
0e126a | 2002-08-19 | Henrik Grubbström (Grubba) | | PAD_FEATURE([signal handler])$signal_handler
|
299a4e | 2002-03-14 | Martin Stjernholm | | PAD_FEATURE([cdebug])$with_cdebug
|
7d8a1b | 2001-02-18 | Mirar (Pontus Hagland) | | PAD_FEATURE([rtldebug])$with_rtldebug
|
299a4e | 2002-03-14 | Martin Stjernholm | | PAD_FEATURE([dmalloc])$with_dmalloc
|
ec2931 | 2001-03-19 | Mirar (Pontus Hagland) | | PAD_FEATURE([mmx])$with_mmx$mmx_reason
|
91d3b1 | 2002-04-07 | Martin Stjernholm | | PAD_FEATURE([byte code format])$byte_code_format
|
4839dd | 2001-09-02 | Marcus Comstedt | | PAD_FEATURE([module reloc])${with_relocatable_dumped_modules:-no}
|
8fe18a | 2002-12-12 | Mirar (Pontus Hagland) | | PAD_FEATURE([use machine code])$with_machine_code
|
0361cf | 2001-02-16 | Henrik Grubbström (Grubba) | | EOF
|
f65549 | 2001-02-13 | Mirar (Pontus Hagland) | |
|
bc74ca | 2001-02-15 | Mirar (Pontus Hagland) | | touch confdefs.h 2>/dev/null
|
4b6339 | 2002-12-10 | Mirar (Pontus Hagland) | | OLD_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="-I. -I$srcdir $CPPFLAGS"
|
684435 | 2001-02-14 | Mirar (Pontus Hagland) | | AC_TRY_RUN([
#include "global.h"
#include "svalue.h"
int main()
{
|
0361cf | 2001-02-16 | Henrik Grubbström (Grubba) | | FILE *fp, *out;
char float_type[80] = "?";
char int_type[80] = "?";
|
684435 | 2001-02-14 | Mirar (Pontus Hagland) | | char *s;
struct svalue sval;
|
0361cf | 2001-02-16 | Henrik Grubbström (Grubba) | | out=fopen("config.info", "a");
|
37ad40 | 2001-02-15 | Mirar (Pontus Hagland) | | if (!out) return 1;
|
0361cf | 2001-02-16 | Henrik Grubbström (Grubba) | | fp=fopen("conftypes.txt", "r");
|
7d8a1b | 2001-02-18 | Mirar (Pontus Hagland) | | if (fp)
|
48e8c5 | 2001-02-14 | Mirar (Pontus Hagland) | | {
|
0361cf | 2001-02-16 | Henrik Grubbström (Grubba) | | fgets(float_type, 79, fp);
fgets(int_type, 79, fp);
|
48e8c5 | 2001-02-14 | Mirar (Pontus Hagland) | | s=float_type; while (*s && *s!='\n' && *s!='\r') s++; *s=0;
s=int_type; while (*s && *s!='\n' && *s!='\r') s++; *s=0;
|
7d8a1b | 2001-02-18 | Mirar (Pontus Hagland) | | fprintf(out,"]PAD_FEATURE([float type])[%s (%d bytes)\n",
float_type, sizeof(FLOAT_TYPE));
fprintf(out,"]PAD_FEATURE([int type])[%s (%d bytes)\n",
int_type, sizeof(INT_TYPE));
|
684435 | 2001-02-14 | Mirar (Pontus Hagland) | |
|
48e8c5 | 2001-02-14 | Mirar (Pontus Hagland) | | fclose(fp);
}
|
7d8a1b | 2001-02-18 | Mirar (Pontus Hagland) | | fprintf(out,"]PAD_FEATURE([pointer size])[%d bytes\n",
sizeof(void*));
fprintf(out,"]PAD_FEATURE([svalue size])[%d bytes (%d+%d+%d)\n",
sizeof(sval),
sizeof(sval.type),
sizeof(sval.subtype),
sizeof(sval.u));
|
684435 | 2001-02-14 | Mirar (Pontus Hagland) | |
|
37ad40 | 2001-02-15 | Mirar (Pontus Hagland) | | fclose(out);
|
684435 | 2001-02-14 | Mirar (Pontus Hagland) | |
return 0;
}
|
0361cf | 2001-02-16 | Henrik Grubbström (Grubba) | | ],[],[],[:])
|
684435 | 2001-02-14 | Mirar (Pontus Hagland) | | rm conftypes.txt 2>/dev/null
|
4b6339 | 2002-12-10 | Mirar (Pontus Hagland) | | CPPFLAGS="$OLD_CPPFLAGS"
|
684435 | 2001-02-14 | Mirar (Pontus Hagland) | |
|
e45ef2 | 2001-02-14 | Mirar (Pontus Hagland) | | echo >>config.info
|
f65549 | 2001-02-13 | Mirar (Pontus Hagland) | | ls -1 pike_*.feature 2>/dev/null | xargs cat | sort >>config.info
|
8c885e | 2001-02-13 | Mirar (Pontus Hagland) | | ls -1 post_modules/*/pike_*.feature modules/*/pike_*.feature 2>/dev/null | xargs cat | sort >>config.info
|
f65549 | 2001-02-13 | Mirar (Pontus Hagland) | |
|
b7890d | 2002-12-11 | Mirar (Pontus Hagland) | | if test -f config.warnings; then
echo >>config.info
echo 'Warnings and notes summary:' >>config.info
cat config.warnings >>config.info
fi
echo
|
f65549 | 2001-02-13 | Mirar (Pontus Hagland) | | echo "=========================================================" >>config.info
cat config.info
|
6c8437 | 2002-09-03 | Henrik Grubbström (Grubba) | | if test "x$config_fail" = "x"; then :; else
echo 1>&2
echo 1>&2
echo "Configuration error: $config_fail" 1>&2
echo 1>&2
exit 1
fi
|