diff options
author | David Smith <dsmith@redhat.com> | 2009-10-15 12:39:15 -0500 |
---|---|---|
committer | David Smith <dsmith@redhat.com> | 2009-10-15 12:39:15 -0500 |
commit | f8a493892377692c1c8f60c38ee05ac1fa77a8ed (patch) | |
tree | 4845544cdf4b8f3abbc586548309cd4b421e3fb9 /grapher/Makefile.in | |
parent | f77aa5c5e1578ca99b88faafc17fe09c86d687e4 (diff) | |
download | systemtap-steved-f8a493892377692c1c8f60c38ee05ac1fa77a8ed.tar.gz systemtap-steved-f8a493892377692c1c8f60c38ee05ac1fa77a8ed.tar.xz systemtap-steved-f8a493892377692c1c8f60c38ee05ac1fa77a8ed.zip |
Updated checking for grapher dependencies.
* configure.ac: Made sure nss includes will error even if only 1 header
isn't usable. Added grapher dependencies gtkmm and boost headers.
* Makefile.in: Regenerated.
* config.in: Ditto.
* configure: Ditto.
* doc/Makefile.in: Ditto.
* doc/SystemTap_Tapset_Reference/Makefile.in: Ditto.
* grapher/Makefile.am: Use libglade CFLAGS/LIBS.
* grapher/Makefile.in: Regenerated.
Diffstat (limited to 'grapher/Makefile.in')
-rw-r--r-- | grapher/Makefile.in | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/grapher/Makefile.in b/grapher/Makefile.in index c2df5752..16f78dc9 100644 --- a/grapher/Makefile.in +++ b/grapher/Makefile.in @@ -195,6 +195,8 @@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ +libglade_CFLAGS = @libglade_CFLAGS@ +libglade_LIBS = @libglade_LIBS@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ @@ -220,10 +222,14 @@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ @BUILD_GRAPHER_TRUE@man_MANS = stapgraph.1 + +# Note that since libglade_CFLAGS/libglade_LIBS variables are a +# "superset" of the gtkmm_CFLAGS/gtkmm_LIBS variabes, we'll just use +# the libglade ones. @BUILD_GRAPHER_TRUE@stapgraph_CPPFLAGS = -DPKGDATADIR='"${pkgdatadir}"' -@BUILD_GRAPHER_TRUE@stapgraph_CXXFLAGS = $(gtkmm_CFLAGS) -Wall -Werror +@BUILD_GRAPHER_TRUE@stapgraph_CXXFLAGS = $(libglade_CFLAGS) -Wall -Werror @BUILD_GRAPHER_TRUE@stapgraph_SOURCES = grapher.cxx StapParser.cxx Graph.cxx GraphWidget.cxx CairoWidget.cxx -@BUILD_GRAPHER_TRUE@stapgraph_LDADD = $(gtkmm_LIBS) +@BUILD_GRAPHER_TRUE@stapgraph_LDADD = $(libglade_LIBS) @BUILD_GRAPHER_TRUE@dist_pkgdata_DATA = graph-dialog.glade stap-start.glade all: all-am |