summaryrefslogtreecommitdiff
path: root/source4/autogen.sh
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2007-11-28 22:41:29 +0100
committerStefan Metzmacher <metze@samba.org>2007-12-21 05:46:39 +0100
commit16325f13395a48daa9c0a8cb58b354e552776fce (patch)
treee262cf2e8a43f1f666390b868480625c367a9b10 /source4/autogen.sh
parent06e444d9137998cc7a58045c922c5bc895c7d62c (diff)
downloadsamba-16325f13395a48daa9c0a8cb58b354e552776fce.tar.gz
samba-16325f13395a48daa9c0a8cb58b354e552776fce.tar.bz2
samba-16325f13395a48daa9c0a8cb58b354e552776fce.zip
r26186: Generate SWIG files as part of autogen.sh
(This used to be commit 4429f8b87e057787df0748f93c842c9a634dada5)
Diffstat (limited to 'source4/autogen.sh')
-rwxr-xr-xsource4/autogen.sh12
1 files changed, 11 insertions, 1 deletions
diff --git a/source4/autogen.sh b/source4/autogen.sh
index e5aa69776f..67a3df3bd9 100755
--- a/source4/autogen.sh
+++ b/source4/autogen.sh
@@ -63,6 +63,16 @@ $AUTOCONF $IPATHS || exit 1
rm -rf autom4te*.cache
+# Run swig if it is available
+SWIG=swig
+SWIG_FILES="./scripting/python/misc.i ./auth/auth.i ./auth/credentials/credentials.i ./lib/talloc/talloc.i ./lib/ldb/ldb.i ./lib/registry/registry.i ./lib/tdb/tdb.i ./libcli/swig/libcli_smb.i ./libcli/swig/libcli_nbt.i ./librpc/rpc/dcerpc.i"
+if which $SWIG >/dev/null 2>&1; then
+ for I in $SWIG_FILES
+ do
+ echo "$0: running $SWIG for $I"
+ swig -python -keyword $I
+ done
+fi
+
echo "Now run ./configure and then make."
exit 0
-