[svn-commits] pabelanger: branch 1.6.2 r297405 - in /branches/1.6.2: ./ Makefile

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Dec 2 14:06:48 CST 2010


Author: pabelanger
Date: Thu Dec  2 14:06:43 2010
New Revision: 297405

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=297405
Log:
Merged revisions 297404 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
  r297404 | pabelanger | 2010-12-02 15:01:08 -0500 (Thu, 02 Dec 2010) | 7 lines
  
  Resolve compile error under FreeBSD
  
  We now set _ASTCFLAGS+=-march=i686 for i386 processors, still allowing ASTCFLAGS
  to override the setting.
  
  Review: https://reviewboard.asterisk.org/r/1043/
........

Modified:
    branches/1.6.2/   (props changed)
    branches/1.6.2/Makefile

Propchange: branches/1.6.2/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.

Modified: branches/1.6.2/Makefile
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.2/Makefile?view=diff&rev=297405&r1=297404&r2=297405
==============================================================================
--- branches/1.6.2/Makefile (original)
+++ branches/1.6.2/Makefile Thu Dec  2 14:06:43 2010
@@ -260,6 +260,9 @@
 endif
 
 ifeq ($(OSARCH),FreeBSD)
+  ifeq ($(PROC),i386)
+    _ASTCFLAGS+=-march=i686
+  endif
   # -V is understood by BSD Make, not by GNU make.
   BSDVERSION=$(shell make -V OSVERSION -f /usr/share/mk/bsd.port.subdir.mk)
   _ASTCFLAGS+=$(shell if test $(BSDVERSION) -lt 500016 ; then echo "-D_THREAD_SAFE"; fi)




More information about the svn-commits mailing list