diff options
Diffstat (limited to 'devel/ipv6socket_scrub/patches/patch-aa')
-rw-r--r-- | devel/ipv6socket_scrub/patches/patch-aa | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/devel/ipv6socket_scrub/patches/patch-aa b/devel/ipv6socket_scrub/patches/patch-aa index a8f67eb0050..e0b16f645f1 100644 --- a/devel/ipv6socket_scrub/patches/patch-aa +++ b/devel/ipv6socket_scrub/patches/patch-aa @@ -1,12 +1,12 @@ -$NetBSD: patch-aa,v 1.1.1.1 1999/11/25 01:54:01 itojun Exp $ ---- ipv6socket_scrub.c- Thu Nov 25 10:06:57 1999 -+++ ipv6socket_scrub.c Thu Nov 25 10:07:26 1999 +$NetBSD: patch-aa,v 1.2 1999/11/28 14:37:41 itojun Exp $ +--- ipv6socket_scrub.c.orig Fri Oct 15 18:51:40 1999 ++++ ipv6socket_scrub.c Sun Nov 28 23:28:38 1999 @@ -308,7 +308,7 @@ -e 's/#.*if/_#_if/' \ -e 's/#.*else/_#_else/' \ %s | \ - /usr/ccs/lib/cpp -BP 2>&1 | \ -+ /usr/bin/cpp -BP 2>&1 | \ ++ /usr/bin/cpp -P 2>&1 | \ /usr/bin/sed -e 's/_#_include/#include/' \ -e 's/_#_end/#end/' \ -e 's/_#_if/#if/' \ @@ -17,7 +17,7 @@ $NetBSD: patch-aa,v 1.1.1.1 1999/11/25 01:54:01 itojun Exp $ - stat("/usr/ccs/lib/cpp", &statbuff) == -1) { - fprintf (stderr, "\nCannot find /usr/bin/sed and/or /usr/ccs/lib/cpp -BP.\n Terminating...\n"); + stat("/usr/bin/cpp", &statbuff) == -1) { -+ fprintf (stderr, "\nCannot find /usr/bin/sed and/or /usr/bin/cpp -BP.\n Terminating...\n"); ++ fprintf (stderr, "\nCannot find /usr/bin/sed and/or /usr/bin/cpp -P.\n Terminating...\n"); exit (2); } @@ -26,12 +26,12 @@ $NetBSD: patch-aa,v 1.1.1.1 1999/11/25 01:54:01 itojun Exp $ if (check_file (buf,ignore_conf,pri_conf,sec_conf,fo1,fo2,tmpfile)) { - fprintf (stderr, "\nCannot process file %s. Cannot find /usr/bin/sed and/or /usr/ccs/lib/cpp -BP.\n Terminating...\n",buf); -+ fprintf (stderr, "\nCannot process file %s. Cannot find /usr/bin/sed and/or /usr/bin/cpp -BP.\n Terminating...\n",buf); ++ fprintf (stderr, "\nCannot process file %s. Cannot find /usr/bin/sed and/or /usr/bin/cpp -P.\n Terminating...\n",buf); unlink(tmpfile); exit (2); } ---- Makefile- Thu Nov 25 10:08:47 1999 -+++ Makefile Thu Nov 25 10:08:50 1999 +--- Makefile.orig Wed Oct 13 18:01:46 1999 ++++ Makefile Sun Nov 28 23:26:42 1999 @@ -1,5 +1,5 @@ CC = cc -CFLAGS = -xO3 |