diff options
author | joerg <joerg@pkgsrc.org> | 2005-12-12 15:49:47 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2005-12-12 15:49:47 +0000 |
commit | 6f367b12adbde7f633affe6fbe2ff3de3a6fd5ed (patch) | |
tree | 4027a28024a378dfb541260a60cedd6564261b9d /x11 | |
parent | b5655bf13b5bead8fbd41bcdf79f2293f5a85f3a (diff) | |
download | pkgsrc-6f367b12adbde7f633affe6fbe2ff3de3a6fd5ed.tar.gz |
Don't use matherr hack on DragonFly -- it's not supported.
Diffstat (limited to 'x11')
-rw-r--r-- | x11/tk-Tix/distinfo | 3 | ||||
-rw-r--r-- | x11/tk-Tix/patches/patch-ad | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/x11/tk-Tix/distinfo b/x11/tk-Tix/distinfo index 97def21c533..7a6bacfced3 100644 --- a/x11/tk-Tix/distinfo +++ b/x11/tk-Tix/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.3 2005/02/23 17:36:20 wiz Exp $ +$NetBSD: distinfo,v 1.4 2005/12/12 15:49:47 joerg Exp $ SHA1 (tix8.2.0b1.tar.gz) = c9114e56c41fc492532639127439d6f267c51402 RMD160 (tix8.2.0b1.tar.gz) = 1a80662812ce2b97f7d052f77556de6782f5ee47 @@ -6,3 +6,4 @@ Size (tix8.2.0b1.tar.gz) = 1374621 bytes SHA1 (patch-aa) = b9c15d3435d289a3469e4c1bc261df99e1a2bf2e SHA1 (patch-ab) = 2a46093df4d19c481d58b2a9b8945430d547a12c SHA1 (patch-ac) = 9702cf3635c04ce066f5d910d5a5b6ad1d87d96b +SHA1 (patch-ad) = 305265a7d64f0cb114d3587fed5c2abae4b467c5 diff --git a/x11/tk-Tix/patches/patch-ad b/x11/tk-Tix/patches/patch-ad new file mode 100644 index 00000000000..defc000fdde --- /dev/null +++ b/x11/tk-Tix/patches/patch-ad @@ -0,0 +1,13 @@ +$NetBSD: patch-ad,v 1.1 2005/12/12 15:49:47 joerg Exp $ + +--- ../generic/tixAppInit.c.orig 2005-12-12 15:40:13.000000000 +0000 ++++ ../generic/tixAppInit.c +@@ -31,7 +31,7 @@ + #undef WIN32_LEAN_AND_MEAN + #endif + +-#if !defined(__WIN32__) && !defined(MAC_TCL) /* UNIX */ ++#if !defined(__WIN32__) && !defined(MAC_TCL) && !defined(__DragonFly__) /* UNIX */ + + /* + * The following variable is a special hack that is needed in order for |