diff options
author | joerg <joerg@pkgsrc.org> | 2006-01-02 16:14:04 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-01-02 16:14:04 +0000 |
commit | 1f5065df1972d6a8d69ac4b9ad41ce9f926f6e78 (patch) | |
tree | 60f4bf898fda7125df299fcad74b4b1097186fc7 /comms/pilot-link | |
parent | c39008d1c903bfb1137ee99766cb2b02d9b19739 (diff) | |
download | pkgsrc-1f5065df1972d6a8d69ac4b9ad41ce9f926f6e78.tar.gz |
Don't reference matherr on DragonFly, it doesn't exist here.
Diffstat (limited to 'comms/pilot-link')
-rw-r--r-- | comms/pilot-link/distinfo | 4 | ||||
-rw-r--r-- | comms/pilot-link/patches/patch-ae | 26 |
2 files changed, 20 insertions, 10 deletions
diff --git a/comms/pilot-link/distinfo b/comms/pilot-link/distinfo index f554655f998..da4dce467e1 100644 --- a/comms/pilot-link/distinfo +++ b/comms/pilot-link/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.17 2005/08/08 21:25:21 jlam Exp $ +$NetBSD: distinfo,v 1.18 2006/01/02 16:14:04 joerg Exp $ SHA1 (pilot-link-0.11.7.tar.bz2) = f1ae56d3aad5d793f58fac4d3a51ca0c0f517262 RMD160 (pilot-link-0.11.7.tar.bz2) = 3f97de52f8142fe2328c8f3eb4a0893ab440abf6 @@ -6,5 +6,5 @@ Size (pilot-link-0.11.7.tar.bz2) = 669470 bytes SHA1 (patch-aa) = 842f3abe3c9c794206ee21fa835c8da34f6cbc8a SHA1 (patch-ab) = add1156600a681cc0ae30c5d9095b4f1bb6739c3 SHA1 (patch-ad) = 91e0a72a0f2d313173024c9edacfa0b92fb33b3d -SHA1 (patch-ae) = a7e84e6fc2b7414c63e4306da5df3cd840b2a6ca +SHA1 (patch-ae) = 2dd6343e3b1cef4108649454124e425beef68e23 SHA1 (patch-af) = 7c3e80f8d8b0c0a77aac5590098c59541685dd17 diff --git a/comms/pilot-link/patches/patch-ae b/comms/pilot-link/patches/patch-ae index daf152cfc42..a0a6c068c8b 100644 --- a/comms/pilot-link/patches/patch-ae +++ b/comms/pilot-link/patches/patch-ae @@ -1,8 +1,18 @@ -$NetBSD: patch-ae,v 1.4 2003/09/28 15:09:50 tron Exp $ +$NetBSD: patch-ae,v 1.5 2006/01/02 16:14:04 joerg Exp $ ---- src/pilot-debug.c.orig 2002-12-02 15:32:47.000000000 +0100 -+++ src/pilot-debug.c 2003-09-28 17:08:23.000000000 +0200 -@@ -1549,526 +1549,524 @@ +--- src/pilot-debug.c.orig 2002-12-02 14:32:47.000000000 +0000 ++++ src/pilot-debug.c +@@ -60,7 +60,9 @@ int usetk; + + /* The following variable is a special hack that is needed in order for Sun + shared libraries to be used for Tcl. */ ++#if !defined(__DragonFly__) + int *tclDummyMathPtr = (int *) matherr; ++#endif + + int done = 0; + int Interactive = 1; +@@ -1549,526 +1551,524 @@ static int proc_inittkdbg(ClientData cli return TCL_OK; } @@ -1047,7 +1057,7 @@ $NetBSD: patch-ae,v 1.4 2003/09/28 15:09:50 tron Exp $ puts(interp->result); created = 1; -@@ -2080,25 +2078,24 @@ +@@ -2080,25 +2080,24 @@ proc Say {text} { static int proc_help(ClientData clientData, Tcl_Interp *interp, int argc, char *argv[]) { @@ -1091,7 +1101,7 @@ $NetBSD: patch-ae,v 1.4 2003/09/28 15:09:50 tron Exp $ return TCL_OK; } -@@ -2151,55 +2148,53 @@ +@@ -2151,55 +2150,53 @@ Tcl_AppInit(myinterp) Tcl_CreateCommand(interp, cmds[i].name, cmds[i].proc, 0, NULL); } @@ -1194,7 +1204,7 @@ $NetBSD: patch-ae,v 1.4 2003/09/28 15:09:50 tron Exp $ Tcl_LinkVar(interp, "Interactive", (char*)&Interactive, TCL_LINK_INT); -@@ -2216,44 +2211,36 @@ +@@ -2216,44 +2213,36 @@ proc checkupin {time} { Type 'exit' to quit the application\n\n"); #if 0 @@ -1269,7 +1279,7 @@ $NetBSD: patch-ae,v 1.4 2003/09/28 15:09:50 tron Exp $ #endif /* Specify a user-specific startup file to invoke if the application is -@@ -2263,26 +2250,23 @@ +@@ -2263,26 +2252,23 @@ currently implemented.\n\n\ "); Tcl_SetVar(interp, "tcl_rcFileName", "~/.pdebugrc", TCL_GLOBAL_ONLY); |