On Mon, 9 Mar 2026 19:28:31 GMT, Phil Race <[email protected]> wrote:
> > LGTM. Thanks for fixing it! Is BSD also affected?
>
> Maybe yes, I am not sure. Was the headless-only build ever tried on BSD ?
Yes, we're building headless on FreeBSD at least, we have the following in
AwtLibraries.gmk:
ifeq ($(call isTargetOsType, unix)+$(call isTargetOs, macosx), true+false)
LIBJAWT_JDK_LIBS_unix := libawt
ifeq ($(ENABLE_HEADLESS_ONLY), false)
LIBJAWT_JDK_LIBS_unix += libawt_xawt
else
LIBJAWT_JDK_LIBS_unix += libawt_headless
endif
endif
But this does not seem to originate from us.
-------------
PR Comment: https://git.openjdk.org/jdk/pull/30145#issuecomment-4029765675