head 1.2; access; symbols pkgsrc-2013Q2:1.2.0.20 pkgsrc-2013Q2-base:1.2 pkgsrc-2012Q4:1.2.0.18 pkgsrc-2012Q4-base:1.2 pkgsrc-2011Q4:1.2.0.16 pkgsrc-2011Q4-base:1.2 pkgsrc-2011Q2:1.2.0.14 pkgsrc-2011Q2-base:1.2 pkgsrc-2009Q4:1.2.0.12 pkgsrc-2009Q4-base:1.2 pkgsrc-2008Q4:1.2.0.10 pkgsrc-2008Q4-base:1.2 pkgsrc-2008Q3:1.2.0.8 pkgsrc-2008Q3-base:1.2 cube-native-xorg:1.2.0.6 cube-native-xorg-base:1.2 pkgsrc-2008Q2:1.2.0.4 pkgsrc-2008Q2-base:1.2 pkgsrc-2008Q1:1.2.0.2 pkgsrc-2008Q1-base:1.2 pkgsrc-2007Q4:1.1.1.1.0.6 pkgsrc-2007Q4-base:1.1.1.1 pkgsrc-2007Q3:1.1.1.1.0.4 pkgsrc-2007Q3-base:1.1.1.1 pkgsrc-2007Q2:1.1.1.1.0.2 pkgsrc-2007Q2-base:1.1.1.1 pkgsrc-base:1.1.1.1 TNF:1.1.1; locks; strict; comment @# @; 1.2 date 2008.03.25.13.42.24; author wiz; state dead; branches; next 1.1; 1.1 date 2007.05.12.13.56.10; author ghen; state Exp; branches 1.1.1.1; next ; 1.1.1.1 date 2007.05.12.13.56.10; author ghen; state Exp; branches; next ; desc @@ 1.2 log @Remove firefox15 packages. They have security problems and are not maintained. Removal was announced on pkgsrc-users on March 13. @ text @$NetBSD: patch-af,v 1.1 2007/05/12 13:56:10 ghen Exp $ diff -ruN ../Orig/mozilla/security/nss/lib/freebl/unix_rand.c ./security/nss/lib/freebl/unix_rand.c --- ../Orig/mozilla/security/nss/lib/freebl/unix_rand.c 2005-10-11 08:22:50.000000000 +0900 +++ ./security/nss/lib/freebl/unix_rand.c 2005-12-04 19:04:32.000000000 +0900 @@@@ -35,6 +35,7 @@@@ * ***** END LICENSE BLOCK ***** */ #include +#include #include #include #include @@@@ -694,7 +695,11 @@@@ /* dup write-side of pipe to stderr and stdout */ if (p[1] != 1) dup2(p[1], 1); if (p[1] != 2) dup2(p[1], 2); - close(0); + fd = open("/dev/null", O_RDONLY); + if (fd != 0) { + dup2(fd, 0); + close(fd); + } { int ndesc = getdtablesize(); for (fd = PR_MIN(65536, ndesc); --fd > 2; close(fd)); @ 1.1 log @Initial revision @ text @d1 1 a1 1 $NetBSD: patch-af,v 1.4 2005/12/10 13:47:22 taya Exp $ @ 1.1.1.1 log @Re-import firefox-1.5.0.11 as www/firefox15, www/firefox has firefox-2.0.0.3nb1 now, as discussed with gdt on tech-pkg. @ text @@