From owner-svn-ports-head@FreeBSD.ORG Thu Sep 5 14:59:30 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 9190AF3; Thu, 5 Sep 2013 14:59:30 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 800192553; Thu, 5 Sep 2013 14:59:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r85ExUs7087688; Thu, 5 Sep 2013 14:59:30 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r85ExUMf087686; Thu, 5 Sep 2013 14:59:30 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201309051459.r85ExUMf087686@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 5 Sep 2013 14:59:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r326406 - in head/converters/tnef: . 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: Thu, 05 Sep 2013 14:59:30 -0000 Author: bapt Date: Thu Sep 5 14:59:29 2013 New Revision: 326406 URL: http://svnweb.freebsd.org/changeset/ports/326406 Log: Fix build with clang, remove now unnecessary USE_GCC=any Added: head/converters/tnef/files/ head/converters/tnef/files/patch-src__tnef.c (contents, props changed) Modified: head/converters/tnef/Makefile Modified: head/converters/tnef/Makefile ============================================================================== --- head/converters/tnef/Makefile Thu Sep 5 14:40:24 2013 (r326405) +++ head/converters/tnef/Makefile Thu Sep 5 14:59:29 2013 (r326406) @@ -11,7 +11,6 @@ COMMENT= Unpack data in MS Outlook TNEF OPTIONS_DEFINE= DOCS -USE_GCC= any GNU_CONFIGURE= yes MAN1= tnef.1 Added: head/converters/tnef/files/patch-src__tnef.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/converters/tnef/files/patch-src__tnef.c Thu Sep 5 14:59:29 2013 (r326406) @@ -0,0 +1,20 @@ +--- ./src/tnef.c.orig 2012-03-01 00:46:07.000000000 +0100 ++++ ./src/tnef.c 2013-09-05 16:57:10.926068671 +0200 +@@ -43,6 +43,8 @@ + + static size_t filesize; + ++static void free_bodies(VarLenData **bodies, int len); ++ + typedef struct + { + VarLenData **text_body; +@@ -386,7 +388,7 @@ + return 0; + } + +-void free_bodies(VarLenData **bodies, int len) ++static void free_bodies(VarLenData **bodies, int len) + { + while (len--) + {