[svn-commits] kpfleming: branch 1.6.1 r210240 - in /branches/1.6.1: ./ Makefile

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Aug 4 09:54:49 CDT 2009


Author: kpfleming
Date: Tue Aug  4 09:54:45 2009
New Revision: 210240

URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=210240
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.1/   (props changed)
    branches/1.6.1/Makefile

Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.1/Makefile
URL: http://svn.asterisk.org/svn-view/asterisk/branches/1.6.1/Makefile?view=diff&rev=210240&r1=210239&r2=210240
==============================================================================
--- branches/1.6.1/Makefile (original)
+++ branches/1.6.1/Makefile Tue Aug  4 09:54:45 2009
@@ -238,7 +238,7 @@
 endif
 
 ifneq ($(findstring BSD,$(OSARCH)),)
-  _ASTCFLAGS+=-I/usr/local/include
+  _ASTCFLAGS+=-isystem /usr/local/include
 endif
 
 ifeq ($(findstring -march,$(_ASTCFLAGS) $(ASTCFLAGS)),)




More information about the svn-commits mailing list