summaryrefslogtreecommitdiff
path: root/freefilesync/ffs_desktop_notifications.patch
diff options
context:
space:
mode:
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