[asterisk-commits] kpfleming: branch 1.6.0 r210239 - in /branches/1.6.0: ./ Makefile
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Aug 4 09:54:04 CDT 2009
Author: kpfleming
Date: Tue Aug 4 09:54:00 2009
New Revision: 210239
URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=210239
Log:
Merged revisions 210238 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
................
r210238 | kpfleming | 2009-08-04 09:53:00 -0500 (Tue, 04 Aug 2009) | 16 lines
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
........
................
Modified:
branches/1.6.0/ (props changed)
branches/1.6.0/Makefile
Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.0/Makefile
URL: http://svn.asterisk.org/svn-view/asterisk/branches/1.6.0/Makefile?view=diff&rev=210239&r1=210238&r2=210239
==============================================================================
--- branches/1.6.0/Makefile (original)
+++ branches/1.6.0/Makefile Tue Aug 4 09:54:00 2009
@@ -238,7 +238,7 @@
endif
ifneq ($(findstring BSD,$(OSARCH)),)
- _ASTCFLAGS+=-I/usr/local/include
+ _ASTCFLAGS+=-isystem /usr/local/include
endif
ifneq ($(PROC),ultrasparc)
More information about the asterisk-commits
mailing list