From ed77fa1dfe10f9644f268f480f979532d2611c8f Mon Sep 17 00:00:00 2001 From: Paul Belanger Date: Thu, 2 Dec 2010 20:09:29 +0000 Subject: [PATCH] Merged revisions 297405 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.6.2 ................ r297405 | pabelanger | 2010-12-02 15:06:43 -0500 (Thu, 02 Dec 2010) | 14 lines 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/ ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@297406 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 976d5b885f..1067b5a62d 100644 --- a/Makefile +++ b/Makefile @@ -231,6 +231,9 @@ ifeq ($(PROC),ppc) 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)