diff options
author | Erik Hanson <erik@slackbuilds.org> | 2012-09-12 14:29:24 -0500 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2012-09-12 15:09:07 -0500 |
commit | 23058f9b85b02eecf23ddd2077cf73d87ce67fcf (patch) | |
tree | 6622747c714e78eed138871eebca510ef6f78dc2 /libraries/meanwhile/meanwhile.SlackBuild | |
parent | b7145bf2795c667acbab5971abb8b812183b07ca (diff) | |
download | slackbuilds-23058f9b85b02eecf23ddd2077cf73d87ce67fcf.tar.gz |
libraries/meanwhile: Patched to fix building.
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
Diffstat (limited to 'libraries/meanwhile/meanwhile.SlackBuild')
-rw-r--r-- | libraries/meanwhile/meanwhile.SlackBuild | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/libraries/meanwhile/meanwhile.SlackBuild b/libraries/meanwhile/meanwhile.SlackBuild index 38a92b6472..95e1e3fad2 100644 --- a/libraries/meanwhile/meanwhile.SlackBuild +++ b/libraries/meanwhile/meanwhile.SlackBuild @@ -2,7 +2,7 @@ # # Slackware build script for Meanwhile # -# Copyright 2009 Erik W. Hanson, Minneapolis, MN, USA +# Copyright 2009-2012 Erik W. Hanson, Minneapolis, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -24,15 +24,13 @@ PRGNAM=meanwhile VERSION=1.0.2 -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} -# Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i486 ;; arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac fi @@ -65,6 +63,9 @@ cd $PRGNAM-$VERSION chown -R root:root . chmod -R u+w,go+r-w,a-s . +# Patch to only include glib.h +patch -p1 < $CWD/fix_glib_includes.patch + CFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ |