2010-07-21 20:48:17 +00:00
|
|
|
diff -up ./configure.autotool-intermediates ./configure
|
2010-12-29 03:46:51 +00:00
|
|
|
--- ./configure.autotool-intermediates 2010-12-23 16:14:04.399059791 -0500
|
|
|
|
+++ ./configure 2010-12-23 16:14:05.922060430 -0500
|
2010-07-21 20:48:17 +00:00
|
|
|
@@ -1,5 +1,5 @@
|
|
|
|
#! /bin/sh
|
2010-12-29 03:46:51 +00:00
|
|
|
-# From configure.in Revision: 86043 .
|
|
|
|
+# From configure.in Revision: 86076 .
|
2010-07-21 20:48:17 +00:00
|
|
|
# Guess values for system-dependent variables and create Makefiles.
|
|
|
|
# Generated by GNU Autoconf 2.65 for python 2.7.
|
|
|
|
#
|
|
|
|
@@ -611,6 +611,8 @@ TRUE
|
|
|
|
MACHDEP_OBJS
|
|
|
|
DYNLOADFILE
|
|
|
|
DLINCLDIR
|
|
|
|
+DTRACEHDRS
|
|
|
|
+DTRACEOBJS
|
|
|
|
THREADOBJ
|
|
|
|
LDLAST
|
|
|
|
USE_THREAD_MODULE
|
|
|
|
@@ -631,6 +633,8 @@ OTHER_LIBTOOL_OPT
|
|
|
|
UNIVERSAL_ARCH_FLAGS
|
|
|
|
BASECFLAGS
|
|
|
|
OPT
|
|
|
|
+DEBUG_SUFFIX
|
|
|
|
+DEBUG_EXT
|
|
|
|
LN
|
|
|
|
INSTALL_DATA
|
|
|
|
INSTALL_SCRIPT
|
|
|
|
@@ -748,8 +752,11 @@ with_pth
|
|
|
|
enable_ipv6
|
|
|
|
with_doc_strings
|
|
|
|
with_tsc
|
|
|
|
+with_count_allocs
|
|
|
|
+with_call_profile
|
|
|
|
with_pymalloc
|
|
|
|
with_valgrind
|
|
|
|
+with_dtrace
|
|
|
|
with_wctype_functions
|
|
|
|
with_fpectl
|
|
|
|
with_libm
|
|
|
|
@@ -1422,8 +1429,11 @@ Optional Packages:
|
|
|
|
--with-pth use GNU pth threading libraries
|
|
|
|
--with(out)-doc-strings disable/enable documentation strings
|
|
|
|
--with(out)-tsc enable/disable timestamp counter profile
|
|
|
|
+ --with(out)count-allocs enable/disable per-type instance accounting
|
|
|
|
+ --with(out)-call-profile enable/disable statistics on function call invocation
|
|
|
|
--with(out)-pymalloc disable/enable specialized mallocs
|
|
|
|
--with-valgrind Enable Valgrind support
|
|
|
|
+ --with(out)-dtrace disable/enable dtrace support
|
|
|
|
--with-wctype-functions use wctype.h functions
|
|
|
|
--with-fpectl enable SIGFPE catching
|
|
|
|
--with-libm=STRING math library
|
2010-12-29 03:46:51 +00:00
|
|
|
@@ -1934,11 +1944,11 @@ else
|
|
|
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
|
|
/* end confdefs.h. */
|
|
|
|
$ac_includes_default
|
|
|
|
- enum { N = $2 / 2 - 1 };
|
|
|
|
int
|
|
|
|
main ()
|
|
|
|
{
|
|
|
|
-static int test_array [1 - 2 * !(0 < ($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 1))];
|
|
|
|
+static int test_array [1 - 2 * !(enum { N = $2 / 2 - 1 };
|
|
|
|
+ 0 < ($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 1))];
|
|
|
|
test_array [0] = 0
|
|
|
|
|
|
|
|
;
|
|
|
|
@@ -1949,11 +1959,11 @@ if ac_fn_c_try_compile "$LINENO"; then :
|
|
|
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
|
|
/* end confdefs.h. */
|
|
|
|
$ac_includes_default
|
|
|
|
- enum { N = $2 / 2 - 1 };
|
|
|
|
int
|
|
|
|
main ()
|
|
|
|
{
|
|
|
|
-static int test_array [1 - 2 * !(($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 1)
|
|
|
|
+static int test_array [1 - 2 * !(enum { N = $2 / 2 - 1 };
|
|
|
|
+ ($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 1)
|
|
|
|
< ($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 2))];
|
|
|
|
test_array [0] = 0
|
|
|
|
|
2010-07-21 20:48:17 +00:00
|
|
|
@@ -4739,7 +4749,7 @@ esac
|
|
|
|
$as_echo_n "checking LIBRARY... " >&6; }
|
|
|
|
if test -z "$LIBRARY"
|
|
|
|
then
|
|
|
|
- LIBRARY='libpython$(VERSION).a'
|
|
|
|
+ LIBRARY='libpython$(VERSION)$(DEBUG_EXT).a'
|
|
|
|
fi
|
|
|
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBRARY" >&5
|
|
|
|
$as_echo "$LIBRARY" >&6; }
|
|
|
|
@@ -4913,8 +4923,8 @@ $as_echo "#define Py_ENABLE_SHARED 1" >>
|
|
|
|
INSTSONAME="$LDLIBRARY".$SOVERSION
|
|
|
|
;;
|
|
|
|
Linux*|GNU*|NetBSD*|FreeBSD*|DragonFly*)
|
|
|
|
- LDLIBRARY='libpython$(VERSION).so'
|
|
|
|
- BLDLIBRARY='-L. -lpython$(VERSION)'
|
|
|
|
+ LDLIBRARY='libpython$(VERSION)$(DEBUG_EXT).so'
|
|
|
|
+ BLDLIBRARY='-L. -lpython$(VERSION)$(DEBUG_EXT)'
|
|
|
|
RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}
|
|
|
|
case $ac_sys_system in
|
|
|
|
FreeBSD*)
|
|
|
|
@@ -4937,7 +4947,7 @@ $as_echo "#define Py_ENABLE_SHARED 1" >>
|
|
|
|
;;
|
|
|
|
OSF*)
|
|
|
|
LDLIBRARY='libpython$(VERSION).so'
|
|
|
|
- BLDLIBRARY='-rpath $(LIBDIR) -L. -lpython$(VERSION)'
|
|
|
|
+ BLDLIBRARY='-L. -lpython$(VERSION)'
|
|
|
|
RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}
|
|
|
|
;;
|
|
|
|
atheos*)
|
2010-12-29 03:46:51 +00:00
|
|
|
@@ -5318,6 +5328,14 @@ $as_echo "no" >&6; }
|
2010-07-21 20:48:17 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
+if test "$Py_DEBUG" = 'true'
|
|
|
|
+then
|
|
|
|
+ DEBUG_EXT=_d
|
|
|
|
+ DEBUG_SUFFIX=-debug
|
|
|
|
+fi
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
# XXX Shouldn't the code above that fiddles with BASECFLAGS and OPT be
|
|
|
|
# merged with this chunk of code?
|
|
|
|
|
2010-12-29 03:46:51 +00:00
|
|
|
@@ -9341,6 +9359,50 @@ $as_echo "no" >&6; }
|
2010-07-21 20:48:17 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for --with-count-allocs" >&5
|
|
|
|
+$as_echo_n "checking for --with-count-allocs... " >&6; }
|
|
|
|
+
|
|
|
|
+# Check whether --with-count-allocs was given.
|
|
|
|
+if test "${with_count_allocs+set}" = set; then :
|
|
|
|
+ withval=$with_count_allocs;
|
|
|
|
+if test "$withval" != no
|
|
|
|
+then
|
|
|
|
+
|
|
|
|
+$as_echo "#define COUNT_ALLOCS 1" >>confdefs.h
|
|
|
|
+
|
|
|
|
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
|
|
|
+$as_echo "yes" >&6; }
|
|
|
|
+else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
|
|
|
+$as_echo "no" >&6; }
|
|
|
|
+fi
|
|
|
|
+else
|
|
|
|
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
|
|
|
+$as_echo "no" >&6; }
|
|
|
|
+fi
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for --with-call-profile" >&5
|
|
|
|
+$as_echo_n "checking for --with-call-profile... " >&6; }
|
|
|
|
+
|
|
|
|
+# Check whether --with-call-profile was given.
|
|
|
|
+if test "${with_call_profile+set}" = set; then :
|
|
|
|
+ withval=$with_call_profile;
|
|
|
|
+if test "$withval" != no
|
|
|
|
+then
|
|
|
|
+
|
|
|
|
+$as_echo "#define CALL_PROFILE 1" >>confdefs.h
|
|
|
|
+
|
|
|
|
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
|
|
|
+$as_echo "yes" >&6; }
|
|
|
|
+else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
|
|
|
+$as_echo "no" >&6; }
|
|
|
|
+fi
|
|
|
|
+else
|
|
|
|
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
|
|
|
+$as_echo "no" >&6; }
|
|
|
|
+fi
|
|
|
|
+
|
|
|
|
+
|
|
|
|
# Check for Python-specific malloc support
|
|
|
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for --with-pymalloc" >&5
|
|
|
|
$as_echo_n "checking for --with-pymalloc... " >&6; }
|
2010-12-29 03:46:51 +00:00
|
|
|
@@ -9390,6 +9452,46 @@ fi
|
2010-07-21 20:48:17 +00:00
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
+# Check for dtrace support
|
|
|
|
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for --with-dtrace" >&5
|
|
|
|
+$as_echo_n "checking for --with-dtrace... " >&6; }
|
|
|
|
+
|
|
|
|
+# Check whether --with-dtrace was given.
|
|
|
|
+if test "${with_dtrace+set}" = set; then :
|
|
|
|
+ withval=$with_dtrace;
|
|
|
|
+fi
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+if test ! -z "$with_dtrace"
|
|
|
|
+then
|
|
|
|
+ if dtrace -G -o /dev/null -s $srcdir/Include/pydtrace.d 2>/dev/null
|
|
|
|
+ then
|
|
|
|
+
|
|
|
|
+$as_echo "#define WITH_DTRACE 1" >>confdefs.h
|
|
|
|
+
|
|
|
|
+ with_dtrace="Sun"
|
|
|
|
+ DTRACEOBJS="Python/dtrace.o"
|
|
|
|
+ DTRADEHDRS=""
|
|
|
|
+ elif dtrace -h -o /dev/null -s $srcdir/Include/pydtrace.d
|
|
|
|
+ then
|
|
|
|
+
|
|
|
|
+$as_echo "#define WITH_DTRACE 1" >>confdefs.h
|
|
|
|
+
|
|
|
|
+ with_dtrace="Apple"
|
|
|
|
+ DTRACEOBJS=""
|
|
|
|
+ DTRADEHDRS="pydtrace.h"
|
|
|
|
+ else
|
|
|
|
+ with_dtrace="no"
|
|
|
|
+ fi
|
|
|
|
+else
|
|
|
|
+ with_dtrace="no"
|
|
|
|
+fi
|
|
|
|
+
|
|
|
|
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_dtrace" >&5
|
|
|
|
+$as_echo "$with_dtrace" >&6; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
# Check for --with-wctype-functions
|
|
|
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for --with-wctype-functions" >&5
|
|
|
|
$as_echo_n "checking for --with-wctype-functions... " >&6; }
|
|
|
|
diff -up ./pyconfig.h.in.autotool-intermediates ./pyconfig.h.in
|
2010-12-29 03:46:51 +00:00
|
|
|
--- ./pyconfig.h.in.autotool-intermediates 2010-12-23 16:14:04.396063268 -0500
|
|
|
|
+++ ./pyconfig.h.in 2010-12-23 16:14:06.242367491 -0500
|
2010-07-21 20:48:17 +00:00
|
|
|
@@ -18,6 +18,12 @@
|
|
|
|
/* Define this if you have BeOS threads. */
|
|
|
|
#undef BEOS_THREADS
|
|
|
|
|
|
|
|
+/* Define to keep records on function call invocation */
|
|
|
|
+#undef CALL_PROFILE
|
|
|
|
+
|
|
|
|
+/* Define to keep records of the number of instances of each type */
|
|
|
|
+#undef COUNT_ALLOCS
|
|
|
|
+
|
|
|
|
/* Define if you have the Mach cthreads package */
|
|
|
|
#undef C_THREADS
|
|
|
|
|
2010-12-29 03:46:51 +00:00
|
|
|
@@ -1104,12 +1110,6 @@
|
2010-07-21 20:48:17 +00:00
|
|
|
/* Define to profile with the Pentium timestamp counter */
|
|
|
|
#undef WITH_TSC
|
|
|
|
|
|
|
|
-/* Define to keep records of the number of instances of each type */
|
|
|
|
-#undef COUNT_ALLOCS
|
|
|
|
-
|
|
|
|
-/* Define to keep records on function call invocation */
|
|
|
|
-#undef CALL_PROFILE
|
|
|
|
-
|
|
|
|
/* Define if you want pymalloc to be disabled when running under valgrind */
|
|
|
|
#undef WITH_VALGRIND
|
|
|
|
|