Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
aports
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
alpine
aports
Commits
20075898
Commit
20075898
authored
5 months ago
by
mio
Committed by
Ariadne Conill
5 months ago
Browse files
Options
Downloads
Patches
Plain Diff
community/gtk-murrine-engine: fix build with gcc 14
parent
59fb90bd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!71047
community/gtk-murrine-engine: fix build with gcc 14
Pipeline
#255279
skipped
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
community/gtk-murrine-engine/APKBUILD
+4
-2
4 additions, 2 deletions
community/gtk-murrine-engine/APKBUILD
community/gtk-murrine-engine/add-missing-function-declarations.patch
+34
-0
34 additions, 0 deletions
...tk-murrine-engine/add-missing-function-declarations.patch
with
38 additions
and
2 deletions
community/gtk-murrine-engine/APKBUILD
+
4
−
2
View file @
20075898
...
...
@@ -2,13 +2,14 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname
=
gtk-murrine-engine
pkgver
=
0.98.2
pkgrel
=
2
pkgrel
=
3
pkgdesc
=
"cairo-based gtk engine"
url
=
"http://www.cimitan.com/murrine/"
arch
=
"all"
license
=
"LGPL-3.0-or-later"
makedepends
=
"gtk+2.0-dev cairo-dev intltool"
source
=
"https://download.gnome.org/sources/murrine/
${
pkgver
%.*
}
/murrine-
$pkgver
.tar.xz"
source
=
"https://download.gnome.org/sources/murrine/
${
pkgver
%.*
}
/murrine-
$pkgver
.tar.xz
add-missing-function-declarations.patch"
builddir
=
"
$srcdir
/murrine-
$pkgver
"
...
...
@@ -33,4 +34,5 @@ package() {
sha512sums
=
"
5ed6b499b957c33d301c7ac508937517e8f9753fabb84e0cf977f67b10b09968cee5a10bdeae64a05f64606b5769e7313ededbb3b0c3ae9f78e34f893aa96667 murrine-0.98.2.tar.xz
fb0b73540371ff60346f73327ff0255fed7cc3f35c372126cc1ff9f51500e71d8ecc28131f5e46fa99f51e524addf87ec2e124706644c62c837c6747996080a9 add-missing-function-declarations.patch
"
This diff is collapsed.
Click to expand it.
community/gtk-murrine-engine/add-missing-function-declarations.patch
0 → 100644
+
34
−
0
View file @
20075898
Source: https://www.mail-archive.com/debian-bugs-dist@lists.debian.org/msg1964644.html
Description: Add declarations for functions to fix implicit function
declaration errors.
Author: Peter Michael Green <plugw...@debian.org>
---
--- gtk2-engines-murrine-0.98.2.orig/src/murrine_rc_style.h
+++ gtk2-engines-murrine-0.98.2/src/murrine_rc_style.h
@@ -155,4 +155,6 @@
struct _MurrineRcStyleClass
GType murrine_rc_style_get_type (void);
+void murrine_rc_style_register_types (GTypeModule *module);
+
#endif /* MURRINE_RC_STYLE_H */
--- gtk2-engines-murrine-0.98.2.orig/src/murrine_style.h
+++ gtk2-engines-murrine-0.98.2/src/murrine_style.h
@@ -102,5 +102,6 @@
struct _MurrineStyleClass
};
GType murrine_style_get_type (void);
+void murrine_style_register_types (GTypeModule *module);
#endif /* MURRINE_STYLE_H */
--- gtk2-engines-murrine-0.98.2.orig/src/support.h
+++ gtk2-engines-murrine-0.98.2/src/support.h
@@ -149,4 +149,7 @@
G_GNUC_INTERNAL void murrine_get_noteboo
gboolean *start,
gboolean *end);
+gboolean murrine_object_is_a (const GObject * object, const gchar * type_name);
+gboolean murrine_widget_is_ltr (GtkWidget *widget);
+
#endif /* SUPPORT_H */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment