diff options
Diffstat (limited to '')
-rwxr-xr-x | ctdb/configure | 22 | ||||
-rwxr-xr-x | ctdb/configure.rpm | 20 |
2 files changed, 42 insertions, 0 deletions
diff --git a/ctdb/configure b/ctdb/configure new file mode 100755 index 0000000..48b786b --- /dev/null +++ b/ctdb/configure @@ -0,0 +1,22 @@ +#!/bin/sh + +PREVPATH=`dirname $0` + +WAF=buildtools/bin/waf +[ -x "$WAF" ] || WAF=../buildtools/bin/waf + +# using JOBS=1 gives maximum compatibility with +# systems like AIX which have broken threading in python +JOBS=1 +export JOBS + +# Make sure we don't have any library preloaded. +unset LD_PRELOAD + +# Make sure we get stable hashes +PYTHONHASHSEED=1 +export PYTHONHASHSEED + +cd . || exit 1 +$PYTHON $WAF configure "$@" || exit 1 +cd $PREVPATH diff --git a/ctdb/configure.rpm b/ctdb/configure.rpm new file mode 100755 index 0000000..e8ec3b2 --- /dev/null +++ b/ctdb/configure.rpm @@ -0,0 +1,20 @@ +#!/bin/sh + +if gcc -dM -E - </dev/null | grep -Eq '__(x86_64|powerpc64)__' ; then + _libdir=/usr/lib64 +else + _libdir=/usr/lib +fi + +CFLAGS="-Wall -g -D_GNU_SOURCE" ./configure \ + --builtin-libraries=replace,popt \ + --bundled-libraries=!talloc,!tevent,!tdb \ + --minimum-library-version=talloc:2.1.14,tdb:1.3.17,tevent:0.9.37 \ + --prefix=/usr \ + --includedir=/usr/include/ctdb \ + --libdir=${_libdir} \ + --libexecdir=/usr/libexec \ + --sysconfdir=/etc \ + --mandir=/usr/man \ + --localstatedir=/var \ + $* |