From 8de9de9352eeaa1f0da25f41cc2c4f8c93370b6b Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Sun, 30 Dec 2007 02:58:49 +0000 Subject: [PATCH] arpwatch does not need its bcopy copy now SVN-Revision: 10042 --- net/arpwatch/patches/001-no_bcopy.patch | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 net/arpwatch/patches/001-no_bcopy.patch diff --git a/net/arpwatch/patches/001-no_bcopy.patch b/net/arpwatch/patches/001-no_bcopy.patch new file mode 100644 index 0000000000..7f663a7484 --- /dev/null +++ b/net/arpwatch/patches/001-no_bcopy.patch @@ -0,0 +1,16 @@ +diff -urN arpwatch-2.1a11/Makefile.in arpwatch-2.1a11.new/Makefile.in +--- arpwatch-2.1a11/Makefile.in 2000-06-15 02:39:55.000000000 +0200 ++++ arpwatch-2.1a11.new/Makefile.in 2007-12-30 03:59:03.000000000 +0100 +@@ -74,9 +74,9 @@ + + # We would like to say "OBJ = $(SRC:.c=.o)" but Ultrix's make cannot + # hack the extra indirection +-OBJ = $(WSRC:.c=.o) $(SSRC:.c=.o) $(CSRC:.c=.o) $(GENSRC:.c=.o) @LIBOBJS@ +-WOBJ = $(WSRC:.c=.o) $(CSRC:.c=.o) $(GENSRC:.c=.o) @LIBOBJS@ +-SOBJ = $(SSRC:.c=.o) $(CSRC:.c=.o) $(GENSRC:.c=.o) @LIBOBJS@ ++OBJ = $(WSRC:.c=.o) $(SSRC:.c=.o) $(CSRC:.c=.o) $(GENSRC:.c=.o) #@LIBOBJS@ ++WOBJ = $(WSRC:.c=.o) $(CSRC:.c=.o) $(GENSRC:.c=.o) #@LIBOBJS@ ++SOBJ = $(SSRC:.c=.o) $(CSRC:.c=.o) $(GENSRC:.c=.o) #@LIBOBJS@ + HDR = arpwatch.h db.h dns.h ec.h file.h machdep.h report.h setsignal.h + + TAGHDR = \ -- 2.30.2