https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=219963
--- Comment #19 from Jung-uk Kim <[email protected]> --- FYI, It seems sqlite3 source code was rearranged. Basically, these two code chunks have switched positions. === option list === #if SQLITE_ENABLE_FTS3 "ENABLE_FTS3", #endif =================== === option hack === /* ** FTS4 is really an extension for FTS3. It is enabled using the ** SQLITE_ENABLE_FTS3 macro. But to avoid confusion we also all ** the SQLITE_ENABLE_FTS4 macro to serve as an alisse for SQLITE_ENABLE_FTS3. */ #if defined(SQLITE_ENABLE_FTS4) && !defined(SQLITE_ENABLE_FTS3) # define SQLITE_ENABLE_FTS3 #endif =================== i.e., the option list comes before the option hack now. In other words, compile time options are shown instead of actually active options now. I don't know whether it is intentional. -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-gecko To unsubscribe, send any mail to "[email protected]"
