0cf9041e36
+ Filter Gallery + Modular grids & improved axonometric grids + Swatches dialog and palette file handling improved + Unified font browser preview + Customizable handles + Fast image clipping with the Shape Builder + Affinity Designer File Import + Support for internal links in exported PDF files + A whole new icon set + See the full release notes https://inkscape.org/release/inkscape-1.4 - Drop inkscape-poppler-24.03.0.patch, inkscape-libxml2.12.patch, inkscape-poppler-c++20.patch, inkscape-poppler-24.05.0.patch, inkscape-poppler-c++20-2.patch, inkscape_1.3.2_fix_tiff.patch, fixed upstream OBS-URL: https://build.opensuse.org/package/show/graphics/inkscape?expand=0&rev=121
34 lines
947 B
Diff
34 lines
947 B
Diff
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
|
||
|