- Add Fix-CMakeLists-error.patch to fix a build error. (forwarded request 729722 from cgiboudeaux) OBS-URL: https://build.opensuse.org/request/show/729730 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gnucash?expand=0&rev=80
21 lines
788 B
Diff
21 lines
788 B
Diff
From ce6c3c22a15102341ca41ddba2a46ea7daf63f17 Mon Sep 17 00:00:00 2001
|
|
From: Christopher Lam <christopher.lck@gmail.com>
|
|
Date: Sat, 20 Jul 2019 20:32:07 +0800
|
|
Subject: [PATCH] Fix CMakeLists error
|
|
|
|
need to include module
|
|
---
|
|
gnucash/register/register-gnome/CMakeLists.txt | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/gnucash/register/register-gnome/CMakeLists.txt b/gnucash/register/register-gnome/CMakeLists.txt
|
|
index acfdd89f38..f3527484ba 100644
|
|
--- a/gnucash/register/register-gnome/CMakeLists.txt
|
|
+++ b/gnucash/register/register-gnome/CMakeLists.txt
|
|
@@ -1,4 +1,5 @@
|
|
add_subdirectory(test)
|
|
+include(CheckSymbolExists)
|
|
|
|
#GTK before 3.14 didn't have GDK_MODIFIER_INTENT_DEFAULT_MOD_MASK
|
|
check_symbol_exists(GDK_MODIFIER_INTENT_DEFAULT_MOD_MASK gdk/gdktypes.h have_mod_mask)
|