summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorTollef Fog Heen <tfheen@err.no>2010-08-19 18:54:12 +0200
committerTollef Fog Heen <tfheen@err.no>2011-04-13 20:16:23 +0200
commit99964eddb5935173fcedfc793e762d7dc7d01bba (patch)
treea8894ef430f223c0ca278d6ff1206791eb0ad0af /autogen.sh
parent03bd4a55287cd9492c5fde6adb1ac81a37b75cce (diff)
downloadpkg-config-99964eddb5935173fcedfc793e762d7dc7d01bba.tar.gz
Stop shipping an embedded glib
Drop the embedded glib, the associated patches and adjust build scripts appropriately.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh25
1 files changed, 1 insertions, 24 deletions
diff --git a/autogen.sh b/autogen.sh
index f824619..23af855 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -8,30 +8,7 @@ test -z "$srcdir" && srcdir=.
ORIGDIR=`pwd`
cd $srcdir
-rm -r glib-1.2.10
-gunzip --stdout glib-1.2.10.tar.gz | tar xf - || {
- echo "glib tarball not unpacked"
- exit 1
-}
-
-chmod +w `find glib-1.2.10 -name Makefile.am`
-perl -p -i.bak -e "s/lib_LTLIBRARIES/noinst_LTLIBRARIES/g" `find glib-1.2.10 -name Makefile.am`
-perl -p -i.bak -e "s/bin_SCRIPTS/noinst_SCRIPTS/g" `find glib-1.2.10 -name Makefile.am`
-perl -p -i.bak -e "s/include_HEADERS/noinst_HEADERS/g" `find glib-1.2.10 -name Makefile.am`
-perl -p -i.bak -e "s/glibnoinst_HEADERS/noinst_HEADERS/g" `find glib-1.2.10 -name Makefile.am`
-perl -p -i.bak -e 's/([a-zA-Z0-9]+)_DATA/noinst_DATA/g' `find glib-1.2.10 -name Makefile.am`
-perl -p -i.bak -e "s/info_TEXINFOS/noinst_TEXINFOS/g" `find glib-1.2.10 -name Makefile.am`
-perl -p -i.bak -e "s/man_MANS/noinst_MANS/g" `find glib-1.2.10 -name Makefile.am`
-
-## patch gslist.c to have stable sort
-perl -p -w -i.bak -e 's/if \(compare_func\(l1->data,l2->data\) < 0\)/if \(compare_func\(l1->data,l2->data\) <= 0\)/g' glib-1.2.10/gslist.c
-
-# Update random auto* files to actually have something which have a snowball's
-# chance in a hot place of working with modern auto* tools.
-
-(cd glib-1.2.10 && for p in ../glib-patches/*.diff; do echo $p; patch -p1 < $p || exit 1; done ) || exit 1
-
-# Rebuild the autotools for pkg-config and glib
+# Rebuild the autotools for pkg-config
${AUTORECONF-autoreconf} -iv || exit $?
cd $ORIGDIR