From 115d849a0c11236c2eb69c12cafaf8a2bb25eccd Mon Sep 17 00:00:00 2001 From: Travis Cross Date: Thu, 5 Apr 2012 06:08:21 +0000 Subject: [PATCH] work around libzrtp warnings This workaround makes the build work exactly as it did when libzrtp was installed as a system library. By default gcc ignores warnings caused by system headers, so for the moment we'll continue to pretend that libzrtp headers come from the system. --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index ec182b3ea8..a6aa32de2a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -149,7 +149,7 @@ endif if ENABLE_ZRTP CORE_CFLAGS += -I$(switch_srcdir)/libs/libzrtp/third_party/bgaes CORE_CFLAGS += -I$(switch_srcdir)/libs/libzrtp/third_party/bnlib -CORE_CFLAGS += -I$(switch_srcdir)/libs/libzrtp/include +CORE_CFLAGS += -isystem $(switch_srcdir)/libs/libzrtp/include libfreeswitch_la_LDFLAGS += -Llibs/libzrtp/third_party/bnlib -lbn -Llibs/libzrtp/projects/gnu/build -lzrtp CORE_LIBS += libs/libzrtp/projects/gnu/build/libzrtp.a endif