summaryrefslogtreecommitdiffstats
path: root/java/jdk13
Commit message (Collapse)AuthorAgeFilesLines
* Remove support for OSVERSION < 5edwin2007-10-031-2/+2
|
* . Add USE_XORG configuration. I'm guessing that prior to the modularglewis2007-08-211-0/+1
| | | | | | | xorg ports the Open Motif dependency pulled in the appropriate X11 libraries since this hasn't been a problem previously. Reported by: pointyhat (via kris)
* . Make it so we include Xm/XmIm.h rather than defining our own prototype.glewis2007-06-021-0/+13
| | | | | | | Fixes a build error due to the prototype being defined not matching the actual function. Pointed out by: pointyhat (via kris)
* - Welcome X.org 7.2 \o/.flz2007-05-191-1/+1
| | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}.
* . Don't allow bootstrapping with the expired linux-blackdown-jdk13 port.glewis2007-03-141-5/+1
| | | | | PR: 110169 Submitted by: gabor
* . Diablo JDK 1.3.1 is gone, remove it as a possible bootstrap.glewis2006-12-081-3/+0
|
* . Replace some hardwired /usr/X11R6 instances with X11BASE. [1]glewis2006-12-084-13/+73
| | | | | | | | . Replace one hardwired /usr/local instance with LOCALBASE. This wasn't a problem since the port Makefile overrode that variable anyway. . Small Makefile restructure to keep related variables in one place. Pointed out by: pointyhat (via kris) [1]
* Chase the GNOME X11BASE to LOCALBASE move, and fix the build with themarcus2006-10-141-3/+3
| | | | | | | new freetype2 where needed. Submitted by: mezz, ahze, pav, and many others Approved by: portmgr (implicit, kris)
* . Take account of the MFC or the *_r functions to RELENG_6.glewis2006-07-191-18/+32
| | | | Submitted by: ume@
* . Try to fix the build on FreeBSD-CURRENT, which now defines gethostent_rglewis2006-06-161-0/+83
| | | | | | itself. Submitted by: ume
* Remove USE_REINPLACE from categories starting with a Jedwin2006-05-091-1/+0
|
* Bump PORTREVISION on glib12/gtk12 consumer ports to ease the upgrade path.ade2006-03-071-1/+1
| | | | | Discussed with: kris Approved by: portmgr (implicit)
* Conversion to a single libtool environment.ade2006-02-231-3/+2
| | | | Approved by: portmgr (kris)
* Replace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtryedwin2006-01-221-2/+2
| | | | | Approved by: krion@ PR: ports/88711 (related)
* . Always fix up the pthread library references, even if we're notglewis2006-01-131-4/+0
| | | | | | | | | building either native threads or HotSpot. This is due to libcmm always wanting to link against a pthread library, which was causing problems on 7-CURRENT since it was erroneously hardwired to -lc_r. This should really fix the problem. Pointed out by: pointyhat via kris
* . Try to bandaid a build problem on 7-CURRENT. This is a legitimate fix,glewis2005-12-111-1/+4
| | | | | | | and will stay in the port, but it masks an underlying problem that still remains. Reported by: pointyhat (via kris)
* . Add SHA256.glewis2005-11-161-0/+2
|
* . Tell the user all the files they will need up front, instead of tellingglewis2005-09-031-24/+29
| | | | | | | | | porky pies about what they have and prompting them one file at a time. This is a rewording and reworking (for jdk13) of the patch in the attributed PR by fenner@ (which is for jdk14). . Update the (commented out) MASTER_SITES while I'm here. PR: 84644
* . Set a BUILD_DEPENDS for consistency.glewis2005-07-231-1/+3
| | | | . Set _JAVA_BOOTSTRAP_VERSION in case the jbootstrap default changes.
* . Default to using jbootstrap as the bootstrap, not linux-blackdown-jdk13.glewis2005-07-231-7/+5
| | | | PR: 83758
* . Add $FreeBSD$.glewis2005-04-282-0/+4
|
* . Bump PORTREVISION for the previous fix for jar(1).glewis2005-04-271-8/+8
| | | | . Don't build the plugin by default as it has security flaws.
* . Ensure that when files are extracted that their fully resolved path liesglewis2005-04-272-0/+67
| | | | | | | | in or below the current working directory. Fixes a security problem with jar(1). This fix may change to be compatible with whatever fix Sun applies when they release the next version of 1.5.
* . Move the invocation of unregistervm to the top of the packing list.glewis2005-02-171-1/+1
| | | | | | This ensures that this command is run before the files in the package are deleted (which is necessary for it to correctly delete the symbolic links created by registervm).
* . Backport some fixes from 1.4 for the HotSpot Server VM when compiledglewis2004-12-072-0/+56
| | | | | | | | under gcc 3.4. In particular, this fixes some places where an enumerated type is assumed to be the same width as an int (which the standard doesn't guarantee and gcc 3.4 now enforces). For full details, see the log for the jdk14 equivalent changes.
* . Mark FORBIDDEN when building the browser plugin.glewis2004-11-281-0/+1
|
* . Make sure that all calls to pthread_mutex_trylock handle EDEADLK as wellglewis2004-11-284-0/+70
| | | | | | as EBUSY. These are taken from equivalent patches to jdk14 by green and myself.
* . Use CXX and CXXFLAGS for compiling C++ code, not CPP and CPPFLAGS.glewis2004-11-272-0/+77
| | | | Also, respect the setting of CXX and CXXFLAGS.
* . Fix the build with gcc 3.4 part 2/2. Don't use the flagglewis2004-11-274-0/+87
| | | | | | | | | -fmemoize-lookups as gcc 3.4 doesn't understand it. [1] . Use CXX and CXXFLAGS for compiling C++ code, not CPP and CPPFLAGS. Also, respect the setting of CXX and CXXFLAGS. PR: 71516 [1] Submitted by: Damir Kiramov <damirycha@damirycha.net.ru> [1]
* . Fix the HotSpot build for gcc 3.4 part 1/2. Make some methods publicglewis2004-11-272-0/+44
| | | | | | | | where previously they defaulted to protected. gcc 3.4 seems to pick this up where earlier versions didn't. PR: 71516 Submitted by: Damir Kiramov <damirycha@damirycha.net.ru>
* . Fix the plugin build for gcc 3.4.glewis2004-08-311-0/+22
| | | | Submitted by: Timo Geusch <freebsd@unixconsult.co.uk>
* . Assume (un)registervm is in LOCALBASE _not_ PREFIX.glewis2004-08-311-2/+2
|
* . Don't let find(1) descend into directories that may have already beenglewis2004-08-311-1/+1
| | | | | | | deleted. PR: 71019 Submitted by: Rainer Goellner <rainer@jabbe.de>
* . Fix the main build for gcc 3.4. The HotSpot build may need someglewis2004-08-101-0/+13
| | | | | | | | additional patches. This patch is taken almost verbatim from PR 69853 which was submitted by Jake Hamby <jhamby@anobject.com>. I've applied it to jdk13 rather than jdk14 though.
* . Set CC, CXX and CPP conditionally so that this port will respect themglewis2004-08-101-2/+16
| | | | | if set in the port build. Note that the HotSpot build will likely require additional changes for it to also respect these variables.
* . Call unregistervm with the VM we registered, not the comment associatedglewis2004-08-101-1/+1
| | | | with (as comments should be optional).
* . SIZEify.glewis2004-03-171-0/+2
|
* . It appears as though diablo is problematic on 5.x still, so default toglewis2004-02-061-0/+4
| | | | | bootstrapping with the Linux JDK if there isn't a previously compiled native one.
* . Set an appropriate LATEST_LINK to avoid conflicts with other jdk ports.glewis2004-02-061-0/+1
| | | | Reminded by: kris
* Add USE_GETTEXT and bump PORTREVISION.marcus2004-02-041-2/+2
| | | | | Submitted by: trevor Tested by: bento
* Now gettext 0.12.1 is gettext-old.trevor2004-01-231-1/+1
|
* Use the CPIO macro defined in bsd.port.mk.trevor2004-01-221-2/+0
|
* Use the SORT macro from bsd.port.mk.trevor2004-01-221-1/+0
|
* . Add ${LOCALBASE}/lib to the default search path for JNI libraries forglewis2004-01-202-3/+21
| | | | HotSpot as well.
* . Add ${LOCALBASE}/lib to the default search path for libraries when usingglewis2004-01-192-2/+17
| | | | | | | | | JNI. XXX: Maybe ${X11BASE}/lib and /lib (5.x dynamic root support) should also be added? /lib is part of the default search path on Linux. Requested by: marcus
* . Convert spaces to tabs.glewis2004-01-191-8/+8
|
* . Install the cacerts file from Sun's 1.3.1_10 release to avoid someglewis2004-01-142-0/+2
| | | | | | problems associated with expired root certificates described in: http://sunsolve.sun.com/pub-cgi/retrieve.pl?doc=fsalert%2F57436
* . Update to 1.3.1 patchset 9.glewis2003-12-1916-1347/+16
|
* . Fix the plugin build when LOCALBASE is not /usr/local.glewis2003-10-281-1/+2
| | | | | PR: 58618 Submitted by: harti
* . Fix pre-everything target.glewis2003-10-161-1/+1
| | | | | PR: 58148 Submitted by: Oliver Eikemeier <eikemeier@fillmore-labs.com>
OpenPOWER on IntegriCloud