torsava / rpms / python3

Forked from rpms/python3 6 years ago
Clone
1c94c1a
diff -up Python-3.3.0b1/configure.ac.more-configuration-flags Python-3.3.0b1/configure.ac
1c94c1a
--- Python-3.3.0b1/configure.ac.more-configuration-flags	2012-07-20 13:25:33.232864839 -0400
1c94c1a
+++ Python-3.3.0b1/configure.ac	2012-07-20 13:25:33.314863815 -0400
1c94c1a
@@ -2585,6 +2585,30 @@ else AC_MSG_RESULT(no)
021b2bc
 fi],
021b2bc
 [AC_MSG_RESULT(no)])
021b2bc
 
021b2bc
+AC_MSG_CHECKING(for --with-count-allocs)
021b2bc
+AC_ARG_WITH(count-allocs,
021b2bc
+[  --with(out)count-allocs  enable/disable per-type instance accounting], [
021b2bc
+if test "$withval" != no
021b2bc
+then 
021b2bc
+  AC_DEFINE(COUNT_ALLOCS, 1,
021b2bc
+    [Define to keep records of the number of instances of each type]) 
021b2bc
+    AC_MSG_RESULT(yes)
021b2bc
+else AC_MSG_RESULT(no)
021b2bc
+fi],
021b2bc
+[AC_MSG_RESULT(no)])
021b2bc
+
021b2bc
+AC_MSG_CHECKING(for --with-call-profile)
021b2bc
+AC_ARG_WITH(call-profile,
021b2bc
+[  --with(out)-call-profile  enable/disable statistics on function call invocation], [
021b2bc
+if test "$withval" != no
021b2bc
+then 
021b2bc
+  AC_DEFINE(CALL_PROFILE, 1, 
021b2bc
+    [Define to keep records on function call invocation]) 
021b2bc
+    AC_MSG_RESULT(yes)
021b2bc
+else AC_MSG_RESULT(no)
021b2bc
+fi],
021b2bc
+[AC_MSG_RESULT(no)])
021b2bc
+
021b2bc
 # Check for Python-specific malloc support
021b2bc
 AC_MSG_CHECKING(for --with-pymalloc)
021b2bc
 AC_ARG_WITH(pymalloc,
1c94c1a
diff -up Python-3.3.0b1/pyconfig.h.in.more-configuration-flags Python-3.3.0b1/pyconfig.h.in
1c94c1a
--- Python-3.3.0b1/pyconfig.h.in.more-configuration-flags	2012-07-20 13:25:33.000000000 -0400
1c94c1a
+++ Python-3.3.0b1/pyconfig.h.in	2012-07-20 13:26:02.826494869 -0400
1c94c1a
@@ -12,6 +12,12 @@
1c94c1a
    support for AIX C++ shared extension modules. */
1c94c1a
 #undef AIX_GENUINE_CPLUSPLUS
021b2bc
 
021b2bc
+/* Define to keep records on function call invocation */
021b2bc
+#undef CALL_PROFILE
021b2bc
+
021b2bc
+/* Define to keep records of the number of instances of each type */
021b2bc
+#undef COUNT_ALLOCS
021b2bc
+
021b2bc
 /* Define if C doubles are 64-bit IEEE 754 binary format, stored in ARM
021b2bc
    mixed-endian order (byte order 45670123) */
021b2bc
 #undef DOUBLE_IS_ARM_MIXED_ENDIAN_IEEE754