diff options
author | David Somero <dsomero@hotmail.com> | 2010-09-14 23:32:14 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-09-14 23:32:14 -0500 |
commit | d8731e9a034d82109e616d9edd17ebb1b8a24870 (patch) | |
tree | e100a6f88bc38d52f43bf9ee8fa7c4ac1e2926f3 /network/avahi/avahi.SlackBuild | |
parent | 98fc976001f47ad82c21fce4369f50b68d0d134b (diff) | |
download | slackbuilds-d8731e9a034d82109e616d9edd17ebb1b8a24870.tar.gz |
network/avahi: Bugfix for http://avahi.org/ticket/319 (patched)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network/avahi/avahi.SlackBuild')
-rw-r--r-- | network/avahi/avahi.SlackBuild | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/network/avahi/avahi.SlackBuild b/network/avahi/avahi.SlackBuild index 5974a83141..bb08877593 100644 --- a/network/avahi/avahi.SlackBuild +++ b/network/avahi/avahi.SlackBuild @@ -24,15 +24,13 @@ PRGNAM=avahi VERSION=0.6.27 -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 @@ -90,6 +88,9 @@ cd $PRGNAM-$VERSION chown -R root:root . chmod -R a-s,u+w,go+r-w . +# Bug fix http://avahi.org/ticket/319 +patch -p1 < $CWD/0001-Check-if-the-deamon-isn-t-already-running.patch + CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ |