pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
efl: backport upstream patch
Module Name: pkgsrc-wip
Committed By: moihack <moihack@noreply.localhost>
Pushed By: moihack
Date: Sat Aug 29 20:27:09 2026 +0200
Changeset: 4ee28388faa24d0f6aa1a3bb9b6696ec8b5d447b
Modified Files:
efl/distinfo
Added Files:
efl/patches/patch-src_lib_eet_eet__image.c
Log Message:
efl: backport upstream patch
Backport existing eet upstream patch.
Already upstreamed as part of pull request:
https://git.enlightenment.org/enlightenment/efl/pulls/130
While not mandatory for building efl,
all existing patches closely follow OpenBSD logic,
thefore adding this to pkgsrc as well.
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=4ee28388faa24d0f6aa1a3bb9b6696ec8b5d447b
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
efl/distinfo | 1 +
efl/patches/patch-src_lib_eet_eet__image.c | 19 +++++++++++++++++++
2 files changed, 20 insertions(+)
diffs:
diff --git a/efl/distinfo b/efl/distinfo
index fa29320112..f263c2aa30 100644
--- a/efl/distinfo
+++ b/efl/distinfo
@@ -8,5 +8,6 @@ SHA1 (patch-src_lib_ecore_Efl__Core.h) = 1624463967c94593da98e3f77f49a78f09e7e5b
SHA1 (patch-src_lib_ecore_ecore__exe__posix.c) = b18b11339d343a4c6ce834c0b37cb5cacda00b8d
SHA1 (patch-src_lib_ecore_efl__core__proc__env.c) = 01861acfebabe1c72376b03ac5ae16dc86761633
SHA1 (patch-src_lib_ecore_efl__exe.c) = 8f4febc1dfae43d0009fe51ffeeada43bae462ed
+SHA1 (patch-src_lib_eet_eet__image.c) = 633a0fa5e012ea19c67359882084b8c373bb495b
SHA1 (patch-src_lib_eina_eina__file__posix.c) = 8b9eca7a436a8a431908cf98185dba57340c38f0
SHA1 (patch-src_lib_elementary_Efl__Ui.h) = d4918df249bb58b0fa2898dccf3a171f9d089420
diff --git a/efl/patches/patch-src_lib_eet_eet__image.c b/efl/patches/patch-src_lib_eet_eet__image.c
new file mode 100644
index 0000000000..6c96e6e37c
--- /dev/null
+++ b/efl/patches/patch-src_lib_eet_eet__image.c
@@ -0,0 +1,19 @@
+$NetBSD$
+
+Add mising #ifdef for NetBSD. Backport of existing upstream patch.
+Merged upstream: https://git.enlightenment.org/enlightenment/efl/pulls/130
+
+--- src/lib/eet/eet_image.c.orig 2026-08-29 17:54:55.289546854 +0000
++++ src/lib/eet/eet_image.c
+@@ -2,9 +2,9 @@
+ # include <config.h>
+ #endif /* ifdef HAVE_CONFIG_H */
+
+-#ifdef __OpenBSD__
++#if defined(__OpenBSD__) || defined(__NetBSD__)
+ # include <sys/types.h>
+-#endif /* ifdef __OpenBSD__ */
++#endif
+
+ #include <stdio.h>
+ #include <string.h>
Home |
Main Index |
Thread Index |
Old Index