diff options
author | thorpej <thorpej@pkgsrc.org> | 1997-12-14 21:21:53 +0000 |
---|---|---|
committer | thorpej <thorpej@pkgsrc.org> | 1997-12-14 21:21:53 +0000 |
commit | 4f6fd141ecb066a737401c41fa800a220abd95dc (patch) | |
tree | d57dc5652d15889f7ad5c37dbe4bd788fdc4fb99 /x11 | |
parent | f961ef8924f6df58076cdb60090b506564de0289 (diff) | |
download | pkgsrc-4f6fd141ecb066a737401c41fa800a220abd95dc.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 'x11')
-rw-r--r-- | x11/xplot/patches/patch-ac | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/x11/xplot/patches/patch-ac b/x11/xplot/patches/patch-ac new file mode 100644 index 00000000000..96ed2e0fd33 --- /dev/null +++ b/x11/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 |