diff options
author | fche <fche> | 2007-08-27 20:32:53 +0000 |
---|---|---|
committer | fche <fche> | 2007-08-27 20:32:53 +0000 |
commit | 6d4a05308283e7e1575e51d074254c762533ef8b (patch) | |
tree | 864604aec0a5d7c8cc43e16f7a9b0a56ea8b51d2 /configure.ac | |
parent | 3a5ee1c03bcb392982d24b1a2b9be61c137feeaa (diff) | |
download | systemtap-steved-6d4a05308283e7e1575e51d074254c762533ef8b.tar.gz systemtap-steved-6d4a05308283e7e1575e51d074254c762533ef8b.tar.xz systemtap-steved-6d4a05308283e7e1575e51d074254c762533ef8b.zip |
2007-08-27 Frank Ch. Eigler <fche@redhat.com>
PR 4817
* NEWS: Mention retirement of LKET.
* configure.ac: Remove mysql dependency.
* systemtap.spec.in: Remove glib2 dependency.
* configure, config.in: Regenerated.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/configure.ac b/configure.ac index 58a18698..d2a150b0 100644 --- a/configure.ac +++ b/configure.ac @@ -105,27 +105,6 @@ AM_CONDITIONAL(BUILD_CRASHMOD, test $build_crashmod = yes) AC_CHECK_HEADERS([sys/capability.h], , [AC_MSG_ERROR([cannot find required libcap header (libcap-devel may need to be installed)])]) -mysql=false - -SAVE_LDFLAGS=$LDFLAGS -SAVE_CPPFLAGS=$CPPFLAGS - -AC_PATH_PROG(MYSQL_CONFIG, mysql_config, no) -if test "$MYSQL_CONFIG" = "no"; then - AC_MSG_NOTICE([*** Cannot find mysql_config executable. Guess MySQL compiling flags.]) - CPPFLAGS="-I/usr/include/mysql $CPPFLAGS" - LDFLAGS="-L/usr/lib/mysql $LDFLAGS -L/usr/lib64/mysql" -else - CPPFLAGS="`mysql_config --cflags` $CPPFLAGS" - LDFLAGS="`mysql_config --libs` $LDFLAGS" -fi - -AM_CONDITIONAL(HAS_MYSQL, test "$mysql" = "true") -AM_CONDITIONAL(HAS_MYSQL_CONFIG, test "$MYSQL_CONFIG" != "no") - -LDFLAGS=$SAVE_LDFLAGS -CPPFLAGS=$SAVE_CPPFLAGS - if test $build_elfutils = no; then # Need libdwfl-capable recent elfutils from Fedora save_LIBS="$LIBS" |