summaryrefslogtreecommitdiff
path: root/freefilesync/ffs_desktop_notifications.patch
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-09-07 19:24:28 -0400
committerB. Stack <bgstack15@gmail.com>2022-09-07 19:24:28 -0400
commitae7f43535ac69b015df69dbf658321d9a89af25b (patch)
tree427750d6c561448c05b8026ee13886d67d0de073 /freefilesync/ffs_desktop_notifications.patch
parentMerge branch 'notepadnext-bump' into 'master' (diff)
downloadstackrpms-ae7f43535ac69b015df69dbf658321d9a89af25b.tar.gz
stackrpms-ae7f43535ac69b015df69dbf658321d9a89af25b.tar.bz2
stackrpms-ae7f43535ac69b015df69dbf658321d9a89af25b.zip
ffs 11.25 dpkg, and rpm initial work
Diffstat (limited to 'freefilesync/ffs_desktop_notifications.patch')
-rw-r--r--freefilesync/ffs_desktop_notifications.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/freefilesync/ffs_desktop_notifications.patch b/freefilesync/ffs_desktop_notifications.patch
index 2dd257e..6e61bc7 100644
--- a/freefilesync/ffs_desktop_notifications.patch
+++ b/freefilesync/ffs_desktop_notifications.patch
@@ -5,9 +5,9 @@ Message: Add support for building with desktop notification support.
diff -aur 11.9-1/FreeFileSync/Source/Makefile 11.9-2/FreeFileSync/Source/Makefile
--- 11.9-1/FreeFileSync/Source/Makefile 2021-05-06 16:24:53.987902373 -0400
+++ 11.9-2/FreeFileSync/Source/Makefile 2021-05-06 17:09:31.512474440 -0400
-@@ -21,6 +22,13 @@
+@@ -22,6 +22,13 @@
#treat as system headers so that warnings are hidden:
- cxxFlags += -isystem/usr/include/gtk-3.0
+ CXXFLAGS += -isystem/usr/include/gtk-2.0
+with_notifications ?= NO
+ifeq ($(with_notifications),YES)
bgstack15