From owner-svn-ports-head@freebsd.org Tue Sep 22 10:18:12 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 879B83E3F6C; Tue, 22 Sep 2020 10:18:12 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BwchN31xCz3XqJ; Tue, 22 Sep 2020 10:18:12 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4B1571DACF; Tue, 22 Sep 2020 10:18:12 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08MAICs5097564; Tue, 22 Sep 2020 10:18:12 GMT (envelope-from se@FreeBSD.org) Received: (from se@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08MAIBwJ097563; Tue, 22 Sep 2020 10:18:11 GMT (envelope-from se@FreeBSD.org) Message-Id: <202009221018.08MAIBwJ097563@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: se set sender to se@FreeBSD.org using -f From: =?UTF-8?Q?Stefan_E=c3=9fer?= Date: Tue, 22 Sep 2020 10:18:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r549569 - in head/devel/libruin: . files X-SVN-Group: ports-head X-SVN-Commit-Author: se X-SVN-Commit-Paths: in head/devel/libruin: . files X-SVN-Commit-Revision: 549569 X-SVN-Commit-Repository: ports 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.33 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: Tue, 22 Sep 2020 10:18:12 -0000 Author: se Date: Tue Sep 22 10:18:11 2020 New Revision: 549569 URL: https://svnweb.freebsd.org/changeset/ports/549569 Log: Fix build with -fno-common Added: head/devel/libruin/files/ head/devel/libruin/files/patch-src_scheme.h (contents, props changed) Modified: head/devel/libruin/Makefile Modified: head/devel/libruin/Makefile ============================================================================== --- head/devel/libruin/Makefile Tue Sep 22 09:36:55 2020 (r549568) +++ head/devel/libruin/Makefile Tue Sep 22 10:18:11 2020 (r549569) @@ -3,7 +3,7 @@ PORTNAME= libruin PORTVERSION= 0.2.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel scheme MASTER_SITES= SAVANNAH Added: head/devel/libruin/files/patch-src_scheme.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libruin/files/patch-src_scheme.h Tue Sep 22 10:18:11 2020 (r549569) @@ -0,0 +1,28 @@ +--- src/scheme.h.orig 2011-09-16 14:29:42 UTC ++++ src/scheme.h +@@ -23,7 +23,7 @@ + #include "layout.h" + #include "window.h" + +-SCM ruin_scheme_scss_document_interface_sdom; ++extern SCM ruin_scheme_scss_document_interface_sdom; + + SCM ruin_scheme_scss_color_to_hex (ruin_window_t *, char *); + void ruin_scheme_scss_set_cascade_author (ruin_window_t *, SCM, SCM); +@@ -71,11 +71,11 @@ int ruin_scheme_sdom_text_node_p (ruin_window_t *, SCM + char *ruin_scheme_sdom_value (ruin_window_t *, SCM); + SCM ruin_scheme_sdom_xml_to_sdom (ruin_window_t *, SCM, SCM); + +-SCM ruin_scheme_sdom_node_type_attr; +-SCM ruin_scheme_sdom_node_type_element; +-SCM ruin_scheme_sdom_node_type_document; +-SCM ruin_scheme_sdom_node_type_processing_instruction; +-SCM ruin_scheme_sdom_node_type_text; ++extern SCM ruin_scheme_sdom_node_type_attr; ++extern SCM ruin_scheme_sdom_node_type_element; ++extern SCM ruin_scheme_sdom_node_type_document; ++extern SCM ruin_scheme_sdom_node_type_processing_instruction; ++extern SCM ruin_scheme_sdom_node_type_text; + + void ruin_scheme_init(); +