From owner-svn-ports-head@FreeBSD.ORG Mon Sep 23 08:46:17 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]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 6CC07FF7; Mon, 23 Sep 2013 08:46:17 +0000 (UTC) (envelope-from ashish@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 5A0C228F1; Mon, 23 Sep 2013 08:46:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8N8kH6i056161; Mon, 23 Sep 2013 08:46:17 GMT (envelope-from ashish@svn.freebsd.org) Received: (from ashish@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8N8kGNw056157; Mon, 23 Sep 2013 08:46:16 GMT (envelope-from ashish@svn.freebsd.org) Message-Id: <201309230846.r8N8kGNw056157@svn.freebsd.org> From: Ashish SHUKLA Date: Mon, 23 Sep 2013 08:46:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r327953 - head/editors/emacs21/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: Mon, 23 Sep 2013 08:46:17 -0000 Author: ashish Date: Mon Sep 23 08:46:16 2013 New Revision: 327953 URL: http://svnweb.freebsd.org/changeset/ports/327953 Log: - Add patches to for port to build on clang platform (missed from previous commit) Added: head/editors/emacs21/files/patch-oldXMenu_XDelAssoc.c (contents, props changed) head/editors/emacs21/files/patch-oldXMenu_XMakeAssoc.c (contents, props changed) head/editors/emacs21/files/patch-src_dispnew.c (contents, props changed) head/editors/emacs21/files/patch-src_syntax.c (contents, props changed) Added: head/editors/emacs21/files/patch-oldXMenu_XDelAssoc.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/emacs21/files/patch-oldXMenu_XDelAssoc.c Mon Sep 23 08:46:16 2013 (r327953) @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- oldXMenu/XDelAssoc.c.orig ++++ oldXMenu/XDelAssoc.c +@@ -27,7 +27,7 @@ + * an XId. An association may be removed only once. Redundant + * deletes are meaningless (but cause no problems). + */ +-XDeleteAssoc(dpy, table, x_id) ++void XDeleteAssoc(dpy, table, x_id) + register Display *dpy; + register XAssocTable *table; + register XID x_id; Added: head/editors/emacs21/files/patch-oldXMenu_XMakeAssoc.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/emacs21/files/patch-oldXMenu_XMakeAssoc.c Mon Sep 23 08:46:16 2013 (r327953) @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- oldXMenu/XMakeAssoc.c.orig ++++ oldXMenu/XMakeAssoc.c +@@ -37,7 +37,7 @@ + * meaningless (but cause no problems). The queue in each association + * bucket is sorted (lowest XId to highest XId). + */ +-XMakeAssoc(dpy, table, x_id, data) ++void XMakeAssoc(dpy, table, x_id, data) + register Display *dpy; + register XAssocTable *table; + register XID x_id; Added: head/editors/emacs21/files/patch-src_dispnew.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/emacs21/files/patch-src_dispnew.c Mon Sep 23 08:46:16 2013 (r327953) @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- src/dispnew.c.orig ++++ src/dispnew.c +@@ -1256,7 +1256,7 @@ + /* Copy glyph row structure FROM to glyph row structure TO, except + that glyph pointers in the structures are left unchanged. */ + +-INLINE void ++static INLINE void + copy_row_except_pointers (to, from) + struct glyph_row *to, *from; + { Added: head/editors/emacs21/files/patch-src_syntax.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/emacs21/files/patch-src_syntax.c Mon Sep 23 08:46:16 2013 (r327953) @@ -0,0 +1,23 @@ + +$FreeBSD$ + +--- src/syntax.c.orig ++++ src/syntax.c +@@ -316,7 +316,7 @@ + /* Return the bytepos one character after BYTEPOS. + We assume that BYTEPOS is not at the end of the buffer. */ + +-INLINE int ++static INLINE int + inc_bytepos (bytepos) + int bytepos; + { +@@ -330,7 +330,7 @@ + /* Return the bytepos one character before BYTEPOS. + We assume that BYTEPOS is not at the start of the buffer. */ + +-INLINE int ++static INLINE int + dec_bytepos (bytepos) + int bytepos; + {