diff options
author | dholland <dholland@pkgsrc.org> | 2008-09-08 05:32:59 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2008-09-08 05:32:59 +0000 |
commit | 52c3dc47d658c1257f4cb588bff9e0807dbeee30 (patch) | |
tree | 9e4f659278c34db722eace340446620ca3c60d5e /audio | |
parent | 17c2f291695dc5ba347670c53378bb5760b56dd5 (diff) | |
download | pkgsrc-52c3dc47d658c1257f4cb588bff9e0807dbeee30.tar.gz |
Patch test ==. Fixes build failure.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/icecast/distinfo | 3 | ||||
-rw-r--r-- | audio/icecast/patches/patch-ac | 22 |
2 files changed, 24 insertions, 1 deletions
diff --git a/audio/icecast/distinfo b/audio/icecast/distinfo index c2147f7ac16..a3c9426f4cb 100644 --- a/audio/icecast/distinfo +++ b/audio/icecast/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.16 2008/08/10 11:09:01 kim Exp $ +$NetBSD: distinfo,v 1.17 2008/09/08 05:32:59 dholland Exp $ SHA1 (icecast-2.3.2.tar.gz) = a52b13505548c2eff2c64aab95a42dcafda11227 RMD160 (icecast-2.3.2.tar.gz) = ec14553cce652fb80823316c9705f4cb6179cc2a Size (icecast-2.3.2.tar.gz) = 1152319 bytes SHA1 (patch-aa) = 2d85cabe25cf3860e42110eaf3fa5e2b1775e0cf SHA1 (patch-ab) = 3b9ecb2caf222f6c08646d856419595f3585f70b +SHA1 (patch-ac) = 5637f0cd10dc4b8d03e674b701bcb16f45339eaa diff --git a/audio/icecast/patches/patch-ac b/audio/icecast/patches/patch-ac new file mode 100644 index 00000000000..173fd91e375 --- /dev/null +++ b/audio/icecast/patches/patch-ac @@ -0,0 +1,22 @@ +$NetBSD: patch-ac,v 1.3 2008/09/08 05:32:59 dholland Exp $ + +--- configure~ 2008-05-26 20:21:57.000000000 -0400 ++++ configure 2008-09-08 01:29:19.000000000 -0400 +@@ -23300,7 +23300,7 @@ else + have_kate=no + fi + +-if test "x$have_kate" == "xyes" ++if test "x$have_kate" = "xyes" + then + { echo "$as_me:$LINENO: checking for kate_ogg_decode_headerin in -loggkate" >&5 + echo $ECHO_N "checking for kate_ogg_decode_headerin in -loggkate... $ECHO_C" >&6; } +@@ -23369,7 +23369,7 @@ else + have_kate=no + fi + +- if test "x$have_kate" == "xyes" ++ if test "x$have_kate" = "xyes" + then + KATE_LIBS="-loggkate -lkate -logg" + |