From owner-svn-src-stable@FreeBSD.ORG Wed May 15 20:59:01 2013 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 36B004FC; Wed, 15 May 2013 20:59:01 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 282DDAAC; Wed, 15 May 2013 20:59:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r4FKx13r000641; Wed, 15 May 2013 20:59:01 GMT (envelope-from dim@svn.freebsd.org) Received: (from dim@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r4FKx1o6000640; Wed, 15 May 2013 20:59:01 GMT (envelope-from dim@svn.freebsd.org) Message-Id: <201305152059.r4FKx1o6000640@svn.freebsd.org> From: Dimitry Andric Date: Wed, 15 May 2013 20:59:01 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r250677 - in stable: 7/gnu/usr.bin/cc/include 8/gnu/usr.bin/cc/include 9/gnu/usr.bin/cc/include X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 May 2013 20:59:01 -0000 Author: dim Date: Wed May 15 20:59:00 2013 New Revision: 250677 URL: http://svnweb.freebsd.org/changeset/base/250677 Log: MFC r250393: When gcc 4.2.0 was imported, the 3DNow intrinsics header was not added to the list of intrinsics headers to install, so belatedly (5 years :) add it. Modified: stable/9/gnu/usr.bin/cc/include/Makefile Directory Properties: stable/9/gnu/usr.bin/cc/include/ (props changed) Changes in other areas also in this revision: Modified: stable/7/gnu/usr.bin/cc/include/Makefile stable/8/gnu/usr.bin/cc/include/Makefile Directory Properties: stable/7/gnu/usr.bin/cc/include/ (props changed) stable/8/gnu/usr.bin/cc/include/ (props changed) Modified: stable/9/gnu/usr.bin/cc/include/Makefile ============================================================================== --- stable/9/gnu/usr.bin/cc/include/Makefile Wed May 15 20:53:53 2013 (r250676) +++ stable/9/gnu/usr.bin/cc/include/Makefile Wed May 15 20:59:00 2013 (r250677) @@ -7,7 +7,8 @@ INCSDIR=${INCLUDEDIR}/gcc/${GCCVER} .PATH: ${GCCDIR}/config/${GCC_CPU} .if ${TARGET_ARCH} == "i386" || ${TARGET_ARCH} == "amd64" -INCS= emmintrin.h mmintrin.h pmmintrin.h tmmintrin.h xmmintrin.h mm_malloc.h +INCS= emmintrin.h mmintrin.h mm3dnow.h pmmintrin.h tmmintrin.h xmmintrin.h \ + mm_malloc.h .elif ${TARGET_ARCH} == "ia64" INCS= ia64intrin.h .elif ${TARGET_ARCH} == "arm"