mirror of
https://git.freebsd.org/ports.git
synced 2025-06-13 16:50:29 -04:00
* Put MD specific include files (e.g. jni_md.h) in a subdirectory named 'freebsd' rather than 'bsd'. [1] * Remove the necessity to always have /usr/local/include in the header paths and linker paths. This allows jshell to use the system iconv.h rather than the third party one and link correctly. [2] * Fix getting process commands and arguments on FreeBSD. * Bump PORTREVISION. All fixes need forward porting to openjdk12. PR: 236754 [1], 236759 [2] Submitted by: Kurt Miller [2]
11 lines
448 B
Text
11 lines
448 B
Text
--- make/autoconf/platform.m4
|
|
+++ make/autoconf/platform.m4
|
|
@@ -497,6 +497,8 @@ AC_DEFUN([PLATFORM_SETUP_LEGACY_VARS_HELPER],
|
|
OPENJDK_$1_OS_INCLUDE_SUBDIR="win32"
|
|
elif test "x$OPENJDK_TARGET_OS" = "xmacosx"; then
|
|
OPENJDK_$1_OS_INCLUDE_SUBDIR="darwin"
|
|
+ elif test "x$OPENJDK_TARGET_OS" = "xbsd"; then
|
|
+ OPENJDK_$1_OS_INCLUDE_SUBDIR=`echo ${OPENJDK_TARGET_OS_ENV} | cut -d'.' -f2`
|
|
fi
|
|
AC_SUBST(OPENJDK_$1_OS_INCLUDE_SUBDIR)
|
|
])
|