Module: kamailio Branch: master Commit: 42b9fe9781e6805436227e0e7b88db73767a94b1 URL: https://github.com/kamailio/kamailio/commit/42b9fe9781e6805436227e0e7b88db73...
Author: �������������������� �������������������������������� git-dpa@aegee.org Committer: Victor Seva linuxmaniac@torreviejawireless.org Date: 2024-01-13T18:51:06+01:00
src/Makefile.defs: recognize GCC 14 as recent ������ not too old compiler
similar to 87ed3d9c3ae3ecfabe6
---
Modified: src/Makefile.defs
---
Diff: https://github.com/kamailio/kamailio/commit/42b9fe9781e6805436227e0e7b88db73... Patch: https://github.com/kamailio/kamailio/commit/42b9fe9781e6805436227e0e7b88db73...
---
diff --git a/src/Makefile.defs b/src/Makefile.defs index 68225943982..7a4b7418670 100644 --- a/src/Makefile.defs +++ b/src/Makefile.defs @@ -307,8 +307,8 @@ ifneq (,$(findstring gcc, $(CC_LONGVER))) -e 's/8.[0-9]$$/8.0+/' \ -e 's/9.[0-9]..*/9.0+/' \ -e 's/9.[0-9]$$/9.0+/' \ - -e 's/1[0-3].[0-9]..*/9.0+/' \ - -e 's/1[0-3].[0-9]$$/9.0+/') + -e 's/1[0-4].[0-9]..*/9.0+/' \ + -e 's/1[0-4].[0-9]$$/9.0+/') ifeq (,$(strip $(filter-out 3.0 3.4 4.x 4.2+ 4.5+ 5.0+ 6.0+ 7.0+ 8.0+ 9.0+,$(CC_SHORTVER)))) # dependencies can be generated on-the-fly while compiling *.c CC_MKDEP_OPTS=-MMD -MP