diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2008-04-15 01:24:19 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2008-04-15 01:24:19 -0400 |
commit | 8558d3925ee2931b654a19f243bfa8b3be0bfc12 (patch) | |
tree | 359a095332d99015797bf6129cd8d4b356a1af3d | |
parent | d9bdb83d6f14ddfb2980b62655a12cd11771af88 (diff) | |
download | systemtap-steved-8558d3925ee2931b654a19f243bfa8b3be0bfc12.tar.gz systemtap-steved-8558d3925ee2931b654a19f243bfa8b3be0bfc12.tar.xz systemtap-steved-8558d3925ee2931b654a19f243bfa8b3be0bfc12.zip |
PR6405, start of rhel4 compatibility
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | Makefile.in | 2 |
3 files changed, 8 insertions, 2 deletions
@@ -1,5 +1,11 @@ 2008-04-15 Frank Ch. Eigler <fche@elastic.org> + PR 6405 cont'd. + * Makefile.am (AM_CFLAGS): Remove -Wshadow, as it triggers for + new stapio (modname global vs. dwfl headers). + +2008-04-15 Frank Ch. Eigler <fche@elastic.org> + PR 6405 * buildrun.cxx (compile_pass): Add STAPCONF_MODULE_NSECTIONS. diff --git a/Makefile.am b/Makefile.am index f6061da0..03fdd8c2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -7,7 +7,7 @@ pkglibexecdir = ${libexecdir}/${PACKAGE} AM_CPPFLAGS = -DBINDIR='"$(bindir)"' -DPKGDATADIR='"${pkgdatadir}"' -DPKGLIBDIR='"$(pkglibexecdir)"' -AM_CFLAGS = -D_GNU_SOURCE -fexceptions -Wall -Werror -Wshadow -Wunused -Wformat=2 -W +AM_CFLAGS = -D_GNU_SOURCE -fexceptions -Wall -Werror -Wunused -Wformat=2 -W AM_CXXFLAGS = -Wall -Werror dist_man_MANS = stap.1 stapprobes.5 stapfuncs.5 stapex.5 staprun.8 man/stapprobes.iosched.5 man/stapprobes.netdev.5 man/stapprobes.nfs.5 man/stapprobes.nfsd.5 man/stapprobes.pagefault.5 man/stapprobes.process.5 man/stapprobes.rpc.5 man/stapprobes.scsi.5 man/stapprobes.signal.5 man/stapprobes.socket.5 man/stapprobes.tcp.5 man/stapprobes.udp.5 diff --git a/Makefile.in b/Makefile.in index 26080a85..e1db0a3d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -271,7 +271,7 @@ top_srcdir = @top_srcdir@ AUTOMAKE_OPTIONS = dist-bzip2 pkglibexecdir = ${libexecdir}/${PACKAGE} AM_CPPFLAGS = -DBINDIR='"$(bindir)"' -DPKGDATADIR='"${pkgdatadir}"' -DPKGLIBDIR='"$(pkglibexecdir)"' -AM_CFLAGS = -D_GNU_SOURCE -fexceptions -Wall -Werror -Wshadow -Wunused -Wformat=2 -W +AM_CFLAGS = -D_GNU_SOURCE -fexceptions -Wall -Werror -Wunused -Wformat=2 -W AM_CXXFLAGS = -Wall -Werror dist_man_MANS = stap.1 stapprobes.5 stapfuncs.5 stapex.5 staprun.8 man/stapprobes.iosched.5 man/stapprobes.netdev.5 man/stapprobes.nfs.5 man/stapprobes.nfsd.5 man/stapprobes.pagefault.5 man/stapprobes.process.5 man/stapprobes.rpc.5 man/stapprobes.scsi.5 man/stapprobes.signal.5 man/stapprobes.socket.5 man/stapprobes.tcp.5 man/stapprobes.udp.5 stap_SOURCES = main.cxx \ |