diff options
author | drochner <drochner@pkgsrc.org> | 1999-09-15 16:13:23 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 1999-09-15 16:13:23 +0000 |
commit | 3fe1508eeaae9b11f0ed16e96dc6a76473372e05 (patch) | |
tree | d55edca99c44e869682f660767d906e5268437bc /graphics/xplot | |
parent | 0d58ec507b2c4a0fa99143d0c2b7b2ad077b3e6f (diff) | |
download | pkgsrc-3fe1508eeaae9b11f0ed16e96dc6a76473372e05.tar.gz |
pass LDFLAGS to linker (to get ELF shared lib search path)
Diffstat (limited to 'graphics/xplot')
-rw-r--r-- | graphics/xplot/files/patch-sum | 4 | ||||
-rw-r--r-- | graphics/xplot/patches/patch-aa | 42 |
2 files changed, 30 insertions, 16 deletions
diff --git a/graphics/xplot/files/patch-sum b/graphics/xplot/files/patch-sum index 7dafef22a5f..08b1dd565bc 100644 --- a/graphics/xplot/files/patch-sum +++ b/graphics/xplot/files/patch-sum @@ -1,6 +1,6 @@ -$NetBSD: patch-sum,v 1.1 1999/07/09 13:51:15 agc Exp $ +$NetBSD: patch-sum,v 1.2 1999/09/15 16:13:23 drochner Exp $ -MD5 (patch-aa) = a3162c4b3c6f23ed4cbf9b22e136c668 +MD5 (patch-aa) = b955379dad7567356126603c7e21caf6 MD5 (patch-ab) = 7cec8964570084584b5131861b44cdcf MD5 (patch-ac) = ab738e37b7eea5dffd1ff59e20643eba MD5 (patch-ad) = 1f338efa6a78e3da12a2d7d39318c01e 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 |