summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--buildrun.cxx1
-rw-r--r--runtime/ChangeLog4
-rw-r--r--runtime/autoconf-module-nsections.c8
4 files changed, 8 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index d38a3705..e8f58408 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-07-24 Josh Stone <joshua.i.stone@intel.com>
+
+ * buildrun.cxx (compile_pass): Remove STAPCONF_MODULE_NSECTIONS
+
2008-07-23 Frank Ch. Eigler <fche@elastic.org>
From James Bottomley <James.Bottomley@HansenPartnership.com>:
diff --git a/buildrun.cxx b/buildrun.cxx
index 72c0d1c7..9aa13ef4 100644
--- a/buildrun.cxx
+++ b/buildrun.cxx
@@ -95,7 +95,6 @@ compile_pass (systemtap_session& s)
o << module_cflags << " += $(call stap_check_build, $(SYSTEMTAP_RUNTIME)/autoconf-x86-uniregs.c, -DSTAPCONF_X86_UNIREGS,)" << endl;
o << module_cflags << " += $(call stap_check_build, $(SYSTEMTAP_RUNTIME)/autoconf-nameidata.c, -DSTAPCONF_NAMEIDATA_CLEANUP,)" << endl;
o << module_cflags << " += $(call stap_check_build, $(SYSTEMTAP_RUNTIME)/autoconf-unregister-kprobes.c, -DSTAPCONF_UNREGISTER_KPROBES,)" << endl;
- o << module_cflags << " += $(call stap_check_build, $(SYSTEMTAP_RUNTIME)/autoconf-module-nsections.c, -DSTAPCONF_MODULE_NSECTIONS,)" << endl;
o << module_cflags << " += $(call stap_check_build, $(SYSTEMTAP_RUNTIME)/autoconf-real-parent.c, -DSTAPCONF_REAL_PARENT,)" << endl;
o << module_cflags << " += $(call stap_check_build, $(SYSTEMTAP_RUNTIME)/autoconf-uaccess.c, -DSTAPCONF_LINUX_UACCESS_H,)" << endl;
#if 0
diff --git a/runtime/ChangeLog b/runtime/ChangeLog
index f12b5d9a..9e4c3ec6 100644
--- a/runtime/ChangeLog
+++ b/runtime/ChangeLog
@@ -1,3 +1,7 @@
+2008-07-24 Josh Stone <joshua.i.stone@intel.com>
+
+ * runtime/autoconf-module-nsections.c: removed
+
2008-07-21 David Smith <dsmith@redhat.com>
* task_finder_vma.c (__stp_tf_vma_initialize): New function to
diff --git a/runtime/autoconf-module-nsections.c b/runtime/autoconf-module-nsections.c
deleted file mode 100644
index c1ce58b7..00000000
--- a/runtime/autoconf-module-nsections.c
+++ /dev/null
@@ -1,8 +0,0 @@
-#include <linux/module.h>
-
-struct module_sect_attrs x;
-
-void foo (void)
-{
- (void) x.nsections;
-}