diff options
author | Tim Moore <timoore@redhat.com> | 2009-04-20 09:08:08 +0200 |
---|---|---|
committer | Tim Moore <timoore@redhat.com> | 2009-04-20 10:03:45 +0200 |
commit | 1087b83f9b60e85d3d41cebd797f2eb4cc495bc6 (patch) | |
tree | 6e45b6fe2a8d2c3775d9a0ec3e2620cde3bbe591 /grapher/configure.ac | |
parent | a6e65750e80380d42ea238f3c688c3499de16d74 (diff) | |
download | systemtap-steved-1087b83f9b60e85d3d41cebd797f2eb4cc495bc6.tar.gz systemtap-steved-1087b83f9b60e85d3d41cebd797f2eb4cc495bc6.tar.xz systemtap-steved-1087b83f9b60e85d3d41cebd797f2eb4cc495bc6.zip |
Finish moving grapher into a subdirectory
* configure.ac (GRAPHER): Configuration prefix for variables defined by
PKG_CHECK_MODULES macro.
(BUILD_GRAPHER): New conditional variable
(enable-grapher): New option
(AC_CONFIG_FILES): Add grapher/Makefile
* Makefile.am (SUBDIRS): Add grapher
* grapher/Makefile.am: New file
Diffstat (limited to 'grapher/configure.ac')
-rw-r--r-- | grapher/configure.ac | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/grapher/configure.ac b/grapher/configure.ac deleted file mode 100644 index 81067e0f..00000000 --- a/grapher/configure.ac +++ /dev/null @@ -1,30 +0,0 @@ -dnl configure.ac --- autoconf input file for systemtap testsuite -dnl Process this file with autoconf to produce a configure script. - -AC_INIT([systemtap], 0.9.5, systemtap@sources.redhat.com, systemtap) - -AC_PREREQ(2.59) -AC_CONFIG_AUX_DIR(..) -AM_INIT_AUTOMAKE(foreign) -AM_MAINTAINER_MODE - -AM_PROG_MKDIR_P -AC_SUBST(MKDIR_P) -AC_PROG_LN_S -AC_PROG_CC -AC_PROG_CXX -AC_PROG_CPP -AM_PROG_CC_STDC -AM_PROG_CC_C_O -AM_C_PROTOTYPES -AC_PROG_RANLIB -AC_OBJEXT -AC_EXEEXT -AC_PROG_INSTALL -AC_PROG_MAKE_SET -AC_SUBST(CFLAGS) -AC_SUBST(CXXFLAGS) -PKG_CHECK_MODULES([GRAPHER], [gtkmm-2.4 >= 2.8.0]) - -AC_CONFIG_FILES(Makefile) -AC_OUTPUT |