svn commit: r549569 - in head/devel/libruin: . files

Stefan Eßer se at FreeBSD.org
Tue Sep 22 10:18:12 UTC 2020


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();
+ 


More information about the svn-ports-head mailing list