summaryrefslogtreecommitdiff
path: root/ctdb/utils
diff options
context:
space:
mode:
authorAmitay Isaacs <amitay@gmail.com>2014-05-20 18:49:32 +1000
committerMichael Adam <obnox@samba.org>2014-06-20 23:38:09 +0200
commitd646df170c5b5b7931a6580a0e84576b5163c38e (patch)
treea985461130289e770f9f8a1e883fa9b383b1a390 /ctdb/utils
parent4a5ded2b69b7538688da59423bd1b53df1d6c77a (diff)
downloadsamba-d646df170c5b5b7931a6580a0e84576b5163c38e.tar.gz
ctdb-build: Remove autoconf build files
Signed-off-by: Amitay Isaacs <amitay@gmail.com> Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'ctdb/utils')
-rw-r--r--ctdb/utils/pmda/config.m432
1 files changed, 0 insertions, 32 deletions
diff --git a/ctdb/utils/pmda/config.m4 b/ctdb/utils/pmda/config.m4
deleted file mode 100644
index 6b3fbb0ea14..00000000000
--- a/ctdb/utils/pmda/config.m4
+++ /dev/null
@@ -1,32 +0,0 @@
-AC_ARG_ENABLE(pmda,
-AS_HELP_STRING([--enable-pmda], [Turn on PCP pmda support (default=no)]))
-
-HAVE_PMDA=no
-
-if eval "test x$enable_pmda = xyes"; then
- HAVE_PMDA=yes
-
- AC_CHECK_HEADERS(pcp/pmapi.h pcp/impl.h pcp/pmda.h, [],
- [AC_MSG_ERROR([Missing PCP pmda headers])],
- [[#ifdef HAVE_PCP_PMAPI_H
- # include <pcp/pmapi.h>
- #endif
- #ifdef HAVE_PCP_IMPL_H
- # include <pcp/impl.h>
- #endif
- #ifdef HAVE_PCP_PMDA_H
- # include <pcp/pmda.h>
- #endif
- ]])
-fi
-
-if test x"$HAVE_PMDA" = x"yes"; then
- CTDB_PMDA=bin/pmdactdb
- CTDB_PMDA_INSTALL=install_pmda
-else
- CTDB_PMDA=
- CTDB_PMDA_INSTALL=
-fi
-
-AC_SUBST(CTDB_PMDA)
-AC_SUBST(CTDB_PMDA_INSTALL)