aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2009-08-04 14:53:00 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2009-08-04 14:53:00 +0000
commit7a4ba0f5794842d5f4ac7999a7e888baeaf04188 (patch)
tree9af64b47a06278a0a5c2f3422b19b9b2010fb854 /Makefile
parenta73782aff532a1102239e23a66c86296dd52fe70 (diff)
Merged revisions 210237 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r210237 | kpfleming | 2009-08-04 09:51:39 -0500 (Tue, 04 Aug 2009) | 10 lines Eliminate spurious compiler warnings from system headers on *BSD platforms. Ensure that system headers located in /usr/local/include are actually treated as system headers by the compiler, and not as local headers which are subject to warnings from the -Wundef compiler option and others. (closes issue #15606) Reported by: mvanbaak ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@210238 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b86c214d7..e58bc8776 100644
--- a/Makefile
+++ b/Makefile
@@ -241,7 +241,7 @@ ifeq ($(AST_DEVMODE),yes)
endif
ifneq ($(findstring BSD,$(OSARCH)),)
- _ASTCFLAGS+=-I/usr/local/include
+ _ASTCFLAGS+=-isystem /usr/local/include
endif
ifeq ($(findstring -march,$(_ASTCFLAGS) $(ASTCFLAGS)),)