diff options
author | thorpej <thorpej> | 1997-12-14 21:21:53 +0000 |
---|---|---|
committer | thorpej <thorpej> | 1997-12-14 21:21:53 +0000 |
commit | f466a1ba8e5ce038625dd80fc057f9d94838d44b (patch) | |
tree | d57dc5652d15889f7ad5c37dbe4bd788fdc4fb99 /graphics/xplot | |
parent | 006256f9337a312f4a1c65ad3a8d138fdcdb6061 (diff) | |
download | pkgsrc-f466a1ba8e5ce038625dd80fc057f9d94838d44b.tar.gz |
Add a patch from Kevin Lahey that allows xplot to work with .xpl files
created by tcptrace, a TCP tracing tool more complete than xplot's
included tcpdump2xplot.pl. Patch has been submitted to Tim for the next
release of xplot.
XXX Claim is that libc's atoi() is broken; investigate this further.
Diffstat (limited to 'graphics/xplot')
-rw-r--r-- | graphics/xplot/patches/patch-ac | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/graphics/xplot/patches/patch-ac b/graphics/xplot/patches/patch-ac new file mode 100644 index 00000000000..96ed2e0fd33 --- /dev/null +++ b/graphics/xplot/patches/patch-ac @@ -0,0 +1,15 @@ +*** unsigned.c.orig Fri Dec 12 20:16:26 1997 +--- unsigned.c Fri Dec 12 20:16:52 1997 +*************** +*** 45,50 **** +--- 45,54 ---- + #define LIBC_ATOI_IS_BROKEN + #endif + ++ #ifdef __NetBSD__ ++ #define LIBC_ATOI_IS_BROKEN ++ #endif ++ + #ifdef LIBC_ATOI_IS_BROKEN + #include <ctype.h> + #endif |