From 2ed04863c3426f94932d4a4e4b5d6c7b84e49dfd Mon Sep 17 00:00:00 2001 From: William Cohen Date: Wed, 27 May 2009 11:14:12 -0400 Subject: Suggest rpms to install using debuginfo-install. The patch makes use of the RPM libraries to determine which rpm supplied the executable and from that information suggest a command to install the appropriate debuginfo rpm. This is enabled using the "--with-rpm" option for configure. Can be explicitly disabled with "--without-rpm". --- config.in | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'config.in') diff --git a/config.in b/config.in index dc6be35c..7369cf53 100644 --- a/config.in +++ b/config.in @@ -89,3 +89,9 @@ /* Define like PROTOTYPES; this can be used by system headers. */ #undef __PROTOTYPES + +/* librpm version specific library name to dlopen. */ +#undef DLOPEN_LIBRPM + +/* Define if librpm library is being used. */ +#undef HAVE_LIBRPM -- cgit From 6d14a4a9f3b6b8a02fcac0b95961b9b08e9fda0b Mon Sep 17 00:00:00 2001 From: Elliott Baron Date: Fri, 5 Jun 2009 11:40:34 -0400 Subject: PR10209: extend configury for --disable-translator * configure.ac: Added --disable-translator feature, creates AM_CONDITIONAL BUILD_TRANSLATOR. * Makefile.am: Only build runtime components (staprun, stapio) if BUILD_TRANSLATOR == FALSE. * configure: Regenerated. * Makefile.in: Likewise. * aclocal.m4: Likewise. * config.in: Likewise. * doc/Makefile.in: Likewise. * doc/SystemTap_Tapset_Reference/Makefile.in: Likewise. * grapher/Makefile.in: Likewise. --- config.in | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'config.in') diff --git a/config.in b/config.in index 7369cf53..217d2c94 100644 --- a/config.in +++ b/config.in @@ -3,6 +3,9 @@ /* Configuration/build date */ #undef DATE +/* librpm version specific library name to dlopen. */ +#undef DLOPEN_LIBRPM + /* make -P prologue-searching default */ #undef ENABLE_PROLOGUES @@ -21,6 +24,9 @@ /* Define to 1 if you have the `pfm' library (-lpfm). */ #undef HAVE_LIBPFM +/* Define if librpm library is being used. */ +#undef HAVE_LIBRPM + /* Define to 1 if you have the `sqlite3' library (-lsqlite3). */ #undef HAVE_LIBSQLITE3 @@ -89,9 +95,3 @@ /* Define like PROTOTYPES; this can be used by system headers. */ #undef __PROTOTYPES - -/* librpm version specific library name to dlopen. */ -#undef DLOPEN_LIBRPM - -/* Define if librpm library is being used. */ -#undef HAVE_LIBRPM -- cgit