From owner-cvs-ports@FreeBSD.ORG Thu Jul 21 20:18:45 2011 Return-Path: Delivered-To: cvs-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7777F1065670; Thu, 21 Jul 2011 20:18:45 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6865E8FC1E; Thu, 21 Jul 2011 20:18:45 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id p6LKIja5023088; Thu, 21 Jul 2011 20:18:45 GMT (envelope-from dim@repoman.freebsd.org) Received: (from dim@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p6LKIjm1023087; Thu, 21 Jul 2011 20:18:45 GMT (envelope-from dim) Message-Id: <201107212018.p6LKIjm1023087@repoman.freebsd.org> From: Dimitry Andric Date: Thu, 21 Jul 2011 20:18:45 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/libgcrypt/files patch-cipher-rijndael.c X-BeenThere: cvs-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jul 2011 20:18:45 -0000 dim 2011-07-21 20:18:45 UTC FreeBSD ports repository (src committer) Added files: security/libgcrypt/files patch-cipher-rijndael.c Log: Building security/libgcrypt 1.5.0 with clang results in errors similar to the following: rijndael.c:846:46: error: ambiguous instructions require an explicit suffix (could be 'cmpb', 'cmpw', 'cmpl', or 'cmpq') "movdqa 0xa0(%%esi), %%xmm1\n\t" ^ :24:2: note: instantiated into assembly here cmp $10, -80(%ebp) ^ This is because the 'cmp' instruction lacks a type suffix, and is thus ambiguous. Fix this by changing these to 'cmpq'. PR: ports/158994 Approved by: Hirohisa Yamaguchi (maintainer) Revision Changes Path 1.1 +61 -0 ports/security/libgcrypt/files/patch-cipher-rijndael.c (new)