From 45135e8f9bd1e532ec20892d06ffef78801cacef Mon Sep 17 00:00:00 2001 From: Babneet Singh Date: Tue, 14 Aug 2018 18:35:01 -0400 Subject: [PATCH] Enable OMRPORT_OMRSIG_SUPPORT globally in OpenJ9 Currently, OMRPORT_OMRSIG_SUPPORT is only defined while building the port library. But, OMRPORT_OMRSIG_SUPPORT should be defined globally. This will allow omrsig macros such as OMRSIG_SIGNAL and OMRSIG_SIGACTION to be used consistently across OpenJ9. Thus, OMRPORT_OMRSIG_SUPPORT is enabled globally. Signed-off-by: Babneet Singh --- .../gc_glue_java/configure_includes/configure_common.mk.ftl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/runtime/gc_glue_java/configure_includes/configure_common.mk.ftl b/runtime/gc_glue_java/configure_includes/configure_common.mk.ftl index a7db6319d73..3b1c9d0c21a 100644 --- a/runtime/gc_glue_java/configure_includes/configure_common.mk.ftl +++ b/runtime/gc_glue_java/configure_includes/configure_common.mk.ftl @@ -26,6 +26,9 @@ TEMP_TARGET_DATASIZE := $(if $(findstring -64,$(SPEC)),64,32) CONFIGURE_ARGS += \ <#if uma.spec.flags.opt_cuda.enabled> --enable-OMR_OPT_CUDA \ + +<#if uma.spec.flags.port_omrsigSupport.enabled> + --enable-OMRPORT_OMRSIG_SUPPORT \ --enable-OMR_GC \ --enable-OMR_PORT \