From owner-svn-ports-all@FreeBSD.ORG Tue Jan 1 20:33:52 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EA796112; Tue, 1 Jan 2013 20:33:52 +0000 (UTC) (envelope-from wxs@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 CF1928FC0A; Tue, 1 Jan 2013 20:33:52 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r01KXqHE035497; Tue, 1 Jan 2013 20:33:52 GMT (envelope-from wxs@svn.freebsd.org) Received: (from wxs@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r01KXqFh035496; Tue, 1 Jan 2013 20:33:52 GMT (envelope-from wxs@svn.freebsd.org) Message-Id: <201301012033.r01KXqFh035496@svn.freebsd.org> From: Wesley Shields Date: Tue, 1 Jan 2013 20:33:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r309783 - head/security/sudo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Jan 2013 20:33:53 -0000 Author: wxs Date: Tue Jan 1 20:33:52 2013 New Revision: 309783 URL: http://svnweb.freebsd.org/changeset/ports/309783 Log: Disable PIE on ia64. This was causing a run-time failure. Submitted by: Anton Shterenlikht, Todd Miller Modified: head/security/sudo/Makefile Modified: head/security/sudo/Makefile ============================================================================== --- head/security/sudo/Makefile Tue Jan 1 20:11:43 2013 (r309782) +++ head/security/sudo/Makefile Tue Jan 1 20:33:52 2013 (r309783) @@ -54,6 +54,10 @@ CONFIGURE_ARGS+= --with-secure-path="${S .include +.if ${ARCH} == "ia64" +CONFIGURE_ARGS+= --disable-pie +.endif + .if ${PORT_OPTIONS:MNLS} USE_GETTEXT= yes LDFLAGS+= -L${LOCALBASE}/lib -lintl