cce760d4ac
3.2.1; refresh lib64 patch (102), subprocess unit test patch (129), disabling of static library build (due to Modules/_testembed; patch 6), autotool intermediates (patch 300)
167 lines
4.5 KiB
Diff
167 lines
4.5 KiB
Diff
diff -up ./configure.autotool-intermediates ./configure
|
|
--- ./configure.autotool-intermediates 2011-07-11 11:50:06.910425999 -0400
|
|
+++ ./configure 2011-07-11 11:50:13.492426001 -0400
|
|
@@ -619,6 +619,8 @@ TRUE
|
|
MACHDEP_OBJS
|
|
DYNLOADFILE
|
|
DLINCLDIR
|
|
+DTRACEHDRS
|
|
+DTRACEOBJS
|
|
THREADOBJ
|
|
LDLAST
|
|
USE_THREAD_MODULE
|
|
@@ -764,8 +766,11 @@ with_thread
|
|
enable_ipv6
|
|
with_doc_strings
|
|
with_tsc
|
|
+with_count_allocs
|
|
+with_call_profile
|
|
with_pymalloc
|
|
with_valgrind
|
|
+with_dtrace
|
|
with_fpectl
|
|
with_libm
|
|
with_libc
|
|
@@ -781,7 +786,8 @@ CFLAGS
|
|
LDFLAGS
|
|
LIBS
|
|
CPPFLAGS
|
|
-CPP'
|
|
+CPP
|
|
+CPPFLAGS'
|
|
|
|
|
|
# Initialize some variables set by options.
|
|
@@ -1437,8 +1443,11 @@ Optional Packages:
|
|
deprecated; use --with(out)-threads
|
|
--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-fpectl enable SIGFPE catching
|
|
--with-libm=STRING math library
|
|
--with-libc=STRING C library
|
|
@@ -9284,6 +9293,50 @@ $as_echo "no" >&6; }
|
|
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; }
|
|
@@ -9336,6 +9389,46 @@ fi
|
|
OPT="-DDYNAMIC_ANNOTATIONS_ENABLED=1 $OPT"
|
|
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; }
|
|
+
|
|
+
|
|
+
|
|
# -I${DLINCLDIR} is added to the compile rule for importdl.o
|
|
|
|
DLINCLDIR=.
|
|
diff -up ./pyconfig.h.in.autotool-intermediates ./pyconfig.h.in
|
|
--- ./pyconfig.h.in.autotool-intermediates 2011-07-11 11:50:06.896426002 -0400
|
|
+++ ./pyconfig.h.in 2011-07-11 11:50:13.965426001 -0400
|
|
@@ -12,15 +12,15 @@
|
|
support for AIX C++ shared extension modules. */
|
|
#undef AIX_GENUINE_CPLUSPLUS
|
|
|
|
-/* Define if you have the Mach cthreads package */
|
|
-#undef C_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
|
|
+
|
|
/* Define if C doubles are 64-bit IEEE 754 binary format, stored in ARM
|
|
mixed-endian order (byte order 45670123) */
|
|
#undef DOUBLE_IS_ARM_MIXED_ENDIAN_IEEE754
|