<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">Submitted By:            Armin K. &lt;krejzi at email dot com&gt;, rediffed by Fernando de Oliveira &lt;famobr at yahoo dot com dot br&gt;
Date:                    2014-06-23
Initial Package Version: 0.48.5
Upstream Status:         Unknown
Origin:                  Armin K. &lt;krejzi at email dot com&gt;
URL: 
Description:             Fixes build with gc-7.4.2


--- inkscape-0.48.5.orig/configure	2014-06-20 19:05:43.525382393 -0300
+++ inkscape-0.48.5/configure	2014-06-23 15:24:38.730084988 -0300
@@ -9044,8 +9044,8 @@
 			# include &lt;gc.h&gt;
 			#endif
 			#include &lt;stdio.h&gt;
-			extern unsigned GC_version;
 			int main(void){
+				unsigned GC_version = GC_get_version();
 				unsigned min = ((6 &lt;&lt; 16) | (4 &lt;&lt; 8) | 0);
 				printf("%d.%d.%d ",GC_version &gt;&gt; 16, (GC_version &gt;&gt; 8) &amp; 0xFF, GC_version &amp; 0xFF);
 				if (GC_version&gt;=min) return 0;
--- inkscape-0.48.5.orig/configure.ac	2014-06-20 17:29:03.717600589 -0300
+++ inkscape-0.48.5/configure.ac	2014-06-23 15:24:19.592598799 -0300
@@ -241,8 +241,8 @@
 			# include &lt;gc.h&gt;
 			#endif
 			#include &lt;stdio.h&gt;
-			extern unsigned GC_version;
 			int main(void){
+				unsigned GC_version = GC_get_version();
 				unsigned min = ((6 &lt;&lt; 16) | (4 &lt;&lt; 8) | 0);
 				printf("%d.%d.%d ",GC_version &gt;&gt; 16, (GC_version &gt;&gt; 8) &amp; 0xFF, GC_version &amp; 0xFF);
 				if (GC_version&gt;=min) return 0;
</pre></body></html>