inkscape/inkscape-libxml2.12.patch
Ana Guerrero 2c868094c1 - Update to version 1.4+39:
* Fix <solidcolor solid-color="..." />
  * Fix boolop fill-rule as attribute
  * Fix crash on pasting mesh gradient
  * Test URI rebasing for clones
  * Fix copying clone referencing other document
  * Fix Linux snap package build (1.4.x)
  * Fix building with Poppler 24.11
  * Future-proof against poppler 24.10 changes
  * Fix crash with rebasing invalid URL
  * Fix saving crash with unspecified exception
  * Fix PDF text import for text with character and word spacing.
  * Update libcroco
  * Fix LAB decoding in Adobe ASE swatch file
  * Fix building with poppler 24.12.0
- Switch to source service git checkout. Make future version
  updates and pulling fixes from upstream stable branch easy.

OBS-URL: https://build.opensuse.org/package/show/graphics/inkscape?expand=0&rev=127
2024-12-31 14:09:22 +00:00

34 lines
947 B
Diff
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

From 694d8ae43d06efff21adebf377ce614d660b24cd Mon Sep 17 00:00:00 2001
From: Christian Hesse <mail@eworm.de>
Date: Fri, 17 Nov 2023 22:30:42 +0100
Subject: [PATCH] include missing header file
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
This fixes build error:
```
/build/inkscape/src/inkscape/src/object/uri.cpp: In constructor Inkscape::URI::URI(const gchar*, const char*):
/build/inkscape/src/inkscape/src/object/uri.cpp:86:9: error: xmlFree was not declared in this scope; did you mean xmlFreeURI?
86 | xmlFree(full);
```
---
src/object/uri.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/object/uri.h b/src/object/uri.h
index 381adec58cf..d5b211fe2b2 100644
--- a/src/object/uri.h
+++ b/src/object/uri.h
@@ -13,6 +13,7 @@
#define INKSCAPE_URI_H
#include <libxml/uri.h>
+#include <libxml/xmlmemory.h>
#include <memory>
#include <string>
--
GitLab