summaryrefslogtreecommitdiff
path: root/java/openjdk7/files (follow)
Commit message (Collapse)AuthorAgeFilesLines
* . Update to 7u25.Greg Lewis2013-06-231-86830/+1898
| | | | | | | . Unbreak the port by committing the other half of the patch-set split. Notes: svn path=/head/; revision=321655
* . Split out the JDK patches into their own file. This will actually breakGreg Lewis2013-06-231-0/+132659
| | | | | | | | the port since I can't commit the split all at once due to subversion size limits. Yay. Notes: svn path=/head/; revision=321654
* . Update to 7u21.Greg Lewis2013-05-052-25235/+44428
| | | | Notes: svn path=/head/; revision=317431
* . Fix the location of theGreg Lewis2013-03-271-0/+20
| | | | | | | | | | | | | FILES_c += initIDs.c line so it comes after FILE_c is explicitly set in the BSD specific block. This fixes missing symbols in libawt. Submitted by: Kurt Miller (kurt@intricatesoftware.com) Obtained from: http://hg.openjdk.java.net/bsd-port/bsd-port/jdk/rev/ef510cd4aec5 Notes: svn path=/head/; revision=315346
* . Allow users to force the file system provider to be the BSD file systemGreg Lewis2013-03-272-0/+58
| | | | | | | | | | | | | | | | provider. This is helpful when users also wish to force os.name to a different value (e.g. Linux) but not being forced to also use the Linux file system provider. This can be done by defining the property java.nio.file.spi.DefaultFileSystemProvider. This patch differs from the submitters in that the range of values are restricted to the current known defaults. PR: 173847 Submitted by: 4721 at hushmail.com Notes: svn path=/head/; revision=315345
* . Update to 7u17.Greg Lewis2013-03-104-655/+51786
| | | | Notes: svn path=/head/; revision=313788
* Add a patch to fix MulticastSocket.setInterface().Jung-uk Kim2013-02-111-0/+47
| | | | | | | | | http://hg.openjdk.java.net/bsd-port/bsd-port/jdk/rev/bfa676f5b5db Submitted by: oliver Notes: svn path=/head/; revision=312084
* . Fix a crash under heavy network load by reverting to using poll(2) ratherGreg Lewis2013-01-291-0/+85
| | | | | | | | | | than select(2). PR: 175417 Based on the patch by: Phil Phillips <pphillips@experts-exchange.com> Notes: svn path=/head/; revision=311149
* . Update to 7u11.Greg Lewis2013-01-184-8332/+17364
| | | | | | | Security: CVE-2013-0422 Notes: svn path=/head/; revision=310581
* - Remove patches for regression tests. Those patches are not necessary butJung-uk Kim2012-11-031-32643/+0
| | | | | | | | | | | | | caused build failures on 7.x. - Revert r306656. bootstrap-openjdk builds it fine now (r306814). - Remove registervm from build dependency. This hack is no longer necessary as javavmwrapper is fixed now (r306536). Approved by: glewis (maintainer) Feature safe: yes Notes: svn path=/head/; revision=306942
* . Update to 7u9.Greg Lewis2012-10-283-74/+40207
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=306572
* . Commit a fix for CVE-2012-4681.Greg Lewis2012-08-301-0/+63
| | | | | | | Obtained from: Mark Wielaard <mjw@redhat.com> via rea@ Notes: svn path=/head/; revision=303360
* . Allow openjdk7 to work with icedtea-web port.Greg Lewis2012-08-261-0/+106
| | | | | | | Submitted by: jkim@ Notes: svn path=/head/; revision=303173
* . Update to 7u6.Greg Lewis2012-08-214-3652/+6079
| | | | | | | . Enlist openjdk7 users as testers of ant 1.8.4. Notes: svn path=/head/; revision=302840
* . Update to what should be 7u5. Based on the bug ids fromGreg Lewis2012-08-061-0/+2985
| | | | | | | http://blog.fuseyism.com/index.php/2012/06/13/security-icedtea-2-1-1-2-2-1-released/ Notes: svn path=/head/; revision=302145
* . Fix locale generation.Greg Lewis2012-06-162-21/+40
| | | | | | | PR: 169037 Notes: svn path=/head/; revision=299406
* . Fix jstack.Greg Lewis2012-06-061-0/+16
| | | | Notes: svn path=/head/; revision=298629
* . Update to 7u4. This was a fairly significant merge, so please reportGreg Lewis2012-05-273-31508/+4766
| | | | | | | | | | | any regressions in functionality that might have been missed. Biggest news is that partial BSD support is now in the official source distribution through the OS X port's inclusion. Partly obtained from Kurt Miller <kurt@intricatesoftware.com> Notes: svn path=/head/; revision=297552
* . Update to 7 Update 3. Since there was no separate source bundle releasedGreg Lewis2012-04-181-0/+4326
| | | | | | | | this is done with an additional patch instead of updating the source bundle being used and the associated patch set. Notes: svn path=/head/; revision=295045
* . Use the latest cacerts file from the official Oracle distribution ofGreg Lewis2012-03-061-0/+0
| | | | | | | Update 2. Notes: svn path=/head/; revision=292799
* . Update to OpenJDK 7 Update 2.Greg Lewis2012-03-061-2441/+1591
| | | | Notes: svn path=/head/; revision=292798
* . Try harder to make sure the flags returned from getFlags isn't negative,Greg Lewis2011-07-081-0/+17
| | | | | | | | | | | | | | | | | since a number of places in the code check for that and assume that it means an error occurred. On FreeBSD, in particular, the value of ifr_flags can be negative if multicast is enabled on the socket since the possible flags have expanded to fill more than a short. Instead of blindly promoting ifr_flags to an int, which will preserve the sign, we fill the int return value with ifr_flagshigh in the high 16 bits and ifr_flags in the low 16 bits. PR: 155186 Reported by: Alex Hayward <xelah-freebsd-pr@xelah.com> Notes: svn path=/head/; revision=277348
* . Update to Build 147.Greg Lewis2011-06-291-637/+637
| | | | Notes: svn path=/head/; revision=276635
* . Update to Build 146.Greg Lewis2011-06-261-658/+669
| | | | Notes: svn path=/head/; revision=276452
* . Update to Build 144.Greg Lewis2011-05-292-6908/+7368
| | | | Notes: svn path=/head/; revision=274787
* . Fix infinite loop in parsing certain doubles. See CVE-2010-4476.Greg Lewis2011-02-091-0/+11
| | | | Notes: svn path=/head/; revision=268829
* . Update to Build 122.Greg Lewis2010-12-181-544/+546
| | | | Notes: svn path=/head/; revision=266545
* . Update to Build 121.Greg Lewis2010-12-142-899/+987
| | | | Notes: svn path=/head/; revision=266309
* . Update to Build 117.Greg Lewis2010-11-082-1932/+2520
| | | | | | | | . Temporarily disable a previous openjdk7 install as a bootstrap since the previous version won't compile this one. Notes: svn path=/head/; revision=264230
* . Add a new NIO selector that uses kqueue(2) and make it the default. [1]Greg Lewis2010-08-161-0/+1236
| | | | | | | | | | . Mark as MAKE_JOBS_UNSAFE. . Pet portlint. Submitted by: davidxu@ [1] Notes: svn path=/head/; revision=259324
* . Update to the latest set of root certificates that come with the JDK.Greg Lewis2010-07-251-0/+0
| | | | Notes: svn path=/head/; revision=258213
* . Update to Build 100.Greg Lewis2010-07-111-1920/+2530
| | | | Notes: svn path=/head/; revision=257646
* . Update to Build 86.Greg Lewis2010-03-271-772/+806
| | | | Notes: svn path=/head/; revision=251590
* . Add ${LOCALBASE}/lib to the default library path. [1]Greg Lewis2010-02-231-0/+13
| | | | | | | | | | | . Add a runtime dependency on javavmwrapper. [2] PR: 144076 [2] Submitted by: ale@ [1] Feature safe: yes Notes: svn path=/head/; revision=250216
* . Update to Build 82.Greg Lewis2010-02-071-1068/+1196
| | | | Notes: svn path=/head/; revision=249397
* . Update to Build 80.Greg Lewis2010-01-243-1769/+975
| | | | Notes: svn path=/head/; revision=248483
* . Pull down a fix for an unsigned/signed comparison error that hasn't madeGreg Lewis2010-01-222-0/+22
| | | | | | | | | it into a build yet. This causes a build breakage on 6.x/amd64 at least. Pointed out by: pointyhat (via pav) Notes: svn path=/head/; revision=248351
* . Update to Build 79.Greg Lewis2010-01-181-1208/+1510
| | | | Notes: svn path=/head/; revision=248043
* . Add a fairly barebones port of OpenJDK7:Greg Lewis2010-01-032-0/+30940
An open-source implementation of the Java Platform, Standard Edition, WWW: http://openjdk.java.net/ Notes: svn path=/head/; revision=247074