summaryrefslogtreecommitdiff
path: root/freefilesync/debian/patches/ffs_devuan.patch
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-05-24 09:51:03 -0400
committerB. Stack <bgstack15@gmail.com>2022-05-24 09:51:03 -0400
commit50470fbc44d3f1dd8b0420ce95b1d4b54cb10af9 (patch)
tree994574eaab0cc5673967dae2ce1db63576ec7dd6 /freefilesync/debian/patches/ffs_devuan.patch
parentffs 11.21 rpm rc1 (diff)
downloadstackrpms-50470fbc44d3f1dd8b0420ce95b1d4b54cb10af9.tar.gz
stackrpms-50470fbc44d3f1dd8b0420ce95b1d4b54cb10af9.tar.bz2
stackrpms-50470fbc44d3f1dd8b0420ce95b1d4b54cb10af9.zip
ffs: on devuan use g++-12 and fix new wx3.1.1 stuff
Diffstat (limited to 'freefilesync/debian/patches/ffs_devuan.patch')
-rw-r--r--freefilesync/debian/patches/ffs_devuan.patch12
1 files changed, 11 insertions, 1 deletions
diff --git a/freefilesync/debian/patches/ffs_devuan.patch b/freefilesync/debian/patches/ffs_devuan.patch
index fc4db2d..30ae71c 100644
--- a/freefilesync/debian/patches/ffs_devuan.patch
+++ b/freefilesync/debian/patches/ffs_devuan.patch
@@ -61,4 +61,14 @@ diff -Naur -x '*.orig' -x '*.rej' -x .git 11.4-0/FreeFileSync/Source/RealTimeSyn
#Gtk - support "no button border"
cxxFlags += `pkg-config --cflags gtk+-2.0`
-
+--- 11.21-0/FreeFileSync/Source/application.cpp 2022-05-22 17:09:32.234809499 -0400
++++ 11.21-1/FreeFileSync/Source/application.cpp 2022-05-24 08:36:51.949159500 -0400
+@@ -93,7 +93,7 @@
+ ZEN_ON_SCOPE_EXIT(if (error) ::g_error_free(error));
+
+ ::gtk_css_provider_load_from_path(provider, //GtkCssProvider* css_provider,
+- (getResourceDirPf() + fileName).c_str(), //const gchar* path,
++ (getResourceDirPath() + fileName).c_str(), //const gchar* path,
+ &error); //GError** error
+ if (error)
+ throw SysError(formatGlibError("gtk_css_provider_load_from_path", error));
bgstack15