Added patch

This commit is contained in:
jolupa 2019-08-07 01:12:26 +02:00
parent ffad87dc42
commit be7d34b329
3 changed files with 34 additions and 4 deletions

View File

@ -1,5 +1,6 @@
untrusted comment: verify with /etc/ports/jolupalabs.pub
RWRdPtfuMX7+XA1+MJjLyt6defaQa9sUcWgEDezDyTUdF6on3GW9F2CwWYYicNT65Bz7Weiy2lma4SDMy55eKqhtjeNKwj168wA=
SHA256 (Pkgfile) = ff05510643ba7e4a1f1386e751f69762b7eedcd7c62b2d0f88e7943495610ad2
RWRdPtfuMX7+XN3CIHs3E2xo6pt5E9m91XbvO0PmwjFVrWrrBKUadHl/f918PyAfSyh3QL2SZq4V58pgQokvMvgACyWIAI2PTw4=
SHA256 (Pkgfile) = 9acfb21d9ff152e9c2ba1957a9234e42dda7f3097c2a7559e5c0d5d5d91efa66
SHA256 (.footprint) = 622370fdd89b7a11dbeca86dc7dc500c01e5780bbb2844674639763a608b1fe8
SHA256 (libxfce4ui-4.13.6.tar.gz) = 8b1f20cdceede3ea11ebfa9b7bba84ece4b70c1d17356d36f64f0efe9aacb233
SHA256 (patch1.patch) = 1adf09c0641aed552a651e44ae201c8b3607dda50db2274dc684199fe4d2c8f5

View File

@ -5,12 +5,14 @@
name=libxfce4ui
version=4.13.6
release=1
source=(https://git.xfce.org/xfce/$name/snapshot/$name-$version.tar.gz)
release=2
source=(https://git.xfce.org/xfce/$name/snapshot/$name-$version.tar.gz patch1.patch)
build() {
cd $name-$version
patch -p1 -i $SRC/patch1.patch
./autogen.sh \
--prefix=/usr \

27
libxfce4ui/patch1.patch Normal file
View File

@ -0,0 +1,27 @@
From 96ddca5dafb9ac336a76bedb1403d97840900872 Mon Sep 17 00:00:00 2001
From: Andre Miranda <andreldm@xfce.org>
Date: Sun, 4 Aug 2019 13:32:22 -0300
Subject: Include string.h
---
libxfce4ui/xfce-gtk-extensions.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/libxfce4ui/xfce-gtk-extensions.c b/libxfce4ui/xfce-gtk-extensions.c
index 3748aeb..daec0cb 100644
--- a/libxfce4ui/xfce-gtk-extensions.c
+++ b/libxfce4ui/xfce-gtk-extensions.c
@@ -31,6 +31,10 @@
#include <config.h>
#endif
+#ifdef HAVE_STRING_H
+#include <string.h>
+#endif
+
#include <gtk/gtk.h>
#include <pango/pango.h>
--
cgit v1.2.1