[sword-svn] r3904 - trunk/src/modules

scribe at crosswire.org scribe at crosswire.org
Thu Jun 19 16:31:16 EDT 2025


Author: scribe
Date: 2025-06-19 16:31:16 -0400 (Thu, 19 Jun 2025)
New Revision: 3904

Modified:
   trunk/src/modules/swmodule.cpp
Log:
fixes a bug where swomodule does not report itself as supporting index creation when compiled against Xapian -Greg Hellings <greg.hellings at gmail.com>


Modified: trunk/src/modules/swmodule.cpp
===================================================================
--- trunk/src/modules/swmodule.cpp	2025-06-19 17:40:40 UTC (rev 3903)
+++ trunk/src/modules/swmodule.cpp	2025-06-19 20:31:16 UTC (rev 3904)
@@ -1181,7 +1181,7 @@
 
 
 bool SWModule::hasSearchFramework() {
-#ifdef USELUCENE
+#if defined(USELUCENE) || defined(USEXAPIAN)
 	return true;
 #else
 	return SWSearchable::hasSearchFramework();



More information about the sword-cvs mailing list