From owner-freebsd-gnome@FreeBSD.ORG Sun May 20 20:30:13 2012 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 88FBA106564A for ; Sun, 20 May 2012 20:30:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2AC298FC0A for ; Sun, 20 May 2012 20:30:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q4KKU5Ie094831 for ; Sun, 20 May 2012 20:30:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q4KKU58h094828; Sun, 20 May 2012 20:30:05 GMT (envelope-from gnats) Date: Sun, 20 May 2012 20:30:05 GMT Message-Id: <201205202030.q4KKU58h094828@freefall.freebsd.org> To: gnome@FreeBSD.org From: Jeremy Messenger Cc: Subject: Re: ports/167721: [patch] graphics/gegl: use SSE/MMX on amd64 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jeremy Messenger List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 20:30:13 -0000 The following reply was made to PR ports/167721; it has been noted by GNATS. From: Jeremy Messenger To: Jan Beich Cc: mezz@freebsd.org, bug-followup@freebsd.org Subject: Re: ports/167721: [patch] graphics/gegl: use SSE/MMX on amd64 Date: Sun, 20 May 2012 15:20:00 -0500 On Sun, May 20, 2012 at 3:04 PM, Jan Beich wrote: > mezz@FreeBSD.org writes: > >> The patch does not work and I have amd64 here. I am getting here: >> >> ---------------------- >> # make configure >> [...] >> Building GEGL with prefix=3D/usr/local >> >> Optional features: >> =A0 GEGL docs: =A0 =A0 =A0 no >> =A0 Build workshop: =A0no >> =A0 Build website: =A0 no =A0(asciidoc not found) >> =A0 SIMD: =A0 =A0 =A0 =A0 =A0 =A0sse:no mmx:no <-- here, both are still = disabled. >> =A0 Vala support: =A0 =A0no > > I'm afraid you have to provide config.log for me to debug why compile > checks fail. configure.ac has the following logic: > > =A0# s/x86_64/amd64/ > =A0case "$target_or_host" in > =A0 =A0x86_64-*-*) > =A0 =A0 =A0have_x86=3Dyes > =A0 =A0 =A0;; > =A0esac > > =A0AC_ARG_ENABLE(mmx, ...,, enable_mmx=3D$have_x86) > =A0AC_ARG_ENABLE(sse, ...,, enable_sse=3D$enable_mmx) > > =A0if test "x$enable_mmx" =3D "xyes"; then > =A0 =A0 AC_COMPILE_IFELSE(, > =A0 =A0 =A0 if test "x$enable_sse" =3D "xyes"; then > =A0 =A0 =A0 =A0 =A0 AC_COMPILE_IFELSE(,, enable_sse=3Dno) > =A0 =A0 =A0 fi > =A0 =A0 , enable_mmx=3Dno) > =A0fi > > Also, there is no point in testing with OPTIMIZE turned OFF. Ah, I didn't even notice that OPTIMIZE option! It does work when I have it enables. I will commit it soon. Cheers, Mezz --=20 mezz.freebsd@gmail.com - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org