From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 25 17:48:39 2007 Return-Path: X-Original-To: freebsd-ports-bugs@FreeBSD.org Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 40C7216A46B; Fri, 25 May 2007 17:48:39 +0000 (UTC) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.208.78.105]) by mx1.freebsd.org (Postfix) with ESMTP id 238DE13C448; Fri, 25 May 2007 17:48:39 +0000 (UTC) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (localhost.apl.washington.edu [127.0.0.1]) by troutmask.apl.washington.edu (8.14.1/8.13.8) with ESMTP id l4PHlOqT044868; Fri, 25 May 2007 10:47:24 -0700 (PDT) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.14.1/8.13.8/Submit) id l4PHlOTh044867; Fri, 25 May 2007 10:47:24 -0700 (PDT) (envelope-from sgk) Date: Fri, 25 May 2007 10:47:24 -0700 From: Steve Kargl To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Message-ID: <20070525174724.GA44847@troutmask.apl.washington.edu> References: <200705251724.l4PHOd3A044516@troutmask.apl.washington.edu> <200705251730.l4PHU2eW081544@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200705251730.l4PHU2eW081544@freefall.freebsd.org> User-Agent: Mutt/1.4.2.2i Cc: Subject: Re: ports/112999: nedit broken by either xorg-7.2 or gcc-4.2 imports X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2007 17:48:39 -0000 On Fri, May 25, 2007 at 05:30:02PM +0000, FreeBSD-gnats-submit@FreeBSD.org wrote: > http://www.freebsd.org/cgi/query-pr.cgi?pr=112999 > > >Category: ports > >Responsible: freebsd-ports-bugs > >Synopsis: nedit broken by either xorg-7.2 or gcc-4.2 imports > >Arrival-Date: Fri May 25 17:30:02 GMT 2007 The fix appears to be that open-motif needs to be built with -fno-strict-aliasing in the CFLAGS. --- Makefile.orig Fri May 25 10:46:39 2007 +++ Makefile Fri May 25 10:29:30 2007 @@ -21,6 +21,8 @@ RUN_DEPENDS= imake:${X_IMAKE_PORT} +CFLAGS+=-fno-strict-aliasing + USE_AUTOTOOLS= libtool:15 CONFLICTS= lesstif-* USE_X_PREFIX= yes -- Steve