| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
| |
iterating over all files under /usr/share/zoneinfo. All supported FreeBSD
versions create the file with tzsetup(8). This change usually improves
java.util.TimeZone performance because we only need to test just one file.
Notes:
svn path=/head/; revision=336136
|
|
|
|
|
|
|
|
|
|
|
|
| |
Clang does not support "-fcheck-new". Note it is a backport of S8021954
(http://hg.openjdk.java.net/hsx/hotspot-rt/hotspot/rev/9758d9f36299).
- Re-implement signal_name() with sys_signame(3) and adjust the comments.
- Re-implement ThreadCritical with PTHREAD_MUTEX_RECURSIVE.
- Fix DEBUG build with Clang on i386. Clang does not support "-gstabs".
- Limit allocatable physical memory per getrlimit(2).
Notes:
svn path=/head/; revision=333271
|
|
|
|
|
|
|
|
|
| |
- Micro-optimize and tidy up some patches.
PR: java/183656 [1]
Notes:
svn path=/head/; revision=332909
|
|
|
|
|
|
|
|
| |
- Add few minor patches related to thread ID that were mis-merged.
- Add couple of minor HotSpot patches from upstream while I am here.
Notes:
svn path=/head/; revision=331642
|
|
|
|
| |
Notes:
svn path=/head/; revision=331315
|
|
|
|
|
|
|
| |
Reported by: Scott Ballantyne (sdb at ssr dot com)
Notes:
svn path=/head/; revision=330421
|
|
|
|
|
|
|
|
|
|
|
| |
- Re-enable -Werror for HotSpot build with GCC.
- Revert couple of unnecessary local changes to reduce diff.
- Add inactive pages as availble memory. Note it is a cosmetic change.
PR: ports/182907 [1]
Notes:
svn path=/head/; revision=330107
|
|
|
|
|
|
|
|
| |
- Fix build with libiconv. This problem was introduced in r330018.
- Update CA list to Oracle Java 7u40. An expired CA was removed.
Notes:
svn path=/head/; revision=330035
|
|
|
|
| |
Notes:
svn path=/head/; revision=329933
|
|
|
|
| |
Notes:
svn path=/head/; revision=329926
|
|
|
|
| |
Notes:
svn path=/head/; revision=326457
|
|
|
|
|
|
|
| |
- Disable test_gamma by default.
Notes:
svn path=/head/; revision=323500
|
|
|
|
| |
Notes:
svn path=/head/; revision=318210
|
|
|
|
|
|
|
|
|
| |
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-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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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=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
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
| |
. 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
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Brian Gardner). Core support needs some more work.
. Install the debug build when WITH_DEBUG is set.
. Change WITH_DEBUG to only build the debug build.
. Eliminate the requirements for the binary plugins.
. Fix some compilation errors in the debug build on 7.x.
Submitted by: Kurt Miller <kurt@intricatesoftware.com>
Notes:
svn path=/head/; revision=234382
|
|
. Host the patchset in the ports infrastructure rather than downloading it.
. Make the port build HotSpot rather than using the one of the bootstrapping
JDK (fixes a license violation).
Submitted by: Kurt Miller <kurt@intricatesoftware.com>
Approved by: Fixes a license violation
Notes:
svn path=/head/; revision=233559
|