aboutsummaryrefslogtreecommitdiff
path: root/lib/ipc/Makefile.am
diff options
context:
space:
mode:
authorCy Schubert <cy@FreeBSD.org>2023-06-26 22:56:52 +0000
committerCy Schubert <cy@FreeBSD.org>2023-06-26 22:56:52 +0000
commitb6a943f7197af1a5eb6bb028b9b808ec5016e30c (patch)
treecfbb91e940dd89d0e1d46095f43c228d7d079fa0 /lib/ipc/Makefile.am
parent6f4e10db3298f6d65e1e646fe52aaafc3682b788 (diff)
Heimdal 7.8.0 does not support OpenSSL 3.0. 7.9.0 will but it hasn't been released yet. We are importing f62e2f278 for its OpenSSL 3.0 support.
Diffstat (limited to 'lib/ipc/Makefile.am')
-rw-r--r--lib/ipc/Makefile.am8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/ipc/Makefile.am b/lib/ipc/Makefile.am
index 9338b141e171..04ff21374347 100644
--- a/lib/ipc/Makefile.am
+++ b/lib/ipc/Makefile.am
@@ -23,6 +23,10 @@ libheim_ipcc_la_LIBADD = \
$(LIB_roken) \
$(PTHREAD_LIBADD)
+if SUNOS
+libheim_ipcc_la_LIBADD += -lsocket
+endif
+
libheim_ipcs_la_LIBADD = $(libheim_ipcc_la_LIBADD)
TESTS = $(check_PROGRAMS)
@@ -38,6 +42,10 @@ EXTRA_DIST = heim_ipc.defs heim_ipc_async.defs heim_ipc_reply.defs
if have_gcd
+# We still use dispatch_get_current_queue(), which is deprecated, and that
+# stops building on recent OS X releases unless we disable this warning.
+WFLAGS += -Wno-deprecated-declarations
+
heim_ipc.h heim_ipcUser.c heim_ipcServer.c heim_ipcServer.h: heim_ipc.defs
mig -header heim_ipc.h -user heim_ipcUser.c -sheader heim_ipcServer.h -server heim_ipcServer.c -I$(srcdir) $(srcdir)/heim_ipc.defs