diff options
author | ryoon <ryoon@pkgsrc.org> | 2013-05-23 13:12:13 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2013-05-23 13:12:13 +0000 |
commit | 2c532219ce2e709608e4319a16d2c96404e0f6d9 (patch) | |
tree | 629b986d14128a632e067de5dd670396b8a6c3e3 /www/firefox/patches/patch-az | |
parent | 25576cfc42948f49fd49b99a5fd2c3540c545db2 (diff) | |
download | pkgsrc-2c532219ce2e709608e4319a16d2c96404e0f6d9.tar.gz |
Bump PKGREVISION.
* Remove reference to devel/xulrunner.
* Move some common files for firefox/xulrunner-21.0.
* Move patches from devel/sulrunner.
* Take MAINTAINERship.
Diffstat (limited to 'www/firefox/patches/patch-az')
-rw-r--r-- | www/firefox/patches/patch-az | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/www/firefox/patches/patch-az b/www/firefox/patches/patch-az new file mode 100644 index 00000000000..d37d51c9540 --- /dev/null +++ b/www/firefox/patches/patch-az @@ -0,0 +1,19 @@ +$NetBSD: patch-az,v 1.1 2013/05/23 13:12:13 ryoon Exp $ + +--- nsprpub/pr/src/pthreads/ptthread.c.orig 2013-01-04 23:44:43.000000000 +0000 ++++ nsprpub/pr/src/pthreads/ptthread.c +@@ -1043,12 +1043,12 @@ PR_IMPLEMENT(void) PR_ProcessExit(PRIntn + _exit(status); + } + +-PR_IMPLEMENT(PRUint32) PR_GetThreadID(PRThread *thred) ++PR_IMPLEMENT(pthread_t) PR_GetThreadID(PRThread *thred) + { + #if defined(_PR_DCETHREADS) + return (PRUint32)&thred->id; /* this is really a sham! */ + #else +- return (PRUint32)thred->id; /* and I don't know what they will do with it */ ++ return thred->id; /* and I don't know what they will do with it */ + #endif + } + |