Module: kamailio Branch: master Commit: 34d8d793a6f4cb926bec77241c2ba951478cec18 URL: https://github.com/kamailio/kamailio/commit/34d8d793a6f4cb926bec77241c2ba951478cec18
Author: Daniel-Constantin Mierla <[email protected]> Committer: Daniel-Constantin Mierla <[email protected]> Date: 2026-01-29T20:53:19+01:00 cmake: defs.cmake - match CMAKE_C_COMPILER_ID with AppleClang --- Modified: cmake/defs.cmake --- Diff: https://github.com/kamailio/kamailio/commit/34d8d793a6f4cb926bec77241c2ba951478cec18.diff Patch: https://github.com/kamailio/kamailio/commit/34d8d793a6f4cb926bec77241c2ba951478cec18.patch --- diff --git a/cmake/defs.cmake b/cmake/defs.cmake index 99f036554c0..83d0bd286d6 100644 --- a/cmake/defs.cmake +++ b/cmake/defs.cmake @@ -295,6 +295,8 @@ if(CMAKE_C_COMPILER_ID STREQUAL "GNU") set(COMPILER_NAME "gcc") elseif(CMAKE_C_COMPILER_ID STREQUAL "Clang") set(COMPILER_NAME "clang") +elseif(CMAKE_C_COMPILER_ID STREQUAL "AppleClang") + set(COMPILER_NAME "clang") endif() if(NOT DEFINED RUN_DIR) set(RUN_DIR "run/${MAIN_NAME}") _______________________________________________ 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!
