diff options
author | fche <fche> | 2006-10-10 17:40:10 +0000 |
---|---|---|
committer | fche <fche> | 2006-10-10 17:40:10 +0000 |
commit | da641cd3e8aa2792ab99a0ac41b4a657a94dccfa (patch) | |
tree | 2bced1441ba717b49ab3f926ea12f1133e8f17ed /configure.ac | |
parent | 74389cdf3a94b57167af0c13d85c1687ee49f9bd (diff) | |
download | systemtap-steved-da641cd3e8aa2792ab99a0ac41b4a657a94dccfa.tar.gz systemtap-steved-da641cd3e8aa2792ab99a0ac41b4a657a94dccfa.tar.xz systemtap-steved-da641cd3e8aa2792ab99a0ac41b4a657a94dccfa.zip |
* partial rollback of mysql code in lket/b2a until configury problems are solved
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 65b493cd..8f2a0560 100644 --- a/configure.ac +++ b/configure.ac @@ -60,13 +60,18 @@ yes) AC_MSG_ERROR([--with-elfutils requires an argument]) ;; esac]) AM_CONDITIONAL(BUILD_ELFUTILS, test $build_elfutils = yes) AM_CONDITIONAL(BUILD_LKET_B2A, pkg-config --atleast-version 2.0.0 glib-2.0) -AM_CONDITIONAL(HAS_MYSQL, which mysql_config > /dev/null 2>&1) + +# This check is not sufficient. mysql_config may exist on machines +# that do not actually have the development headers/libraries installed. +# AM_CONDITIONAL(HAS_MYSQL, which mysql_config > /dev/null 2>&1) +AM_CONDITIONAL(HAS_MYSQL, false) if ! pkg-config --atleast-version 2.0.0 glib-2.0; then AC_MSG_WARN([glib2-devel is required to build lket-b2a. no glib2-devel found, skip building lket-b2a...]) fi +# AC_CHECK_LIB if ! which mysql_config > /dev/null 2>&1; then AC_MSG_WARN([mysqlclient lib is required to build lket-b2a with database support. no mysqlclient lib is found, skip building lket-b2a with database support...]) |