diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-09-16 16:44:16 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-09-16 16:44:16 +0200 |
commit | f957aeaee64745148b815393b1fc1338104ed2e1 (patch) | |
tree | 3ab8268492918549f36f01faa6f90335b54bc789 /tdb/autogen.sh | |
parent | 80a5da73e9a9ed148314be3fa071181c82fc7c64 (diff) | |
parent | 8ec93160d5cf2a0f917c1e1304127625e38ec2e0 (diff) | |
download | samba-f957aeaee64745148b815393b1fc1338104ed2e1.tar.gz samba-f957aeaee64745148b815393b1fc1338104ed2e1.tar.bz2 samba-f957aeaee64745148b815393b1fc1338104ed2e1.zip |
Merge branch 'singletdb' into single
Diffstat (limited to 'tdb/autogen.sh')
-rwxr-xr-x | tdb/autogen.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tdb/autogen.sh b/tdb/autogen.sh new file mode 100755 index 0000000000..88ac4cfcf7 --- /dev/null +++ b/tdb/autogen.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +rm -rf autom4te.cache +rm -f configure config.h.in + +IPATHS="-I libreplace -I lib/replace -I ../libreplace -I ../replace" +autoconf $IPATHS || exit 1 +autoheader $IPATHS || exit 1 + +rm -rf autom4te.cache + +swig -O -Wall -python -keyword tdb.i # Ignore errors for now + +echo "Now run ./configure and then make." +exit 0 + |