| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
| |
http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2013-April/022985.html
Obtained from: IcedTea Project
Notes:
svn path=/head/; revision=316529
|
|
|
|
|
|
|
|
|
| |
http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2013-March/022145.html
Obtained from: IcedTea Project
Notes:
svn path=/head/; revision=313493
|
|
|
|
|
|
|
|
|
|
| |
http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2013-February/021858.html
http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2013-February/021998.html
Obtained from: IcedTea Project
Notes:
svn path=/head/; revision=313491
|
|
|
|
|
|
|
|
|
| |
http://hg.openjdk.java.net/bsd-port/bsd-port/jdk/rev/bfa676f5b5db
Submitted by: oliver
Notes:
svn path=/head/; revision=312083
|
|
|
|
|
|
|
| |
Feature safe: yes
Notes:
svn path=/head/; revision=306592
|
|
|
|
|
|
|
|
|
|
|
|
| |
Added CA:
- geotrustprimarycag2
- thawteprimaryrootcag2
- verisignclass3g4ca
Feature safe: yes
Notes:
svn path=/head/; revision=306300
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
http://icedtea.classpath.org/hg/release/icedtea6-1.11/rev/d9564350faa6
http://blog.fuseyism.com/index.php/2012/10/19/security-icedtea-1-10-10-1-11-15-2-1-3-2-2-3-2-3-3-released/
- Completely turn off parallel build by default and remove parallel build
hack for HotSpot. There were several reports that it fails to build under
certain environment, ports/162991 for example. Users can still do parallel
build by setting FORCE_MAKE_JOBS (and MAKE_JOBS_NUMBER if desired).
- Implement os::available_memory(). Now it is consistent with "vm.vmtotal"
sysctl(3) MIB rather than bogus (physical memory / 4).
- Prefer sysconf(_SC_NPROCESSORS_CONF) over HW_NCPU sysctl MIB to get the
number of installed processors. There is no functional difference except
for CURRENT, which obtains the information from ELF aux vector.
- Prefer sysconf(_SC_PHYS_PAGES) * sysconf(_SC_PAGESIZE) over HW_USERMEM
sysctl MIB to get size of physical memory. Although it looks more logical
to find currently available memory, it has an inevitable side-effect, i. e.,
it changes dynamically depending on current wired page count. Therefore,
it is unpredictable and not too useful some times. For example, launcher
uses the parameter to determine initial heap size and machine class for i386.
Now it is more consistent with other places (and Linux JDK/JREs, including
the ones we have in ports tree).
- Implement os::active_processor_count() using cpuset_getaffinity(2). For
example, Runtime.getRuntime().availableProcessors() now returns number of
available processors for the current process as it should.
- Sync. launchers (java_md.c) for HotSpot and JDK as much as possible for
maintainability. As a good side-effect, launcher for i386 can now determine
machine class based on the current hardware configuration. Previously,
client VM was always chosen by default.
- Fix CounterGet(), which is only used for debugging launcher.
- Add swap info for os::print_memory_info().
Obtained from: IcedTea project [1]
Feature safe: yes
Notes:
svn path=/head/; revision=306138
|
|
|
|
| |
Notes:
svn path=/head/; revision=305604
|
|
|
|
| |
Notes:
svn path=/head/; revision=304940
|
|
|
|
| |
Notes:
svn path=/head/; revision=304938
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Fix build with GCC 4.5+ on i386. [2]
- Convert to the new header format.
Submitted by: Claude Buisson (clbuisson at orange dot fr) [1]
Obtained from: OpenJDK7 [2]
http://hg.openjdk.java.net/jdk7/hotspot/hotspot/rev/da880ba4edf9
Notes:
svn path=/head/; revision=304470
|
|
|
|
|
|
|
|
|
| |
- Fix build with clang.
PR: ports/151042 [1]
Notes:
svn path=/head/; revision=304460
|
|
|
|
|
|
|
| |
- Catch up with icedtea.classpath.org server changes for distfiles.
Notes:
svn path=/head/; revision=303821
|
|
|
|
|
|
|
|
|
|
|
| |
- Drop version suffixes from LIB_DEPENDS.
- Use the new options framework.
Obtained from: IcedTea Project [1]
http://icedtea.classpath.org/hg/icedtea6/rev/9aff0fc60733
Notes:
svn path=/head/; revision=299207
|
|
|
|
| |
Notes:
svn path=/head/; revision=296270
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
result turn it on by default again. This change bears a little more
explanation.
In UnixFileSystem.java there is a cache of canonical paths and in
particular one for paths inside java.home. The problem with looking
up time zone data is that if another path within java.home has been
looked up then the symlink for the time zone data is not resolved
(since the cache assumes there are no symlinks in java.home) and we fail
to be able to open the ZoneInfoMapping file.
One of the other features in UnixFileSystem is that the cache is not
consulted and full resolution occurs for paths containing "." or "..".
I've chosen to (ab)use this to force resolution of the time zone data
directory in ZoneInfoFile.java rather than doing something like IcedTea
did which was to introduce a tz.properties file where they would stash
the time zone info directory rather than symlinking it in. For full
reference that patch is here:
http://icedtea.classpath.org/hg/icedtea6/file/tip/patches/use-system-tzdata.patch
There are two main reasons I chose a bit of a hack rather than something
like this.
1. I want to apply the patch to non-GPL'ed code (e.g. the jdk16 port).
2. Using updated time zone data is only an option in the port and using
something like tz.properties when the option is off is clunky.
Thanks to avg@ for sleuth work on finding the bug write up and the
IcedTea fix.
Notes:
svn path=/head/; revision=295845
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
CVE-2011-3563: Fix issues in java sound
CVE-2011-3571: Fix in AtomicReferenceArray
CVE-2011-5035: Add property to limit number of request headers to the HTTP Server
CVE-2012-0501: Better input parameter checking in zip file processing
CVE-2012-0502: Issues with some KeyboardFocusManager method
CVE-2012-0503: Issues with TimeZone class
CVE-2012-0505: Enhance exception throwing mechanism in ObjectStreamClass
CVE-2012-0506: Issues with some method in corba
Obtained from: IcedTea Project
Notes:
svn path=/head/; revision=291651
|
|
|
|
|
|
|
|
|
|
|
| |
http://hg.openjdk.java.net/bsd-port/bsd-port/hotspot/rev/f19d23da7c3e
http://hg.openjdk.java.net/bsd-port/bsd-port/hotspot/rev/cf5c383e1d33
http://hg.openjdk.java.net/bsd-port/bsd-port/hotspot/rev/f1a18ada5853
- Fix POLICY option. It was silently enabled by default with b19 update.
Notes:
svn path=/head/; revision=289064
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Add x11/libXext to build dependencies. [2]
- Make portlint happy. [3]
PR: ports/162646 [1]
ports/156319 [2]
ports/161985 [3]
Feature safe: yes
Notes:
svn path=/head/; revision=286703
|
|
|
|
|
|
|
|
|
|
|
| |
under ICEDTEA option. [1]
- Chase default Korean font directory change.
PR: ports/158304 [1]
Obtained from: IcedTea Project [1]
Notes:
svn path=/head/; revision=279374
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Import more complete JPEG class support and turn on ICEDTEA option by
default. [1]
- Remove obsolete WEB option. Note the functionality is now moved to a new
port java/icedtea-web, which depends on ICEDTEA option of this port.
Obtained from: IcedTea project [1]
Notes:
svn path=/head/; revision=277567
|
|
|
|
|
|
|
|
|
| |
an ancient xulrunner (i.e., 1.9.2.9 and earlier). This commit should fix:
PR: ports/155381
Notes:
svn path=/head/; revision=271950
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
http://hg.openjdk.java.net/jdk7/jdk7/jdk/diff/441f88d39988/src/solaris/native/java/net/net_util_md.c
Note it has no functional change for FreeBSD because sizeof(socklen_t) is
luckily sizeof(int). Actually, this commit is just to note that the regression
was acidentally pulled in from upstream because of my ignorance. Specifically,
the following commit was the culprit:
http://hg.openjdk.java.net/jdk7/jdk7/jdk/diff/b7fce4bac617/src/solaris/native/java/net/net_util_md.c
FYI, it also triggered the following upstream PR:
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6730740
Obtained from: OpenJDK project
Pointyhat: jkim
Notes:
svn path=/head/; revision=271167
|
|
|
|
|
|
|
| |
On amd64 every call to getsocktopt returns a "Bad address" SocketException.
Notes:
svn path=/head/; revision=271074
|
|
|
|
|
|
|
|
|
|
|
| |
off by default) and sort options. Add a basic wrapper to resurrect
com.sun.image.codec.jpeg using javax.imageio under the new option.
Obtained from: icedtea.classpath.org
PR: java/155288
Notes:
svn path=/head/; revision=270473
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
option when IPv6 is enabled and failed to create a socket.
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6342561
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6882910
For in-depth analysis of this problem from FreeBSD perspective, please see:
http://diario.beerensalat.info/2008/10/12/java_and_ipv6_on_bsd.html
Notes:
svn path=/head/; revision=270217
|
|
|
|
| |
Notes:
svn path=/head/; revision=270095
|
|
|
|
| |
Notes:
svn path=/head/; revision=270073
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
CVE-2010-4469: Hotspot backward jsr heap corruption
CVE-2010-4465: Swing timer-based security manager bypass
CVE-2010-4472: Untrusted code allowed to replace DSIG/C14N implementation
CVE-2010-4448: DNS cache poisoning by untrusted applets
CVE-2010-4450: Launcher incorrect processing of empty library path entries
CVE-2010-4471: Java2D font-related system property leak
CVE-2010-4470: JAXP untrusted component state manipulation
CVE-2011-0706: Multiple signers privilege escalation
Obtained from: icedtea.classpath.org
Obtained from: jaxp.java.net
Notes:
svn path=/head/; revision=269450
|
|
|
|
|
|
|
|
|
| |
is disabled by default because MIDI plugin for OSS does not exist, i.e.,
(hardware) MIDI sequencer is not supported. However, softsynth (Gervill)
works fine as it uses sampled sound.
Notes:
svn path=/head/; revision=268954
|
|
|
|
|
|
|
|
|
|
| |
virtual memory, free physical memory, and number of open file descriptors.
For example, jconsole shows more realistic numbers instead of hardcoded bogus
numbers in VM Summary tab now. Correct a jtreg test case for the swap info.
- Mention procfs(5) is used for some features in this implementation.
Notes:
svn path=/head/; revision=268901
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Improve Serviceability Agent. For example, the following should work now:
jdb -connect sun.jvm.hotspot.jdi.SAPIDAttachingConnector:pid=<PID>
jmap <PID>
jsadebugd <PID>
jstack -F <PID>
jstack -m <PID>
- Replace IcedTea6 1.9.x with IcedTea-Web 1.0 for web support. Note it is
still tightly coupled with openjdk6 for now because we do not have proper
infrastructure to decouple them yet.
- Add itweb-settings (a Java Control Panel replacement for IcedTea-Web).
- Add desktop integration files for web support (but not installed in default
system-wide locations).
Notes:
svn path=/head/; revision=268830
|
|
|
|
| |
Notes:
svn path=/head/; revision=268829
|
|
|
|
|
|
|
| |
Feature safe: yes
Notes:
svn path=/head/; revision=267953
|
|
|
|
|
|
|
|
| |
PR: ports/153421
Submitted by: Alexander Vasyanin (avasyanin at gmail dot com)
Notes:
svn path=/head/; revision=267395
|
|
|
|
|
|
|
| |
Pointed out by: Nikolay Denev <ndenev@gmail.com>
Notes:
svn path=/head/; revision=266218
|
|
|
|
|
|
|
|
|
| |
- Add a patch to fix browser plugin crash[1].
Submitted by: Barbara (barbara dot xxx1975 at libero dot it)[1]
Notes:
svn path=/head/; revision=265115
|
|
|
|
| |
Notes:
svn path=/head/; revision=262972
|
|
|
|
| |
Notes:
svn path=/head/; revision=261751
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
process. Update comments in the patch accordingly.
- Tidy up makefile for the plugin. Remove a hack for include path of libxul,
which is correctly patched from libxul 1.9.2.9_1. Remove mozilla-plugin.pc from
linker options for pkg-config. Generally speaking, NPAPI plugins do not need
to link with Gecko engine directly.
- Move run-time dependencies for the plugin to build-time dependencies as it is
completely optional any way.
Notes:
svn path=/head/; revision=261729
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Note the feature is turned off by default because it adds experimental and
unofficial patches from icedtea.classpath.org. You need to select WEB option
from config menu or define WITH_WEB variable to enable the feature. Also,
note that a symlink for web browser is not created automatically with same
reasoning. Thus, you need to create a symlink for your browser, e.g.,
ln -s ${LOCALBASE}/openjdk6/jre/lib/IcedTeadPlugin.so ~/.mozilla/plugins
Remove some stale comments in package message while I am here.
Notes:
svn path=/head/; revision=261247
|
|
|
|
|
|
|
| |
. Mark as MAKE_JOBS_UNSAFE.
Notes:
svn path=/head/; revision=259253
|
|
|
|
|
|
|
| |
PR: 148202
Notes:
svn path=/head/; revision=257615
|
|
|
|
|
|
|
| |
Update cacerts file from Sun's JRE 6u20.
Notes:
svn path=/head/; revision=254555
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Merge two additional patches from the OpenJDK BSD porting project:
http://hg.openjdk.java.net/bsd-port/bsd-port/jdk/rev/f974aefae43d
http://hg.openjdk.java.net/bsd-port/bsd-port/jdk/rev/62dc2d00133f
- Add a message to note fdescfs(5) is necessary for this implementation.
PR: ports/145806 [1]
Discussed with: glewis, lev
Notes:
svn path=/head/; revision=254511
|
|
|
|
|
|
|
|
|
| |
PR: 145757
Submitted by: myself
Approved by: mainatner timeout ( over 3 weeks)
Notes:
svn path=/head/; revision=253581
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Add support for running regression tests
- Respect LOCALBASE
- Bump PORTREVISION
These are the test results on:
FreeBSD 6 i386: passed: 3113; failed: 29; error: 2
FreeBSD 8 amd64: passed: 3107; failed: 35; error: 2
Note: a couple of tests passed only after a few runs.
Submitted by: ale
Approved by: maintainer
Notes:
svn path=/head/; revision=248260
|
|
|
|
|
|
|
|
| |
Submitted by: jkim [1]
Approved by: maintainer
Notes:
svn path=/head/; revision=248259
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Fix font rendering and update cacerts file
- Add support for fastdebug jdk
- Cleanup/Enhance the port [2]
Submitted by: maintainer [1], ale [2]
Approved by: maintainer
Notes:
svn path=/head/; revision=247989
|
|
|
|
| |
Notes:
svn path=/head/; revision=245253
|