From 6438002de6a489ff0836d5a5d60ff03b5c4e4a1e Mon Sep 17 00:00:00 2001 From: Michael Rasmussen Date: Wed, 13 Feb 2019 00:47:34 +0100 Subject: [PATCH] Fix build error Signed-off-by: Michael Rasmussen --- configure.ac | 4 ++-- src/plugins/litehtml_viewer/Makefile.am | 4 ++-- src/plugins/litehtml_viewer/litehtml/Makefile.am | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/configure.ac b/configure.ac index da934fe17..1ac1b280c 100644 --- a/configure.ac +++ b/configure.ac @@ -2083,9 +2083,9 @@ AM_CONDITIONAL(BUILD_FANCY_PLUGIN, test x"$enable_fancy_plugin" != xno) AM_CONDITIONAL(BUILD_FETCHINFO_PLUGIN, test x"$enable_fetchinfo_plugin" != xno) AM_CONDITIONAL(BUILD_GDATA_PLUGIN, test x"$enable_gdata_plugin" != xno) AM_CONDITIONAL(BUILD_LIBRAVATAR_PLUGIN, test x"$enable_libravatar_plugin" != xno) -AM_CONDITIONAL(BUILD_LITEHTML_PLUGIN, test x"$enable_litehtml_viewer_plugin" != xno) +AM_CONDITIONAL(BUILD_LITEHTML_VIEWER_PLUGIN, test x"$enable_litehtml_viewer_plugin" != xno) AM_CONDITIONAL(BUILD_MAILMBOX_PLUGIN, test x"$enable_mailmbox_plugin" != xno) -AM_CONDITIONAL(BUILD_MANAGESIEVE_PLUGIN, test x"$enable_managesieve_plugin" != xno) +AM_CONDITIONAL(BUILD_MANAGESIEVE_PLUGIN, test x"$enable_managesieve_plugin" != xno) AM_CONDITIONAL(BUILD_NEWMAIL_PLUGIN, test x"$enable_newmail_plugin" != xno) AM_CONDITIONAL(BUILD_NOTIFICATION_PLUGIN, test x"$enable_notification_plugin" != xno) AM_CONDITIONAL(BUILD_HOTKEYS, test x"$enable_notification_plugin" != xno -a x"$HAVE_HOTKEYS" = xyes) diff --git a/src/plugins/litehtml_viewer/Makefile.am b/src/plugins/litehtml_viewer/Makefile.am index ded5d580b..d603a3000 100644 --- a/src/plugins/litehtml_viewer/Makefile.am +++ b/src/plugins/litehtml_viewer/Makefile.am @@ -25,9 +25,9 @@ cygwin_export_lib = plugindir = $(pkglibdir)/plugins -#if BUILD_LITEHTML_VIEWER_PLUGIN +if BUILD_LITEHTML_VIEWER_PLUGIN plugin_LTLIBRARIES = litehtml_viewer.la -#endif +endif litehtml_viewer_la_DEPENDENCIES = $(plugin_deps) diff --git a/src/plugins/litehtml_viewer/litehtml/Makefile.am b/src/plugins/litehtml_viewer/litehtml/Makefile.am index b412926cc..025e3152b 100644 --- a/src/plugins/litehtml_viewer/litehtml/Makefile.am +++ b/src/plugins/litehtml_viewer/litehtml/Makefile.am @@ -3,9 +3,9 @@ # terms of the General Public License version 3 (or later). # See COPYING file for license details. -#if BUILD_LITEHTML_VIEWER_PLUGIN +if BUILD_LITEHTML_VIEWER_PLUGIN noinst_LTLIBRARIES = liblitehtml.la -#endif +endif liblitehtml_la_CXXFLAGS = -std=c++11 -- 2.11.4.GIT