configure.ac | 2 +- cui/source/inc/QrCodeGenDialog.hxx | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-)
New commits: commit 50d49d230d740d8422d17fbb7d7f4f9ce9889a1a Author: Caolán McNamara <[email protected]> AuthorDate: Wed Sep 23 19:32:33 2020 +0100 Commit: Xisco Fauli <[email protected]> CommitDate: Mon Sep 28 10:06:22 2020 +0200 fix disable qrcodegen option Change-Id: Ic554f01125653022987c70d03c8c9d86fe3f547a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103204 Reviewed-by: Thorsten Behrens <[email protected]> Reviewed-by: Adolfo Jayme Barrientos <[email protected]> Reviewed-by: Xisco Fauli <[email protected]> Tested-by: Xisco Fauli <[email protected]> diff --git a/configure.ac b/configure.ac index 3795b74f2bce..a698490db23f 100644 --- a/configure.ac +++ b/configure.ac @@ -10080,7 +10080,7 @@ dnl =================================================================== dnl Check for system qrcodegen dnl =================================================================== AC_MSG_CHECKING([whether to use libqrcodegen]) -if test "$enable_libqrcodegen" = "no"; then +if test "$enable_qrcodegen" = "no"; then AC_MSG_RESULT([no]) ENABLE_QRCODEGEN= SYSTEM_QRCODEGEN= diff --git a/cui/source/inc/QrCodeGenDialog.hxx b/cui/source/inc/QrCodeGenDialog.hxx index a3ca38d48d4a..741253f7687d 100644 --- a/cui/source/inc/QrCodeGenDialog.hxx +++ b/cui/source/inc/QrCodeGenDialog.hxx @@ -9,6 +9,8 @@ #ifndef INCLUDED_CUI_INC_QRCODEGENDIALOG_HXX #define INCLUDED_CUI_INC_QRCODEGENDIALOG_HXX +#include <config_qrcodegen.h> + #include <vcl/weld.hxx> #include <com/sun/star/frame/XModel.hpp> _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
