Module: kamailio Branch: master Commit: 25810b126740e741698d5067bca0e79c5cb12b16 URL: https://github.com/kamailio/kamailio/commit/25810b126740e741698d5067bca0e79c...
Author: Xenofon Karamanos xk@gilawa.com Committer: Xenofon Karamanos xk@gilawa.com Date: 2025-07-24T13:11:45Z
cmake: Adopt regex to match only ppc and ppc64 and nothing more.
---
Modified: cmake/defs.cmake
---
Diff: https://github.com/kamailio/kamailio/commit/25810b126740e741698d5067bca0e79c... Patch: https://github.com/kamailio/kamailio/commit/25810b126740e741698d5067bca0e79c...
---
diff --git a/cmake/defs.cmake b/cmake/defs.cmake index c2c56519233..790cc02ee22 100644 --- a/cmake/defs.cmake +++ b/cmake/defs.cmake @@ -159,7 +159,7 @@ option(USE_FAST_LOCK "Use fast locking if available" ON) # Check the system processor type and set USE_FAST_LOCK accordingly if(USE_FAST_LOCK) if(CMAKE_SYSTEM_PROCESSOR MATCHES - "i386|i486|i586|i686|x86_64|amd64|sparc64|sparc|ppc|ppc64|alpha|mips2|mips64" + "i386|i486|i586|i686|x86_64|amd64|sparc64|sparc|ppc$|ppc64$|alpha|mips2|mips64" ) set(USE_FAST_LOCK YES) elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "arm64")