changeset 2096:5110598705c2

Win: Need BUILD_DLL in addition to BUILD_HTML to check HTML support.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Thu, 11 Jun 2020 05:08:36 +0000
parents a3e176450077
children 6608fc7f6465
files win/dw.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/win/dw.c	Thu Jun 11 03:22:27 2020 +0000
+++ b/win/dw.c	Thu Jun 11 05:08:36 2020 +0000
@@ -13365,7 +13365,7 @@
 {
     switch(feature)
     {
-#ifdef BUILD_HTML
+#if (defined(BUILD_DLL) || defined(BUILD_HTML))
         case DW_FEATURE_HTML:
         case DW_FEATURE_HTML_RESULT:
 #endif
@@ -13409,7 +13409,7 @@
     switch(feature)
     {
         /* These features are supported but not configurable */
-#ifdef BUILD_HTML
+#if (defined(BUILD_DLL) || defined(BUILD_HTML))
         case DW_FEATURE_HTML:
         case DW_FEATURE_HTML_RESULT:
 #endif