pike.git
/
src
/
configure.in
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/configure.in:1:
-
AC_REVISION("$Id: configure.in,v 1.
991
2006/08/08
22:
23:
08
mast
Exp $")
+
AC_REVISION("$Id: configure.in,v 1.
992
2006/08/08 23:
47:31
nilsson
Exp $")
AC_INIT(interpret.c) AC_CONFIG_HEADER(machine.h) rm -f config.warnings 2>/dev/null if_autoconf(2,50,[ if test "x$cache_file" = "x/dev/null"; then cache_file=./config.cache if test -r "$cache_file"; then echo "loading cache $cache_file"
pike.git/src/configure.in:1434:
[AC_DEFINE_UNQUOTED(PIKE_THREAD_C_STACK_SIZE,($withval))], [AC_DEFINE(PIKE_THREAD_C_STACK_SIZE,(256 * 1024))]) AC_ARG_WITH(devpoll, MY_DESCR([--without-devpoll], [disable support for /dev/poll]), [],[with_devpoll=yes]) 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])) 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(valgrind, MY_DESCR([--with-valgrind=path], [Support for running with valgrind. Implies --with-cleanup-on-exit.]), [ if test "x$with_valgrind" = "xyes"; then AC_PATH_PROG(with_valgrind, valgrind, no) if test "x$with_valgrind" = "xno"; then PIKE_MSG_WARN(valgrind not found, disabled.) else :; fi
pike.git/src/configure.in:2289:
############################################################################# # Script to translate from POSIX paths to native paths. echo "Creating posix_to_native.sh..." if test "x$PIKE_PATH_TRANSLATE" = "x"; then if test "x$pike_cv_is_mingw" = "xyes"; then # MinGW system. cat <<\EOF #!/bin/sh
-
# Automatically generated by $Id: configure.in,v 1.
991
2006/08/08
22:
23:
08
mast
Exp $.
+
# Automatically generated by $Id: configure.in,v 1.
992
2006/08/08 23:
47:31
nilsson
Exp $.
# MinGW-version. Do NOT edit. posix_name="`cat`" posix_prefix="/" native_prefix="/" case "$posix_name" in /*) ;; *) posix_name="`pwd`/$posix_name" ;; esac case "$posix_name" in EOF
pike.git/src/configure.in:2327:
cat <<\EOF esac echo "$posix_name" | \ sed -e "s,^$posix_prefix,$native_prefix," | \ sed -e 's/\/\//\//g' EOF else # Native POSIX system. cat <<\EOF #!/bin/sh
-
# Automatically generated by $Id: configure.in,v 1.
991
2006/08/08
22:
23:
08
mast
Exp $.
+
# Automatically generated by $Id: configure.in,v 1.
992
2006/08/08 23:
47:31
nilsson
Exp $.
# POSIX-version. Do NOT edit. cat EOF fi else # rntcl-style cat <<\EOF #!/bin/sh
-
# Automatically generated by $Id: configure.in,v 1.
991
2006/08/08
22:
23:
08
mast
Exp $.
+
# Automatically generated by $Id: configure.in,v 1.
992
2006/08/08 23:
47:31
nilsson
Exp $.
# RNTCL-version. Do NOT edit. sed -e "$PIKE_PATH_TRANSLATE" EOF fi >posix_to_native.sh chmod a+x posix_to_native.sh ############################################################################# if test ! -d modules/. ; then