Blame SOURCES/00113-more-configuration-flags.patch

98d66e
diff -up Python-2.6.5/configure.ac.more-configuration-flags Python-2.6.5/configure.ac
98d66e
--- Python-2.6.5/configure.ac.more-configuration-flags	2010-05-24 18:51:25.410111792 -0400
98d66e
+++ Python-2.6.5/configure.ac	2010-05-24 18:59:23.954986388 -0400
98d66e
@@ -2515,6 +2515,30 @@ else AC_MSG_RESULT(no)
98d66e
 fi],
98d66e
 [AC_MSG_RESULT(no)])
98d66e
 
98d66e
+AC_MSG_CHECKING(for --with-count-allocs)
98d66e
+AC_ARG_WITH(count-allocs,
98d66e
+[  --with(out)count-allocs  enable/disable per-type instance accounting], [
98d66e
+if test "$withval" != no
98d66e
+then 
98d66e
+  AC_DEFINE(COUNT_ALLOCS, 1,
98d66e
+    [Define to keep records of the number of instances of each type]) 
98d66e
+    AC_MSG_RESULT(yes)
98d66e
+else AC_MSG_RESULT(no)
98d66e
+fi],
98d66e
+[AC_MSG_RESULT(no)])
98d66e
+
98d66e
+AC_MSG_CHECKING(for --with-call-profile)
98d66e
+AC_ARG_WITH(call-profile,
98d66e
+[  --with(out)-call-profile  enable/disable statistics on function call invocation], [
98d66e
+if test "$withval" != no
98d66e
+then 
98d66e
+  AC_DEFINE(CALL_PROFILE, 1, 
98d66e
+    [Define to keep records on function call invocation]) 
98d66e
+    AC_MSG_RESULT(yes)
98d66e
+else AC_MSG_RESULT(no)
98d66e
+fi],
98d66e
+[AC_MSG_RESULT(no)])
98d66e
+
98d66e
 # Check for Python-specific malloc support
98d66e
 AC_MSG_CHECKING(for --with-pymalloc)
98d66e
 AC_ARG_WITH(pymalloc,
98d66e
diff -up Python-2.6.5/pyconfig.h.in.more-configuration-flags Python-2.6.5/pyconfig.h.in
98d66e
--- Python-2.6.5/pyconfig.h.in.more-configuration-flags	2010-05-24 18:51:45.677988086 -0400
98d66e
+++ Python-2.6.5/pyconfig.h.in	2010-05-24 19:00:44.163987730 -0400
98d66e
@@ -1019,6 +1019,12 @@
98d66e
 /* Define to profile with the Pentium timestamp counter */
98d66e
 #undef WITH_TSC
98d66e
 
98d66e
+/* Define to keep records of the number of instances of each type */
98d66e
+#undef COUNT_ALLOCS
98d66e
+
98d66e
+/* Define to keep records on function call invocation */
98d66e
+#undef CALL_PROFILE
98d66e
+
98d66e
 /* Define if you want pymalloc to be disabled when running under valgrind */
98d66e
 #undef WITH_VALGRIND
98d66e