commit 52827b890c7caa4c31d5fca81a5f8756c00702f7
parent 78fa1b9e04bcdb9eb419202af3a011fb3ab113d3
Author: Dominik Schmidt <dominik@schm1dt.ch>
Date: Sat, 16 Nov 2019 17:41:30 +0100
Change the c standard used to c++11
This will be needed later on for std::map
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -3,7 +3,7 @@ PJSIP_LDFLAGS = `pkg-config --libs libpjproject`
CPP = g++
CFLAGS ?= -O5
LDFLAGS ?= -s
-_CFLAGS = $(CFLAGS) $(PJSIP_CFLAGS)
+_CFLAGS = $(CFLAGS) $(PJSIP_CFLAGS) -std=c++11
_LDFLAGS = $(LDFLAGS) $(PJSIP_LDFLAGS)
INSTALL = install
PREFIX ?= /usr