From 504f8816e3058b9358a18ef42e442753fe2657ba Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 16 Dec 2008 16:10:22 +0100 Subject: s4:lib/events: move to toplevel directory as lib/tevent/ This commit will not compile on its own. metze --- lib/tevent/autogen.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 lib/tevent/autogen.sh (limited to 'lib/tevent/autogen.sh') diff --git a/lib/tevent/autogen.sh b/lib/tevent/autogen.sh new file mode 100755 index 0000000000..fec05f54d4 --- /dev/null +++ b/lib/tevent/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 -I ../../../lib/replace" +autoconf $IPATHS || exit 1 +autoheader $IPATHS || exit 1 + +rm -rf autom4te.cache + +swig -O -Wall -python -keyword events.i # Ignore errors for now + +echo "Now run ./configure and then make." +exit 0 + -- cgit