diff options
author | drochner <drochner> | 2003-02-02 11:47:58 +0000 |
---|---|---|
committer | drochner <drochner> | 2003-02-02 11:47:58 +0000 |
commit | 51575fd9a6757e27527222befafaf5095993844c (patch) | |
tree | 66be50dfb9a57cbc221ddb95992c47e6e2bd106b /www/phoenix | |
parent | 9669d92a2d8b49f6c534e0fa45fb9f0a46799f91 (diff) | |
download | pkgsrc-51575fd9a6757e27527222befafaf5095993844c.tar.gz |
fix an unitialized variable problem which made the browser die
after downloading sth
should fix PR pkg/19427 and pkg/19718
Diffstat (limited to 'www/phoenix')
-rw-r--r-- | www/phoenix/distinfo | 3 | ||||
-rw-r--r-- | www/phoenix/patches/patch-ca | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/www/phoenix/distinfo b/www/phoenix/distinfo index 12366399a5b..c45e28d1d9e 100644 --- a/www/phoenix/distinfo +++ b/www/phoenix/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.5 2003/01/20 23:38:08 taya Exp $ +$NetBSD: distinfo,v 1.6 2003/02/02 11:47:58 drochner Exp $ SHA1 (mozilla-phoenix-0.5.tar.bz2) = cd4fb41baaf6c4a62991c37bd7fe0acf49dca8df Size (mozilla-phoenix-0.5.tar.bz2) = 30378315 bytes @@ -15,3 +15,4 @@ SHA1 (patch-be) = 53eba663f1b872f3ad7f689d1655dc66fa50aa01 SHA1 (patch-bj) = c088b47768518d0b5eec44d49a4ce83f51ce090a SHA1 (patch-bm) = 2b905bae67ccd719528c40988784f534b0623fad SHA1 (patch-bn) = fe5152d4f4bb8bd791249237f0dcd14e11ba27d1 +SHA1 (patch-ca) = dc934034eb3d45ec94e382eeea716bbc73752854 diff --git a/www/phoenix/patches/patch-ca b/www/phoenix/patches/patch-ca new file mode 100644 index 00000000000..b3b48cb5a7f --- /dev/null +++ b/www/phoenix/patches/patch-ca @@ -0,0 +1,13 @@ +$NetBSD: patch-ca,v 1.1 2003/02/02 11:47:59 drochner Exp $ + +--- ./nsprpub/pr/src/misc/prtime.c.orig Sat Feb 1 00:51:02 2003 ++++ ./nsprpub/pr/src/misc/prtime.c Sat Feb 1 00:51:24 2003 +@@ -1666,7 +1666,7 @@ + * values for these two fields. + */ + +-#if defined(SUNOS4) || (__GLIBC__ >= 2) || defined(XP_BEOS) ++#if defined(SUNOS4) || (__GLIBC__ >= 2) || defined(XP_BEOS) || defined(__NetBSD__) + if (mktime(&a) == -1) { + PR_snprintf(buf, buflen, "can't get timezone"); + return 0; |