From 375523ead3a749d77d286c56f10d403c07f2b014 Mon Sep 17 00:00:00 2001 From: Andre Heinecke Date: Thu, 19 May 2016 10:56:49 +0200 Subject: [PATCH] Qt: Fix compilation of unit tests * lang/qt/tests/Makefile.am (AM_CPPFLAGS): Add -DBUILDING_QGPGME. -- Without building QGpgME the headers of gpgme++ are not included corretly and taken from an already installed gpgme++. --- lang/qt/tests/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/qt/tests/Makefile.am b/lang/qt/tests/Makefile.am index 4a14e63d..7658a73a 100644 --- a/lang/qt/tests/Makefile.am +++ b/lang/qt/tests/Makefile.am @@ -36,7 +36,7 @@ LDADD = ../../cpp/src/libgpgmepp.la ../src/libqgpgme.la \ AM_CPPFLAGS = -I$(top_builddir)/src @GPG_ERROR_CFLAGS@ \ @GPGME_QT_CFLAGS@ @GPG_ERROR_CFLAGS@ @LIBASSUAN_CFLAGS@ \ - @GPGME_QTTEST_CFLAGS@ \ + @GPGME_QTTEST_CFLAGS@ -DBUILDING_QGPGME \ -I$(top_srcdir)/lang/cpp/src -I$(top_srcdir)/lang/qt/src \ -DTOP_SRCDIR="$(top_srcdir)"