- remove patch that's no longer needed; from brad and tested by kmos@ also

- tweak comment of remaining patch
This commit is contained in:
jasper 2021-07-12 17:34:57 +00:00
parent e643d0dd12
commit b949318307
2 changed files with 2 additions and 21 deletions

View File

@ -1,19 +0,0 @@
$OpenBSD: patch-src_app_app_cc,v 1.8 2021/05/13 09:03:37 jasper Exp $
Fix build on !clang:
app.cc:309:39: error: cannot convert 'const GdkRGBA {aka const _GdkRGBA} to 'gdouble {aka double}' in initialization
cf https://blog.quasardb.net/cpp-braced-initialization/
Index: src/app/app.cc
--- src/app/app.cc.orig
+++ src/app/app.cc
@@ -473,7 +473,7 @@ class Options { (public)
GdkRGBA get_color_bg() const
{
- GdkRGBA color{bg_color};
+ GdkRGBA color = bg_color;
color.alpha = get_alpha_bg();
return color;
}

View File

@ -1,6 +1,6 @@
$OpenBSD: patch-src_missing_hh,v 1.1 2021/07/10 05:44:14 visa Exp $
$OpenBSD: patch-src_missing_hh,v 1.2 2021/07/12 17:34:57 jasper Exp $
build: Fix build on non-linux systems
https://gitlab.gnome.org/GNOME/vte/-/commit/674f864269d0842376752487f29bfdddc8c7ec9f
Index: src/missing.hh
--- src/missing.hh.orig