diff options
author | Andre Heinecke <[email protected]> | 2016-04-12 07:42:36 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2016-04-12 07:42:36 +0000 |
commit | 6dba47c3a2c32d7c1e1d91a96030f99f606433ea (patch) | |
tree | 1b0be505d933283a460250ce459d7b0a1c7ca20f | |
parent | Qt/Cpp: Bump so version to 6. (diff) | |
download | gpgme-6dba47c3a2c32d7c1e1d91a96030f99f606433ea.tar.gz gpgme-6dba47c3a2c32d7c1e1d91a96030f99f606433ea.zip |
Fix configuration without Qt language
* configure.ac: Define HAVE_DOXYGEN also if qt should not be built.
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 6f1640d3..2dcec492 100644 --- a/configure.ac +++ b/configure.ac @@ -291,13 +291,13 @@ if test "$found" = "1"; then if test -z "$DOXYGEN"; then AC_MSG_WARN([Doxygen not found - Qt binding doc will not be built.]) fi - AM_CONDITIONAL([HAVE_DOXYGEN], - [test -n "$DOXYGEN"]) - # Make sure that qt comes after cpp enabled_languages=`echo $enabled_languages | sed 's/qt//'` enabled_languages=`echo $enabled_languages qt` fi +AM_CONDITIONAL([HAVE_DOXYGEN], + [test -n "$DOXYGEN"]) + AC_SUBST(ENABLED_LANGUAGES, $enabled_languages) # |