aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndre Heinecke <[email protected]>2016-08-25 14:19:39 +0000
committerAndre Heinecke <[email protected]>2016-08-25 14:20:42 +0000
commit5a92cc96da183ebb19867a2a910f53ba41e76ae9 (patch)
treefd314a4a0d3f5e1c696de8e02262fa4990cf0807
parentcpp: Add WithTofu Keylist Mode (diff)
downloadgpgme-5a92cc96da183ebb19867a2a910f53ba41e76ae9.tar.gz
gpgme-5a92cc96da183ebb19867a2a910f53ba41e76ae9.zip
qt: Ensure that current src dir is included first
* lang/qt/src/Makefile.am: Reorder include directives. -- This fixes the problem that QGpgME would pick up gpgme or gpgme++ headers from an installed version.
-rw-r--r--lang/qt/src/Makefile.am5
1 files changed, 3 insertions, 2 deletions
diff --git a/lang/qt/src/Makefile.am b/lang/qt/src/Makefile.am
index 8f6d773b..59206ed8 100644
--- a/lang/qt/src/Makefile.am
+++ b/lang/qt/src/Makefile.am
@@ -199,8 +199,9 @@ nodist_include_HEADERS = qgpgme_version.h
libqgpgme_la_SOURCES = $(qgpgme_sources) $(qgpgme_headers) $(private_qgpgme_headers)
-AM_CPPFLAGS = @GPGME_QT_CFLAGS@ @GPG_ERROR_CFLAGS@ @LIBASSUAN_CFLAGS@ \
- -DBUILDING_QGPGME -I$(top_srcdir)/lang/cpp/src
+AM_CPPFLAGS = -I$(top_builddir)/src -I$(top_srcdir)/lang/cpp/src \
+ @GPGME_QT_CFLAGS@ @GPG_ERROR_CFLAGS@ @LIBASSUAN_CFLAGS@ \
+ -DBUILDING_QGPGME
libqgpgme_la_LIBADD = ../../cpp/src/libgpgmepp.la ../../../src/libgpgme.la \
@LIBASSUAN_LIBS@ @GPGME_QT_LIBS@