X-Git-Url: http://git.samba.org/?a=blobdiff_plain;f=configure.ac;h=cc3a1143daa743d3d465a2863a8a2b386460245a;hb=d674158a16ab45f3b2cab2486daf0c6357b2ae34;hp=784eef2190640cf8fdd94018d39df357f0714318;hpb=f291e1e652578c8c80b95fbc3d6a138ce7a7199e;p=sahlberg%2Fctdb.git diff --git a/configure.ac b/configure.ac index 784eef21..cc3a1143 100644 --- a/configure.ac +++ b/configure.ac @@ -1,18 +1,38 @@ AC_PREREQ(2.50) -AC_DEFUN([AC_CHECK_LIB_EXT], [ - AC_CHECK_LIB([$1],[$3],[$4],[$5],[$7]) - ac_cv_lib_ext_$1_$3=$ac_cv_lib_$1_$3 -]) -AC_DEFUN([AC_CHECK_FUNC_EXT], [ - AC_CHECK_FUNC([$1],[$3],[$4]) - ac_cv_func_ext_$1=$ac_cv_func_$1 -]) +AC_INIT(ctdb, m4_esyscmd([grep 'Version:' ./packaging/RPM/ctdb.spec 2>/dev/null | head -1 | sed -e 's/[ \t]*Version:[ \t]*\([^ \t]*\)[ \t]*.*/\1/' | tr -d '\n'])) AC_DEFUN([SMB_MODULE_DEFAULT], [echo -n ""]) AC_DEFUN([SMB_LIBRARY_ENABLE], [echo -n ""]) AC_DEFUN([SMB_EXT_LIB], [echo -n ""]) AC_DEFUN([SMB_ENABLE], [echo -n ""]) -AC_INIT(ctdb.h) -AC_CONFIG_SRCDIR([tests/ctdb_test.c]) +AC_CONFIG_SRCDIR([server/ctdbd.c]) + +if test "${libdir}" = '${exec_prefix}/lib'; then + case `uname -m` in + x86_64|ppc64|powerpc64) + libdir='${exec_prefix}/lib64' + ;; + *) + libdir='${exec_prefix}/lib' + ;; + esac +fi + +case `uname` in + Linux*) + CTDB_SYSTEM_OBJ=common/system_linux.o + CTDB_SCSI_IO=bin/scsi_io + CTDB_PCAP_LDFLAGS= + ;; + AIX*) + CTDB_SYSTEM_OBJ=common/system_aix.o + CTDB_SCSI_IO= + CTDB_PCAP_LDFLAGS=-lpcap + ;; + *) + echo unknown system cant configure + exit + ;; +esac AC_LIBREPLACE_ALL_CHECKS @@ -20,14 +40,46 @@ if test "$ac_cv_prog_gcc" = yes; then CFLAGS="$CFLAGS -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings" fi +LOGDIR='${localstatedir}/log' +AC_ARG_WITH([logdir], + [ --with-logdir=DIR path to log directory [[LOCALSTATEDIR/log]]], + LOGDIR=$withval) +if test ! -z "$LOGDIR"; then + if test "$LOGDIR" = "yes" -o "$LOGDIR" = "no"; then + AC_MSG_ERROR([--with-logdir must specify a path]) + fi +fi +AC_SUBST(LOGDIR) + AC_CONFIG_HEADER(config.h) EXTRA_OBJ="" +m4_include(libpopt.m4) m4_include(libtalloc.m4) m4_include(libtdb.m4) +m4_include(libtevent.m4) m4_include(ib/config.m4) +m4_include(lib/util/signal.m4) +m4_include(lib/util/fault.m4) + +AC_CHECK_HEADERS(sched.h) +AC_CHECK_FUNCS(sched_setscheduler) +AC_CHECK_FUNCS(mlockall) + +AC_CACHE_CHECK([for sin_len in sock],ctdb_cv_HAVE_SOCK_SIN_LEN,[ +AC_TRY_COMPILE([#include +#include +#include ], +[struct sockaddr_in sock; sock.sin_len = sizeof(sock);], +ctdb_cv_HAVE_SOCK_SIN_LEN=yes,ctdb_cv_HAVE_SOCK_SIN_LEN=no)]) +if test x"$ctdb_cv_HAVE_SOCK_SIN_LEN" = x"yes"; then + AC_DEFINE(HAVE_SOCK_SIN_LEN,1,[Whether the sockaddr_in struct has a sin_len property]) +fi AC_SUBST(EXTRA_OBJ) +AC_SUBST(CTDB_SYSTEM_OBJ) +AC_SUBST(CTDB_SCSI_IO) +AC_SUBST(CTDB_PCAP_LDFLAGS) -AC_OUTPUT(Makefile) +AC_OUTPUT(Makefile ctdb.pc)