Module: kamailio
Branch: 5.7
Commit: bec4ad646f127a1f5bbf31604e6185b246867770
URL:
https://github.com/kamailio/kamailio/commit/bec4ad646f127a1f5bbf31604e6185b…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Victor Seva <linuxmaniac(a)torreviejawireless.org>
Date: 2024-05-04T11:55:35+02:00
phonenum: Makefile - option to set C standard version
- can be set via option CSTDVER
- defaults now to c++17
- GH #3659
(cherry picked from commit 6dd5598fc043fe3d2582e643d7d4ef675c9e6480)
---
Modified: src/modules/phonenum/Makefile
---
Diff:
https://github.com/kamailio/kamailio/commit/bec4ad646f127a1f5bbf31604e6185b…
Patch:
https://github.com/kamailio/kamailio/commit/bec4ad646f127a1f5bbf31604e6185b…
---
diff --git a/src/modules/phonenum/Makefile b/src/modules/phonenum/Makefile
index f465226a974..47780869232 100644
--- a/src/modules/phonenum/Makefile
+++ b/src/modules/phonenum/Makefile
@@ -7,6 +7,7 @@ NAME=phonenum.so
CXX?=g++
LD?=g++
+CSTDVER?="c++17"
LIBS+=-L$(LOCALBASE)/lib cphonenumber.o -lphonenumber -lgeocoding
DEFS+=-I$(LOCALBASE)/include
@@ -18,7 +19,7 @@ include ../../Makefile.modules
cphonenumber.o: cphonenumber.cpp cphonenumber.h
@echo "Compiling $<"
- $(CXX) -std=c++11 $(CXXFLAGS) $(CFLAGS) $(C_DEFS) $(DEFS) -c $< -o $@
+ $(CXX) -std=$(CSTDVER) $(CXXFLAGS) $(CFLAGS) $(C_DEFS) $(DEFS) -c $< -o $@
phonenum.so: cphonenumber.o