summaryrefslogtreecommitdiff
path: root/freefilesync
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-09-07 20:46:54 -0400
committerB. Stack <bgstack15@gmail.com>2022-09-07 20:46:54 -0400
commit12c228073689239c42b990f5aac4581e540dc295 (patch)
tree7bda41827dcc2673990adc3136ba6075263def84 /freefilesync
parentffs: update _service for obs (diff)
downloadstackrpms-12c228073689239c42b990f5aac4581e540dc295.tar.gz
stackrpms-12c228073689239c42b990f5aac4581e540dc295.tar.bz2
stackrpms-12c228073689239c42b990f5aac4581e540dc295.zip
ffs: fix desktop_notifications patch
Diffstat (limited to 'freefilesync')
-rw-r--r--freefilesync/ffs_desktop_notifications.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/freefilesync/ffs_desktop_notifications.patch b/freefilesync/ffs_desktop_notifications.patch
index 6e61bc7..1556167 100644
--- a/freefilesync/ffs_desktop_notifications.patch
+++ b/freefilesync/ffs_desktop_notifications.patch
@@ -7,7 +7,7 @@ diff -aur 11.9-1/FreeFileSync/Source/Makefile 11.9-2/FreeFileSync/Source/Makefil
+++ 11.9-2/FreeFileSync/Source/Makefile 2021-05-06 17:09:31.512474440 -0400
@@ -22,6 +22,13 @@
#treat as system headers so that warnings are hidden:
- CXXFLAGS += -isystem/usr/include/gtk-2.0
+ CXXFLAGS += -isystem/usr/include/gtk-3.0
+with_notifications ?= NO
+ifeq ($(with_notifications),YES)
bgstack15