mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-04 02:08:49 -04:00
17 lines
399 B
Plaintext
17 lines
399 B
Plaintext
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)
|