summaryrefslogtreecommitdiff
path: root/freefilesync/debian/patches/ffs_devuan_gtk3.patch
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-12-10 12:28:18 +0000
committerB Stack <bgstack15@gmail.com>2020-12-10 12:28:18 +0000
commit95d1c5485ea21247f0311ea646e17965170766e8 (patch)
treea5ad6d0ca55c3915d2ae29e65c6b1cffbf9d57fd /freefilesync/debian/patches/ffs_devuan_gtk3.patch
parentMerge branch 'palemoon-bump' into 'master' (diff)
parentffs rpm 11.4 (diff)
downloadstackrpms-95d1c5485ea21247f0311ea646e17965170766e8.tar.gz
stackrpms-95d1c5485ea21247f0311ea646e17965170766e8.tar.bz2
stackrpms-95d1c5485ea21247f0311ea646e17965170766e8.zip
Merge branch 'freefilesync-bump' into 'master'
FreeFileSync 11.4 See merge request bgstack15/stackrpms!206
Diffstat (limited to 'freefilesync/debian/patches/ffs_devuan_gtk3.patch')
-rw-r--r--freefilesync/debian/patches/ffs_devuan_gtk3.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/freefilesync/debian/patches/ffs_devuan_gtk3.patch b/freefilesync/debian/patches/ffs_devuan_gtk3.patch
index 8a5e83e..6548568 100644
--- a/freefilesync/debian/patches/ffs_devuan_gtk3.patch
+++ b/freefilesync/debian/patches/ffs_devuan_gtk3.patch
@@ -22,7 +22,7 @@ diff -x '*.rej' -x '*.orig' -x '*.git*' -Naur 10.24-0/FreeFileSync/Source/RealTi
--- 10.24-0/FreeFileSync/Source/RealTimeSync/Makefile 2020-05-17 18:30:59.289498093 -0400
+++ 10.24-1/FreeFileSync/Source/RealTimeSync/Makefile 2020-05-17 19:32:59.791394275 -0400
@@ -7,9 +7,10 @@
- linkFlags += -s `wx-config --libs std, aui --debug=no` -lz -pthread
+ linkFlags += -s -no-pie `wx-config --libs std, aui, richtext --debug=no` -lz -pthread
#Gtk - support "no button border"
-cxxFlags += `pkg-config --cflags gtk+-2.0`
bgstack15