summaryrefslogtreecommitdiff
path: root/packages/libsigcx/libsigcx0/libsigcx-0.6.4-add-missing-autogen-sh-swb.patch
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2005-06-30 08:19:37 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-06-30 08:19:37 +0000
commitc8e5702127e507e82e6f68a4b8c546803accea9d (patch)
tree00583491f40ecc640f2b28452af995e3a63a09d7 /packages/libsigcx/libsigcx0/libsigcx-0.6.4-add-missing-autogen-sh-swb.patch
parent87ec8ca4d2e2eb4d1c1e1e1a6b46a395d56805b9 (diff)
import clean BK tree at cset 1.3670
Diffstat (limited to 'packages/libsigcx/libsigcx0/libsigcx-0.6.4-add-missing-autogen-sh-swb.patch')
-rw-r--r--packages/libsigcx/libsigcx0/libsigcx-0.6.4-add-missing-autogen-sh-swb.patch55
1 files changed, 55 insertions, 0 deletions
diff --git a/packages/libsigcx/libsigcx0/libsigcx-0.6.4-add-missing-autogen-sh-swb.patch b/packages/libsigcx/libsigcx0/libsigcx-0.6.4-add-missing-autogen-sh-swb.patch
index e69de29bb2..950e8aabae 100644
--- a/packages/libsigcx/libsigcx0/libsigcx-0.6.4-add-missing-autogen-sh-swb.patch
+++ b/packages/libsigcx/libsigcx0/libsigcx-0.6.4-add-missing-autogen-sh-swb.patch
@@ -0,0 +1,55 @@
+2005-05-06 Steven Brown <swbrown@ucsd.edu>
+
+ * autogen.sh: Was missing from dist - add from the Arch repository.
+
+
+diff -Nur libsigcx-old/autogen.sh libsigcx/autogen.sh
+--- libsigcx-old/autogen.sh 1969-12-31 16:00:00.000000000 -0800
++++ libsigcx/autogen.sh 2005-05-06 19:48:39.000000000 -0700
+@@ -0,0 +1,46 @@
++#! /bin/sh
++
++srcdir=`dirname $0`
++test -z "$srcdir" && srcdir=.
++
++PKG_NAME="sigcx"
++
++(test -f "$srcdir/configure.ac" \
++ && test -d "$srcdir/sigcx" \
++ && test -d "$srcdir/sigcx/macros") || {
++ echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
++ echo " top-level $PKG_NAME directory"
++ exit 1
++}
++
++
++echo "Adding libtools."
++libtoolize --automake
++
++echo "Building macros."
++aclocal -I scripts $ACLOCAL_FLAGS
++
++echo "Building config header."
++autoheader
++
++echo "Building makefiles."
++automake --add-missing
++
++echo "Building configure."
++autoconf
++
++rm -f config.cache
++
++if test -z "$AUTOGEN_SUBDIR_MODE"; then
++
++ echo "Running configure."
++ ./configure --enable-maintainer-mode "$@"
++ echo
++ echo 'run "make"'
++ echo
++else
++ echo
++ echo 'run "./configure ; make"'
++ echo
++fi
++