diff options
author | wiz <wiz> | 2004-09-10 19:47:43 +0000 |
---|---|---|
committer | wiz <wiz> | 2004-09-10 19:47:43 +0000 |
commit | 7cef8248812356c59041c29d8e59fc238c8ff407 (patch) | |
tree | d6598c5f2317b1337e5176344d5d79c05ab08ae0 /net/icsi-finger | |
parent | 9b4b09cab92066b3dc066e1bb0cd4b34ab8eddc8 (diff) | |
download | pkgsrc-7cef8248812356c59041c29d8e59fc238c8ff407.tar.gz |
Fix build with gcc3.
Diffstat (limited to 'net/icsi-finger')
-rw-r--r-- | net/icsi-finger/distinfo | 3 | ||||
-rw-r--r-- | net/icsi-finger/patches/patch-ac | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/net/icsi-finger/distinfo b/net/icsi-finger/distinfo index be1d7861c65..ec56a67d07b 100644 --- a/net/icsi-finger/distinfo +++ b/net/icsi-finger/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.2 2001/04/21 11:23:18 wiz Exp $ +$NetBSD: distinfo,v 1.3 2004/09/10 19:47:43 wiz Exp $ SHA1 (icsi-finger-1.0.27.tar.Z) = 41f03c42269a402169000a6b08ba8c6330256861 Size (icsi-finger-1.0.27.tar.Z) = 729351 bytes SHA1 (patch-aa) = 09aff5e24c2cf5ede8d8b70e805c88824e0ba88c SHA1 (patch-ab) = d8a719d78288aad8ab3a7159f332afdd59231ebb +SHA1 (patch-ac) = dd1603bef5c0c6764549a0fdcddfd819d4301809 diff --git a/net/icsi-finger/patches/patch-ac b/net/icsi-finger/patches/patch-ac new file mode 100644 index 00000000000..98cad37038c --- /dev/null +++ b/net/icsi-finger/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.1 2004/09/10 19:47:43 wiz Exp $ + +--- Makefile.orig 1998-04-04 21:27:42.000000000 +0200 ++++ Makefile +@@ -98,7 +98,7 @@ dirs: FRC + $(SRC)$(MKFILE): support/cpp-Makefile Makefile config.h + cp $(SUPPORT)cpp-Makefile $(SRC)tmp-Makefile.c + (cd $(SRC); $(CPP) $(CPP_ARGS) tmp-Makefile.c \ +- | sed 's@[ ]*$$@@' | uniq >$(MKFILE)) ++ | sed -e 's@[ ]*$$@@' -e 's@^ *@ @' | uniq >$(MKFILE)) + rm -f $(SRC)tmp-Makefile.c + + # Subsequent lines contain targets that are correctly handled by an |