diff options
Diffstat (limited to 'graphics/xplot/patches/patch-aa')
-rw-r--r-- | graphics/xplot/patches/patch-aa | 42 |
1 files changed, 28 insertions, 14 deletions
diff --git a/graphics/xplot/patches/patch-aa b/graphics/xplot/patches/patch-aa index e96acf07d1d..c7b4ce5a93a 100644 --- a/graphics/xplot/patches/patch-aa +++ b/graphics/xplot/patches/patch-aa @@ -1,14 +1,28 @@ -$NetBSD: patch-aa,v 1.4 1999/01/29 20:19:22 tron Exp $ - -*** Makefile.in.orig Mon Aug 18 15:12:14 1997 ---- Makefile.in Wed Dec 10 20:28:35 1997 -*************** -*** 67,72 **** ---- 67,73 ---- - - install: all - $(INSTALL_PROGRAM) xplot $(bindir)/xplot -+ $(BSD_INSTALL_SCRIPT) tcpdump2xplot.pl $(bindir)/tcpdump2xplot.pl - - clean: - rm -f ${PROG} ${PROG}.old *.o version_string.c +$NetBSD: patch-aa,v 1.5 1999/09/15 16:13:24 drochner Exp $ +--- Makefile.in.orig Mon Aug 18 21:12:14 1997 ++++ Makefile.in Wed Sep 15 18:00:31 1999 +@@ -38,6 +38,7 @@ + + CC= @CC@ + CFLAGS=@CFLAGS@ ${DEFINES} ++LDFLAGS=@LDFLAGS@ + LIBS= @LIBS@ + + INSTALL = @INSTALL@ +@@ -58,7 +59,7 @@ + all: ${PROG} + + ${PROG}: ${OFILES} +- ${CC} ${CFLAGS} -o $@.new ${OFILES} ${LIBS} ++ ${CC} ${LDFLAGS} -o $@.new ${OFILES} ${LIBS} + -mv -f $@ $@.old + mv -f $@.new $@ + +@@ -67,6 +68,7 @@ + + install: all + $(INSTALL_PROGRAM) xplot $(bindir)/xplot ++ $(BSD_INSTALL_SCRIPT) tcpdump2xplot.pl $(bindir)/tcpdump2xplot.pl + + clean: + rm -f ${PROG} ${PROG}.old *.o version_string.c |