Module: kamailio Branch: master Commit: 9a19fa4ea5082307706401f447a38bfb1fae0f77 URL: https://github.com/kamailio/kamailio/commit/9a19fa4ea5082307706401f447a38bfb1fae0f77
Author: Daniel-Constantin Mierla <[email protected]> Committer: Daniel-Constantin Mierla <[email protected]> Date: 2026-01-28T10:57:14+01:00 Makefile.defs: skip -Wl,-Bsymbolic-functions for darwin --- Modified: src/Makefile.defs --- Diff: https://github.com/kamailio/kamailio/commit/9a19fa4ea5082307706401f447a38bfb1fae0f77.diff Patch: https://github.com/kamailio/kamailio/commit/9a19fa4ea5082307706401f447a38bfb1fae0f77.patch --- diff --git a/src/Makefile.defs b/src/Makefile.defs index 09056419bf4..40a02f52678 100644 --- a/src/Makefile.defs +++ b/src/Makefile.defs @@ -221,7 +221,11 @@ endif ifeq ($(LIBSSL_SET_MUTEX_SHARED), 1) CC_PMUTEX_OPTS = -DKSR_PTHREAD_MUTEX_SHARED +ifeq ($(OS), darwin) +LD_PMUTEX_OPTS = -rdynamic $(LIBDL) +else LD_PMUTEX_OPTS = -rdynamic $(LIBDL) -Wl,-Bsymbolic-functions +endif else CC_PMUTEX_OPTS = LD_PMUTEX_OPTS = _______________________________________________ Kamailio - Development Mailing List -- [email protected] To unsubscribe send an email to [email protected] Important: keep the mailing list in the recipients, do not reply only to the sender!
