From owner-svn-ports-head@FreeBSD.ORG Sat May 25 13:41:41 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 06DE09E; Sat, 25 May 2013 13:41:41 +0000 (UTC) (envelope-from nox@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 ED5071C3; Sat, 25 May 2013 13:41:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r4PDfeLn037500; Sat, 25 May 2013 13:41:40 GMT (envelope-from nox@svn.freebsd.org) Received: (from nox@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r4PDfe4s037499; Sat, 25 May 2013 13:41:40 GMT (envelope-from nox@svn.freebsd.org) Message-Id: <201305251341.r4PDfe4s037499@svn.freebsd.org> From: Juergen Lock Date: Sat, 25 May 2013 13:41:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r319051 - head/multimedia/vdr-plugin-xineliboutput/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: Sat, 25 May 2013 13:41:41 -0000 Author: nox Date: Sat May 25 13:41:40 2013 New Revision: 319051 URL: http://svnweb.freebsd.org/changeset/ports/319051 Log: Fix build with recent(?) clang. Submitted by: pointyhat amd64 10-exprun via miwi Modified: head/multimedia/vdr-plugin-xineliboutput/files/patch-clang (contents, props changed) Modified: head/multimedia/vdr-plugin-xineliboutput/files/patch-clang ============================================================================== --- head/multimedia/vdr-plugin-xineliboutput/files/patch-clang Sat May 25 13:39:23 2013 (r319050) +++ head/multimedia/vdr-plugin-xineliboutput/files/patch-clang Sat May 25 13:41:40 2013 (r319051) @@ -1,3 +1,14 @@ +--- a/Makefile ++++ b/Makefile +@@ -257,7 +257,7 @@ DEPFILE = .dependencies + $(DEPFILE): Makefile config.mak + @rm -f $@ + @for i in $(OBJS:%.o=%.c) $(OBJS_SXFE:%.o=%.c) $(OBJS_FBFE:%.o=%.c) $(OBJS_XINE:%.o=%.c) ; do \ +- $(MAKEDEP) $(DEFINES) $(INCLUDES) -MT "`dirname $$i`/`basename $$i .c`.o" $$i >>$@ ; \ ++ $(MAKEDEP) $(DEFINES) $(INCLUDES) $(CFLAGS_X11) -MT "`dirname $$i`/`basename $$i .c`.o" $$i >>$@ ; \ + done + + -include $(DEPFILE) --- a/xine_post_autocrop.c +++ b/xine_post_autocrop.c @@ -42,6 +42,7 @@