Date: Tue, 08 Aug 2017 20:32:43 +0000 From: bugzilla-noreply@freebsd.org To: gecko@FreeBSD.org Subject: [Bug 219963] www/firefox: update to 55.0 Message-ID: <bug-219963-21738-oZai2cwOdB@https.bugs.freebsd.org/bugzilla/> In-Reply-To: <bug-219963-21738@https.bugs.freebsd.org/bugzilla/> References: <bug-219963-21738@https.bugs.freebsd.org/bugzilla/>
next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D219963 --- Comment #19 from Jung-uk Kim <jkim@FreeBSD.org> --- FYI, It seems sqlite3 source code was rearranged. Basically, these two code chunks have switched positions. =3D=3D=3D option list =3D=3D=3D #if SQLITE_ENABLE_FTS3 "ENABLE_FTS3", #endif =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D option hack =3D=3D=3D /* ** 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_FTS= 3. */ #if defined(SQLITE_ENABLE_FTS4) && !defined(SQLITE_ENABLE_FTS3) # define SQLITE_ENABLE_FTS3 #endif =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D 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 d= on't know whether it is intentional. --=20 You are receiving this mail because: You are the assignee for the bug.=
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-219963-21738-oZai2cwOdB>