From abf344df0212af3ddc78101864e6573d915a2bbc Mon Sep 17 00:00:00 2001 From: Dan Heidinga Date: Mon, 27 Aug 2018 16:12:13 -0400 Subject: [PATCH] Revert jsig.c change as it breaks zOS ``` ERROR CCN3191 ./jsig.c:78 The character # is not a valid C source character. ``` Not sure why yet but reverting this unblocks other platforms. Signed-off-by: Dan Heidinga --- runtime/jsigWrapper/jsig.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/runtime/jsigWrapper/jsig.c b/runtime/jsigWrapper/jsig.c index 09cce3b55c3..23a21aee656 100644 --- a/runtime/jsigWrapper/jsig.c +++ b/runtime/jsigWrapper/jsig.c @@ -74,13 +74,7 @@ getFunction(void **tableAddress, char *name) void *handle = dlopen("libomrsig.so", RTLD_LAZY); *tableAddress = dlsym(handle, name); #else /* defined(WIN32) */ - void *handle = dlopen( -#if defined(OSX) - "libomrsig.dylib" -#else /* OSX */ - "libomrsig.so" -#endif /* OSX */ - , RTLD_GLOBAL | RTLD_LAZY); + void *handle = dlopen("libomrsig.so", RTLD_GLOBAL | RTLD_LAZY); *tableAddress = dlsym(handle, name); #endif /* defined(WIN32) */ }