head 1.9; access; symbols pkgsrc-2013Q2:1.9.0.10 pkgsrc-2013Q2-base:1.9 pkgsrc-2012Q4:1.9.0.8 pkgsrc-2012Q4-base:1.9 pkgsrc-2011Q4:1.9.0.6 pkgsrc-2011Q4-base:1.9 pkgsrc-2011Q2:1.9.0.4 pkgsrc-2011Q2-base:1.9 pkgsrc-2009Q4:1.9.0.2 pkgsrc-2009Q4-base:1.9 pkgsrc-2009Q2:1.8.0.2 pkgsrc-2009Q2-base:1.8 pkgsrc-2009Q1:1.7.0.20 pkgsrc-2009Q1-base:1.7 pkgsrc-2008Q4:1.7.0.18 pkgsrc-2008Q4-base:1.7 pkgsrc-2008Q3:1.7.0.16 pkgsrc-2008Q3-base:1.7 cube-native-xorg:1.7.0.14 cube-native-xorg-base:1.7 pkgsrc-2008Q2:1.7.0.12 pkgsrc-2008Q2-base:1.7 cwrapper:1.7.0.10 pkgsrc-2008Q1:1.7.0.8 pkgsrc-2008Q1-base:1.7 pkgsrc-2007Q4:1.7.0.6 pkgsrc-2007Q4-base:1.7 pkgsrc-2007Q3:1.7.0.4 pkgsrc-2007Q3-base:1.7 pkgsrc-2007Q2:1.7.0.2 pkgsrc-2007Q2-base:1.7 pkgsrc-2007Q1:1.6.0.12 pkgsrc-2007Q1-base:1.6 pkgsrc-2006Q4:1.6.0.10 pkgsrc-2006Q4-base:1.6 pkgsrc-2006Q3:1.6.0.8 pkgsrc-2006Q3-base:1.6 pkgsrc-2006Q2:1.6.0.6 pkgsrc-2006Q2-base:1.6 pkgsrc-2006Q1:1.6.0.4 pkgsrc-2006Q1-base:1.6 pkgsrc-2005Q4:1.6.0.2 pkgsrc-2005Q4-base:1.6 pkgsrc-2005Q3:1.5.0.2 pkgsrc-2005Q3-base:1.5 pkgsrc-2005Q2:1.3.0.6 pkgsrc-2005Q2-base:1.3 pkgsrc-2005Q1:1.3.0.4 pkgsrc-2005Q1-base:1.3 pkgsrc-2004Q4:1.3.0.2 pkgsrc-2004Q4-base:1.3 pkgsrc-2004Q3:1.2.0.2 pkgsrc-2004Q3-base:1.2 pkgsrc-2004Q2:1.1.1.1.0.4 pkgsrc-2004Q2-base:1.1.1.1 pkgsrc-2004Q1:1.1.1.1.0.2 pkgsrc-2004Q1-base:1.1.1.1 pkgsrc-base:1.1.1.1 TNF:1.1.1; locks; strict; comment @# @; 1.9 date 2009.08.05.01.27.32; author tnn; state dead; branches; next 1.8; 1.8 date 2009.04.07.08.01.01; author hasso; state Exp; branches; next 1.7; 1.7 date 2007.05.12.13.53.09; author ghen; state Exp; branches; next 1.6; 1.6 date 2005.12.10.13.47.22; author taya; state Exp; branches; next 1.5; 1.5 date 2005.09.22.14.14.04; author jlam; state Exp; branches; next 1.4; 1.4 date 2005.09.08.22.03.45; author abs; state Exp; branches; next 1.3; 1.3 date 2004.10.04.09.15.29; author grant; state Exp; branches; next 1.2; 1.2 date 2004.06.23.16.47.12; author taya; state Exp; branches 1.2.2.1; next 1.1; 1.1 date 2004.02.29.17.45.02; author xtraeme; state Exp; branches 1.1.1.1; next ; 1.2.2.1 date 2004.10.26.11.09.16; author agc; state Exp; branches; next ; 1.1.1.1 date 2004.02.29.17.45.02; author xtraeme; state Exp; branches; next ; desc @@ 1.9 log @Remove firefox 2.x. Firefox 3.5 branch will be imported in this location. (I opted for removing and re-importing instead of a plain update due to extensive patch rototil) We may encounter minor turbulence as dependent packages are sorted out. Thank you for flying pkgsrc-current. @ text @$NetBSD: patch-br,v 1.8 2009/04/07 08:01:01 hasso Exp $ --- nsprpub/pr/src/misc/prnetdb.c.orig 2006-11-14 19:41:59 +0200 +++ nsprpub/pr/src/misc/prnetdb.c 2009-04-04 18:10:55 +0300 @@@@ -113,6 +113,11 @@@@ PRLock *_pr_dnsLock = NULL; #define _PR_HAVE_5_ARG_GETPROTO_R #endif +#if __DragonFly_version >= 200202 +#define _PR_HAVE_GETPROTO_R +#define _PR_HAVE_5_ARG_GETPROTO_R +#endif + #if (defined(LINUX) && defined(__GLIBC__) && __GLIBC__ >= 2) #define _PR_HAVE_GETPROTO_R #define _PR_HAVE_5_ARG_GETPROTO_R @@@@ -329,7 +334,7 @@@@ _pr_QueryNetIfs(void) } #elif (defined(DARWIN) && defined(HAVE_GETIFADDRS)) || defined(FREEBSD) \ - || defined(NETBSD) || defined(OPENBSD) + || defined(NETBSD) || defined(OPENBSD) || defined(DRAGONFLY) /* * Use the BSD getifaddrs function. @@@@ -2115,7 +2120,17 @@@@ PR_IMPLEMENT(PRAddrInfo *) PR_GetAddrInf */ hints.ai_socktype = SOCK_STREAM; +/* NetBSD >= 2.99.9 has a thread-safe resolver */ +#if defined(__NetBSD_Version__) && __NetBSD_Version__ < 299000900 + LOCK_DNS(); +#endif + rv = GETADDRINFO(hostname, NULL, &hints, &res); + +#if defined(__NetBSD_Version__) && __NetBSD_Version__ < 299000900 + UNLOCK_DNS(); +#endif + if (rv == 0) return (PRAddrInfo *) res; @ 1.8 log @Make Mozilla products build on DragonFly master. @ text @d1 1 a1 1 $NetBSD: patch-br,v 1.7 2007/05/12 13:53:09 ghen Exp $ @ 1.7 log @Update to Firefox 2.0.0.3 (nb1), from www/firefox2* (see there for history and change notes). Firefox 1.5.0.x will be maintained in www/firefox15*, as discussed on tech-pkg. @ text @d1 1 a1 1 $NetBSD: patch-br,v 1.1.1.1 2006/10/24 22:20:12 ghen Exp $ d3 24 a26 4 diff -ruN ../Orig/mozilla/nsprpub/pr/src/misc/prnetdb.c ./nsprpub/pr/src/misc/prnetdb.c --- ../Orig/mozilla/nsprpub/pr/src/misc/prnetdb.c 2005-08-19 02:24:38.000000000 +0900 +++ ./nsprpub/pr/src/misc/prnetdb.c 2005-12-04 19:18:10.000000000 +0900 @@@@ -2110,7 +2110,17 @@@@ @ 1.6 log @ Update firefox & firefox-gtk1 to 1.5 Including fix for long title & history file problem. http://www.mozilla.org/security/history-title.html https://bugzilla.mozilla.org/show_bug.cgi?id=319004 What's New in Firefox 1.5 Firefox 1.5 is the next version of our award-winning Web browser. Here's what's new in Firefox 1.5: * Automated update to streamline product upgrades. Notification of an update is more prominent, and updates to Firefox may now be half a megabyte or smaller. Updating extensions has also improved. * Faster browser navigation with improvements to back and forward button performance. * Drag and drop reordering for browser tabs. * Improvements to popup blocking. * Clear Private Data feature provides an easy way to quickly remove personal data through a menu item or keyboard shortcut. * Answers.com is added to the search engine list. * Improvements to product usability including descriptive error pages, redesigned options menu, RSS discovery, and "Safe Mode" experience. * Better accessibility including support for DHTML accessibility and assistive technologies such as the Window-Eyes 5.5 beta screen reader for Microsoft Windows. Screen readers read aloud all available information in applications and documents or show the information on a Braille display, enabling blind and visually impaired users to use equivalent software functionality as their sighted peers. * Report a broken Web site wizard to report Web sites that are not working in Firefox. * Better support for Mac OS X (10.2 and greater) including profile migration from Safari and Mac Internet Explorer. * New support for Web Standards including SVG, CSS 2 and CSS 3, and JavaScript 1.6. * Many security enhancements. The Burning Edge has more detailed lists of new features and notable bug fixes. http://www.squarefree.com/burningedge/releases/1.5-comprehensive.html @ text @d1 1 a1 1 $NetBSD$ @ 1.5 log @Update www/firefox and www/firefox-gtk1 to version 1.0.7. Changes from version 1.0.6 include: * Fix for a potential buffer overflow vulnerability when loading a hostname with all soft-hyphens * Fix to prevent URLs passed from external programs from being parsed by the shell (Linux only) * Fix to prevent a crash when loading a Proxy Auto-Config (PAC) script that uses an "eval" statement * Fix to restore InstallTrigger.getVersion() for Extension authors * Other stability and security fixes Approved by taya. @ text @d1 1 a1 1 $NetBSD: patch-br,v 1.4 2005/09/08 22:03:45 abs Exp $ d3 4 a6 3 --- nsprpub/pr/src/misc/prnetdb.c.orig 2004-09-01 23:07:28.000000000 +0000 +++ nsprpub/pr/src/misc/prnetdb.c @@@@ -2098,7 +2098,17 @@@@ PR_IMPLEMENT(PRAddrInfo *) PR_GetAddrInf @ 1.4 log @Update patches for mozilla applications to handle the fact that on NetBSD the thread safe resolver is only available on __NetBSD_Version__ >= 299000900. Fixes runtime usage on NetBSD 2.1. New Versions: - firefox-1.0.6nb2 - firefox-gtk1-1.0.6nb2 - mozilla-1.7.11nb1 - mozilla-gtk2-1.7.11nb1 - thunderbird-1.0.6nb1 - thunderbird-gtk1-1.0.6nb1 @ text @d1 1 a1 1 $NetBSD: patch-br,v 1.3 2004/10/04 09:15:29 grant Exp $ d3 1 a3 1 --- nsprpub/pr/src/misc/prnetdb.c.orig 2004-01-23 09:22:37.000000000 +1100 d5 1 a5 1 @@@@ -2094,7 +2094,17 @@@@ PR_IMPLEMENT(PRAddrInfo *) PR_GetAddrInf @ 1.3 log @commit a patch for using thread-safe resolver library functions on NetBSD >=2.0F - I've been running with it for months on -current without any problems. @ text @d1 1 a1 1 $NetBSD$ d9 2 a10 2 +/* NetBSD >=2.0F has a thread-safe resolver */ +#if defined(__NetBSD_Version__) && __NetBSD_Version__ < 200060000 d16 1 a16 1 +#if defined(__NetBSD_Version__) && __NetBSD_Version__ < 200060000 @ 1.2 log @ Update firefox to 0.9 Here's what's new in this release of Firefox: * New Default Theme An updated Default Theme now presents a uniform appearance across all three platforms - a new crisp, clear look for Windows users. Finetuning for GNOME will follow in future releases. * Comprehensive Data Migration Switching to Firefox has never been easier now that Firefox imports data like Favorites, History, Settings, Cookies and Passwords from Internet Explorer. Firefox can also import from Mozilla 1.x, Netscape 4.x, 6.x and 7.x, and Opera. MacOS X and Linux migrators for browsers like Safari, OmniWeb, Konqueror etc. will arrive in future releases. * Extension/Theme Manager New Extension and Theme Managers provide a convenient way to manage and update your add-ons. SmartUpdate also notifies you of updates to Firefox. * Help A new online help system is available. * Lots of bug fixes and improvements Copy Image, the ability to delete individual items from Autocomplete lists, SMB/SFTP support on GNOME via gnome-vfs, better Bookmarks, Search and many other refinements fine tune the browsing experience. For Linux/GTK2 Users * Look and Feel Updates Ongoing improvements have been made to improve the way Firefox adheres to your GTK2 themes, such as menus. * Talkback for GTK2 Help us nail down crashes by submitting talkback reports with this crash reporting tool. @ text @d3 3 a5 4 diff -ru ../Orig/mozilla/nsprpub/pr/src/misc/prnetdb.c ./nsprpub/pr/src/misc/prnetdb.c --- ../Orig/mozilla/nsprpub/pr/src/misc/prnetdb.c 2004-01-23 07:22:37.000000000 +0900 +++ ./nsprpub/pr/src/misc/prnetdb.c 2004-06-15 23:56:46.000000000 +0900 @@@@ -2094,7 +2094,12 @@@@ d9 4 a12 1 + LOCK_DNS(); d16 1 d18 1 @ 1.2.2.1 log @Security Pullup - requested by Grant Beattie security fix for firefox Includes the following modifications: Module Name: pkgsrc Committed By: grant Date: Mon Oct 4 09:11:30 UTC 2004 Modified Files: pkgsrc/www/firefox: Makefile-firefox.common distinfo Log Message: update to Firefox 0.10.1, bugfix for a security issue: http://www.mozilla.org/press/mozilla-2004-10-01-02.html To generate a diff of this commit: cvs rdiff -r1.3 -r1.4 pkgsrc/www/firefox/Makefile-firefox.common cvs rdiff -r1.16 -r1.17 pkgsrc/www/firefox/distinfo --- Module Name: pkgsrc Committed By: grant Date: Mon Oct 4 09:15:29 UTC 2004 Modified Files: pkgsrc/www/firefox: distinfo pkgsrc/www/firefox/patches: patch-br Log Message: commit a patch for using thread-safe resolver library functions on NetBSD >=2.0F - I've been running with it for months on -current without any problems. To generate a diff of this commit: cvs rdiff -r1.17 -r1.18 pkgsrc/www/firefox/distinfo cvs rdiff -r1.2 -r1.3 pkgsrc/www/firefox/patches/patch-br --- Module Name: pkgsrc Committed By: reed Date: Sat Oct 16 20:08:48 UTC 2004 Modified Files: pkgsrc/www/firefox: Makefile-firefox.common Log Message: Use cp(1)'s -RL instead of -r, because coreutils's cp -r copies symlinks as symlinks (which caused files to be missing in install). Hopefully, this is portable. I tested under NetBSD and with coreutils. And I brought this up on tech-pkg in July. To generate a diff of this commit: cvs rdiff -r1.4 -r1.5 pkgsrc/www/firefox/Makefile-firefox.common --- Module Name: pkgsrc Committed By: reed Date: Tue Oct 19 21:01:47 UTC 2004 Modified Files: pkgsrc/www/firefox: Makefile-firefox.common Log Message: Instead of non-portable cp -RL, use pax with -Lrw to copy the extensions files. On Solaris, cp doesn't know -L. (Reported by R. Quinn.) Using pax was suggested by grant@@. To generate a diff of this commit: cvs rdiff -r1.5 -r1.6 pkgsrc/www/firefox/Makefile-firefox.common --- Module Name: pkgsrc Committed By: xtraeme Date: Thu Oct 21 00:55:36 UTC 2004 Modified Files: pkgsrc/www/firefox: distinfo Added Files: pkgsrc/www/firefox/patches: patch-cd Log Message: Only include if !defined(_cplusplus) in nptypes.h. Fixes build on NetBSD/macppc and maybe others, tested by Peter Bex on 2-0/macppc and i386/-current/2-0 by me, closes PR pkg/27033. To generate a diff of this commit: cvs rdiff -r1.18 -r1.19 pkgsrc/www/firefox/distinfo cvs rdiff -r0 -r1.1 pkgsrc/www/firefox/patches/patch-cd --- Module Name: pkgsrc Committed By: grant Date: Sun Oct 24 05:41:25 UTC 2004 Modified Files: pkgsrc/www/firefox: distinfo Added Files: pkgsrc/www/firefox/patches: patch-ce patch-cf Log Message: apply patch from mozilla CVS to fix bug id #260337 (installer missing libnsl on Solaris), as well as another sh(1) portability fix. https://bugzilla.mozilla.org/show_bug.cgi?id=260337 no PKGREVISION bump because this didn't build on Solaris without libnsl. To generate a diff of this commit: cvs rdiff -r1.19 -r1.20 pkgsrc/www/firefox/distinfo cvs rdiff -r0 -r1.1 pkgsrc/www/firefox/patches/patch-ce \ pkgsrc/www/firefox/patches/patch-cf @ text @d1 1 a1 1 $NetBSD: patch-br,v 1.2 2004/06/23 16:47:12 taya Exp $ d3 4 a6 3 --- nsprpub/pr/src/misc/prnetdb.c.orig 2004-01-23 09:22:37.000000000 +1100 +++ nsprpub/pr/src/misc/prnetdb.c @@@@ -2094,7 +2094,17 @@@@ PR_IMPLEMENT(PRAddrInfo *) PR_GetAddrInf d10 1 a10 4 +/* NetBSD >=2.0F has a thread-safe resolver */ +#if defined(__NetBSD_Version__) && __NetBSD_Version__ < 200060000 + LOCK_DNS(); +#endif a13 1 +#if defined(__NetBSD_Version__) && __NetBSD_Version__ < 200060000 a14 1 +#endif @ 1.1 log @Initial revision @ text @d3 3 a5 2 --- nsprpub/pr/src/misc/prnetdb.c.orig 2003-10-31 14:09:29.000000000 +0900 +++ nsprpub/pr/src/misc/prnetdb.c 2004-02-27 15:09:13.000000000 +0900 @ 1.1.1.1 log @Initial import of firefox-0.8, provided by Kouichirou Hiratsuka in PR pkg/24603. Mozilla Firefox is a free, open-source and cross-platform web browser for Windows, Linux, MacOS X and many other operating systems. It is small, fast and easy to use, and offers many advantages over other web browsers, such as tabbed browsing and the ability to block pop-up windows. Firefox also offers excellent bookmark and history management, and it can be extended by developers using industry standards such as XML, CSS, JavaScript, C++, etc. Many extensions are available. @ text @@