blob: 5eaa69012b914a0e34d189c69cfb2f2114084cf3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
diff --git a/ipc/src/Makefile b/ipc/src/Makefile
index 4546c3e..2e0998d 100644
--- a/ipc/src/Makefile
+++ b/ipc/src/Makefile
@@ -49,6 +49,11 @@ ifeq ($(OS_TARGET),WINNT)
OBJ_SUFF = obj
endif
+ifeq ($(OS_ARCH),SunOS)
+LDFLAGS += -shared -Wl,-Bsymbolic
+CFLAGS += -fPIC
+endif
+
source = subprocess.c
objfiles = subprocess.$(OBJ_SUFF)
libname = $(DLL_PREFIX)subprocess-$(CPU_ARCH)$(DLL_SUFFIX)
|