Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 8 Jun 2018 01:01:08 +0000 (UTC)
From:      "Jason E. Hale" <jhale@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r471962 - head/finance/kmymoney-kde4/files
Message-ID:  <201806080101.w58118rj083028@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhale
Date: Fri Jun  8 01:01:08 2018
New Revision: 471962
URL: https://svnweb.freebsd.org/changeset/ports/471962

Log:
  Attempt to fix build. The kmm_ofximport_dialogs target depends on
  kmymoneysettings.h which is generated by the kmm_settings target.
  
  kmymoney/plugins/ofximport/dialogs/kofxdirectconnectdlg.cpp:19:10: fatal error: 'kmymoneysettings.h' file not found
  
  Reported by:	pkg-fallout

Added:
  head/finance/kmymoney-kde4/files/patch-kmymoney_plugins_ofximport_dialogs_CMakeLists.txt   (contents, props changed)

Added: head/finance/kmymoney-kde4/files/patch-kmymoney_plugins_ofximport_dialogs_CMakeLists.txt
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/finance/kmymoney-kde4/files/patch-kmymoney_plugins_ofximport_dialogs_CMakeLists.txt	Fri Jun  8 01:01:08 2018	(r471962)
@@ -0,0 +1,13 @@
+kmymoneysettings.h is generated by the kmm_settings target. We need to ensure
+that it is built before kmm_ofximport_dialogs.
+
+kmymoney/plugins/ofximport/dialogs/kofxdirectconnectdlg.cpp:19:10: fatal error: 'kmymoneysettings.h' file not found
+
+--- kmymoney/plugins/ofximport/dialogs/CMakeLists.txt.orig	2018-06-08 00:37:49 UTC
++++ kmymoney/plugins/ofximport/dialogs/CMakeLists.txt
+@@ -15,3 +15,5 @@ set(kmm_ofximport_dialogs_UI
+ kde4_add_ui_files(kmm_ofximport_dialogs_la_SOURCES
+   ${kmm_ofximport_dialogs_UI})
+ kde4_add_library(kmm_ofximport_dialogs STATIC ${kmm_ofximport_dialogs_la_SOURCES})
++
++add_dependencies(kmm_ofximport_dialogs kmm_settings)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806080101.w58118rj083028>