summaryrefslogtreecommitdiff
path: root/java/openjdk8 (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* . Unreak CCACHEGreg Lewis2016-01-212-0/+22
| | | | | | | | PR: 205751 Submitted by: chris@chrullrich.net Notes: svn path=/head/; revision=406824
* - Partially implement getThreadUserTime() using getrusage(2). Note we canJung-uk Kim2016-01-052-20/+58
| | | | | | | | | | | | | | only get usage for the current thread. Return -1 if the requested function is not supported, i.e., user time for other threads, rather than crash. [1] - Properly implement os::elapsedVTime() using getrusage(). Basically, it is taken from Linux version. - Temporarily revert r403748 to fix bootstrapping with earlier OpenJDK8. [2] PR: 205523, 205843 [1] PR: 205544 [2] Notes: svn path=/head/; revision=405320
* . Stub implementation of OperatingSystemImpl.Greg Lewis2016-01-022-1/+46
| | | | | | | PR: 205229 Notes: svn path=/head/; revision=405058
* Fix the previous commit. We do not support getThreadUserTime().Jung-uk Kim2015-12-231-1/+1
| | | | | | | PR: 205523 Notes: svn path=/head/; revision=404273
* Implement ThreadMXBean.getThreadCpuTime(), etc.Jung-uk Kim2015-12-233-0/+90
| | | | | | | | PR: 205523 Submitted by: will (via bsd-port-dev@openjdk.java.net) Notes: svn path=/head/; revision=404270
* Fix build with fmake.Jung-uk Kim2015-12-151-1/+1
| | | | | | | Reported by: antoine Notes: svn path=/head/; revision=403763
* Build compilefontconfig.jar and javazic.jar with bootstrap jar. OriginallyJung-uk Kim2015-12-141-2/+2
| | | | | | | | | it was intended to test the newly built JVM, it is not cross-build friendly. Submitted by: Eugene M. Zheganin (emz at norma dot perm dot ru) Notes: svn path=/head/; revision=403749
* Build with sjavac when we are self-hosting to improve build speed.Jung-uk Kim2015-12-141-0/+4
| | | | Notes: svn path=/head/; revision=403748
* Allow java/openjdk7 for bootstrapping java/openjdk8. Although we cannotJung-uk Kim2015-12-141-4/+3
| | | | | | | build OpenJDK7 for ARM yet, there is no need to disallow it at all. Notes: svn path=/head/; revision=403747
* Respect CC, CPP and CXX with full paths.Jung-uk Kim2015-12-141-1/+1
| | | | | | | PR: 203747 Notes: svn path=/head/; revision=403746
* Respect CC, CPP and CXX with full paths.Jung-uk Kim2015-12-141-0/+12
| | | | | | | PR: 203747 Notes: svn path=/head/; revision=403745
* . Update to 8u66.Greg Lewis2015-12-134-2116/+4678
| | | | Notes: svn path=/head/; revision=403646
* Restore jtreg disappeared in r396353.Jung-uk Kim2015-12-111-0/+2
| | | | | | | PR: 205234 Notes: svn path=/head/; revision=403551
* Work around build failures with Poudriere. We have to limit max heap sizeJung-uk Kim2015-12-101-0/+6
| | | | | | | when building 32-bit targets on a 64-bit host for some unknown reason. Notes: svn path=/head/; revision=403465
* Fix regression introduced in r372338, i.e., mis-merged fix for JDK-8031581.Jung-uk Kim2015-12-102-1/+24
| | | | | | | PR: 205192 Notes: svn path=/head/; revision=403464
* Add an upstream patch to fix build for some 32-bit platforms, i.e.,Jung-uk Kim2015-12-091-0/+28
| | | | | | | | | java.lang.OutOfMemroryError. http://hg.openjdk.java.net/jdk8u/jdk8u/rev/f398f28e3112 Notes: svn path=/head/; revision=403432
* Update giflib to 5.1.1Antoine Brodin2015-12-031-0/+1
| | | | | | | PR: 204492 Notes: svn path=/head/; revision=402898
* Add support for armv6hf. Tested on Raspberry Pi 2 Model B.Jung-uk Kim2015-10-151-5/+5
| | | | Notes: svn path=/head/; revision=399355
* Clean up and modernize the port. No functional change.Jung-uk Kim2015-09-292-66/+142
| | | | Notes: svn path=/head/; revision=398188
* . Add support for armv6.Greg Lewis2015-09-294-7/+148
| | | | | | | | | PR: 201308 Submitted by: mikael.urankar@gmail.com Reviewed by: sbruno Notes: svn path=/head/; revision=398182
* Do not build unnecessary targets to reduce build time.Jung-uk Kim2015-09-161-0/+7
| | | | Notes: svn path=/head/; revision=397040
* . Switch to xz for the new remote patches to decrease download size.Greg Lewis2015-09-092-27/+27
| | | | Notes: svn path=/head/; revision=396459
* . Move the large patches which contain the changes between updates of theGreg Lewis2015-09-0811-1143912/+28
| | | | | | | | | JDK to being fetched remotely using PATCHFILES and PATCH_SITES. This cuts the size taken by openjdk8 in the ports repository. Notes: svn path=/head/; revision=396353
* . Update to 8u60.Greg Lewis2015-09-074-983/+285491
| | | | Notes: svn path=/head/; revision=396257
* Fix few more mismerges in the previous update.Jung-uk Kim2015-07-203-16/+20
| | | | Notes: svn path=/head/; revision=392605
* Tidy up couple of problems in the previous update.Jung-uk Kim2015-07-203-5/+16
| | | | Notes: svn path=/head/; revision=392604
* . Update to 8u51.Greg Lewis2015-07-1914-980/+10892
| | | | Notes: svn path=/head/; revision=392506
* . The test target wants jtreg binaries to be found one directory up. AllowGreg Lewis2015-07-051-0/+3
| | | | | | | that to be the case. Notes: svn path=/head/; revision=391340
* . Fix BSD detection in the langtools test infrastructure.Greg Lewis2015-07-051-0/+11
| | | | Notes: svn path=/head/; revision=391339
* - Fix broken preprocessor directives.Jung-uk Kim2015-07-024-1/+148
| | | | | | | | | - Use sysctl(3) instead of procfs(5) when we need executable path from PID. MFH: 2015Q3 Notes: svn path=/head/; revision=391177
* Fix the previous commit. Forgot to remove #'s before committing. :-(Jung-uk Kim2015-05-191-2/+2
| | | | Notes: svn path=/head/; revision=386819
* Do not use static libjli for stable/10 and head. This complements PR193009.Jung-uk Kim2015-05-194-44/+134
| | | | | | | | | Re-apply r381431 while I am here. Submitted by: Kurt Miller <kurt@intricatesoftware.com> Notes: svn path=/head/; revision=386818
* . Update to 8u45.Greg Lewis2015-05-065-549/+46187
| | | | Notes: svn path=/head/; revision=385506
* Fix build with GCC with recent head kernel by disabling PCH for GCC.Bryan Drewery2015-04-151-0/+5
| | | | | | | | | | | | | | | | | The case for this is a recent head kernel building an older branch that uses GCC in a jail. This is discussed at https://lists.freebsd.org/pipermail/svn-src-all/2015-March/101722.html It may be possible to fix GCC to do the right thing with mmap(2) but it would not be simple to make ports use a fixed GCC on older releases and without needlessly building a ports compiler when the system one would otherwise be fine without PCH. With hat: portmgr Notes: svn path=/head/; revision=384056
* Set rpath for libawt_xawt.so as we do for libawt.so and libawt_headless.so.Jung-uk Kim2015-04-013-49/+55
| | | | | | | Optimize fontconfig.properties while I am here. Notes: svn path=/head/; revision=382926
* Tidy up default fontconfig.properties.Jung-uk Kim2015-03-242-57/+61
| | | | Notes: svn path=/head/; revision=382173
* Catch up with font directory changes.Jung-uk Kim2015-03-242-16/+17
| | | | Notes: svn path=/head/; revision=382061
* Clean up patches again. No functional change.Jung-uk Kim2015-03-162-44/+2
| | | | Notes: svn path=/head/; revision=381431
* . Update to 8u40.Greg Lewis2015-03-155-1069/+344804
| | | | Notes: svn path=/head/; revision=381360
* - Revert all damages done in r372338 and r379049.Jung-uk Kim2015-02-277-115/+25
| | | | | | | | | - Really fix non-release builds. [1] PR: 193009 [1] Notes: svn path=/head/; revision=380064
* Properly use BLOCKING_IO_RETURN_INT() macro for NET_Accept().Jung-uk Kim2015-02-162-0/+17
| | | | Notes: svn path=/head/; revision=379126
* Remove redundant linker options added in r379049.Jung-uk Kim2015-02-161-2/+2
| | | | Notes: svn path=/head/; revision=379124
* . Fix the DEBUG build.Greg Lewis2015-02-152-6/+60
| | | | | | | | PR: 193009 Submitted by: Brian Gardner (openjdk@getsnappy.com) Notes: svn path=/head/; revision=379049
* . Attempt to fix the build on 8.x amd64 by telling the HotSpot compilationGreg Lewis2015-02-051-0/+1
| | | | | | | | | not to treat warnings as errors. Reported by: mat@ Notes: svn path=/head/; revision=378440
* . Update to 8u31.Greg Lewis2015-02-024-603/+36135
| | | | Notes: svn path=/head/; revision=378297
* Switch some dependencies from a directory name or a file generated by ↵Antoine Brodin2015-01-241-2/+2
| | | | | | | | | pkg-install to a package name, as the former can't be attributed to a package Notes: svn path=/head/; revision=377795
* Update graphics/giflib to 5.0.5Antoine Brodin2015-01-141-1/+1
| | | | | | | | | | Differential Revision: https://reviews.freebsd.org/D1361 Submitted by: bapt Reviewed by: self Exp-run by: self Notes: svn path=/head/; revision=377033
* Allow building with either giflib 4.2 or 5.0Antoine Brodin2014-12-271-0/+14
| | | | Notes: svn path=/head/; revision=375672
* Turn off -Werror for Clang 3.5+ and revert r374780 for now.Jung-uk Kim2014-12-162-270/+3
| | | | Notes: svn path=/head/; revision=374824
* Add an upstream patch to remove adlc's unused class FileBuffRegion.Jung-uk Kim2014-12-161-0/+270
| | | | | | | | | | | https://bugs.openjdk.java.net/browse/JDK-8041620 Note this is an attempt to fix build with upcoming Clang 3.5. Obtained from: jdk9 Notes: svn path=/head/; revision=374780