From owner-svn-ports-head@FreeBSD.ORG Fri Jul 5 18:46:34 2013 Return-Path: Delivered-To: svn-ports-head@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 B42D886E; Fri, 5 Jul 2013 18:46:34 +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 A675F1C71; Fri, 5 Jul 2013 18:46:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r65IkYLq036346; Fri, 5 Jul 2013 18:46:34 GMT (envelope-from wxs@svn.freebsd.org) Received: (from wxs@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r65IkYcG036343; Fri, 5 Jul 2013 18:46:34 GMT (envelope-from wxs@svn.freebsd.org) Message-Id: <201307051846.r65IkYcG036343@svn.freebsd.org> From: Wesley Shields Date: Fri, 5 Jul 2013 18:46:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r322347 - in head/security/sudo: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Jul 2013 18:46:34 -0000 Author: wxs Date: Fri Jul 5 18:46:33 2013 New Revision: 322347 URL: http://svnweb.freebsd.org/changeset/ports/322347 Log: Fix missing include. This was causing the "Undefined symbol '_'" message when hitting ^C or entering an incorect command. PR: ports/180262 Submitted by: Christophe Juniet Added: head/security/sudo/files/patch-plugins__sudoers__audit.c (contents, props changed) Modified: head/security/sudo/Makefile Modified: head/security/sudo/Makefile ============================================================================== --- head/security/sudo/Makefile Fri Jul 5 18:44:06 2013 (r322346) +++ head/security/sudo/Makefile Fri Jul 5 18:46:33 2013 (r322347) @@ -3,6 +3,7 @@ PORTNAME= sudo DISTVERSION= 1.8.7 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_SUDO} Added: head/security/sudo/files/patch-plugins__sudoers__audit.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/sudo/files/patch-plugins__sudoers__audit.c Fri Jul 5 18:46:33 2013 (r322347) @@ -0,0 +1,10 @@ +--- ./plugins/sudoers/audit.c.orig 2013-06-04 11:48:28.000000000 +0200 ++++ ./plugins/sudoers/audit.c 2013-07-05 13:10:01.000000000 +0200 +@@ -39,6 +39,7 @@ + + #ifdef HAVE_BSM_AUDIT + # include "bsm_audit.h" ++# include "gettext.h" + #endif + #ifdef HAVE_LINUX_AUDIT + # include "linux_audit.h"