diff options
author | joerg <joerg@pkgsrc.org> | 2006-01-11 21:05:24 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-01-11 21:05:24 +0000 |
commit | 41159684d9705a87a7d2fe24fa7d574bf1371ae2 (patch) | |
tree | 9731d9bdb22e7ab6a442ca5a432514fa0e0ad4af /lang | |
parent | 20e92736cc8dabf136a63dbe63f8df0f37b3c81a (diff) | |
download | pkgsrc-41159684d9705a87a7d2fe24fa7d574bf1371ae2.tar.gz |
No matherr on DragonFly.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/tcl-tclX/distinfo | 4 | ||||
-rw-r--r-- | lang/tcl-tclX/patches/patch-ah | 15 | ||||
-rw-r--r-- | lang/tcl-tclX/patches/patch-ai | 15 |
3 files changed, 33 insertions, 1 deletions
diff --git a/lang/tcl-tclX/distinfo b/lang/tcl-tclX/distinfo index 012cbdc5008..0f57f228dbc 100644 --- a/lang/tcl-tclX/distinfo +++ b/lang/tcl-tclX/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.9 2005/02/24 09:03:12 agc Exp $ +$NetBSD: distinfo,v 1.10 2006/01/11 21:05:24 joerg Exp $ SHA1 (tclx8.3.5-src.tar.gz) = 74092449684d11dd73a4cb91fa3e1442e9e21d47 RMD160 (tclx8.3.5-src.tar.gz) = b501c1c48b54950ea7fb6d3d6d27ef3e7d58c5a5 @@ -10,3 +10,5 @@ SHA1 (patch-ad) = 252a21da464267d7c7d45e168a89b29a40273359 SHA1 (patch-ae) = a43144f37706245779362026073e09d8505a3d3f SHA1 (patch-af) = 64810cf27a40dcc6f9c12b94295e0b61db2e24a3 SHA1 (patch-ag) = 6c8876699bfe325b3370bb554d4727e05fc64b8b +SHA1 (patch-ah) = 37f883b17e3cec0266f9cd8c60cece521e59f56a +SHA1 (patch-ai) = 07572c47a3ee375f89488dbbfe52697091beccfb diff --git a/lang/tcl-tclX/patches/patch-ah b/lang/tcl-tclX/patches/patch-ah new file mode 100644 index 00000000000..068cc65f4a7 --- /dev/null +++ b/lang/tcl-tclX/patches/patch-ah @@ -0,0 +1,15 @@ +$NetBSD: patch-ah,v 1.3 2006/01/11 21:05:24 joerg Exp $ + +--- ../tcl/unix/tclXAppInit.c.orig 2006-01-11 18:50:33.000000000 +0000 ++++ ../tcl/unix/tclXAppInit.c +@@ -25,8 +25,10 @@ + * Even if matherr is not used on this system, there is a dummy version + * in libtcl. + */ ++#if !defined(__DragonFly__) + extern int matherr (); + int (*tclDummyMathPtr)() = matherr; ++#endif + + + /*----------------------------------------------------------------------------- diff --git a/lang/tcl-tclX/patches/patch-ai b/lang/tcl-tclX/patches/patch-ai new file mode 100644 index 00000000000..ce4f974ab2d --- /dev/null +++ b/lang/tcl-tclX/patches/patch-ai @@ -0,0 +1,15 @@ +$NetBSD: patch-ai,v 1.1 2006/01/11 21:05:24 joerg Exp $ + +--- ../tcl/unix/tclXunixTest.c.orig 2006-01-11 20:06:24.000000000 +0000 ++++ ../tcl/unix/tclXunixTest.c +@@ -31,8 +31,10 @@ Tclxtest_Init _ANSI_ARGS_((Tcl_Interp *i + * Even if matherr is not used on this system, there is a dummy version + * in libtcl. + */ ++#if !defined(__DragonFly__) + extern int matherr (); + int (*tclDummyMathPtr)() = matherr; ++#endif + + /*----------------------------------------------------------------------------- + * main -- |