This arg breaks the build of webkitgtk4, because this arg disables the
coordinated graphics, but https://commits.webkit.org/238823@main added
code that requires the coordinated graphics.
After unbreaking webkitgtk4, I can browse a few websites in www/midori
on macppc. Most websites crash their tabs, in the same way that
glxgears crashes, "LLVM ERROR: Relocation type not implemented yet!"
ok ajacoutot@ (maintainer)
Fixes:
* sfeed parser: extend the time range to atleast 64-bit (long long).
* sfeed parser: allow leap second like 23:59:60 (RFC2822 Section 3.3).
* sfeed_curses: pedantic fix for UB with an empty URL file (qsort and bsearch).
* sfeed_curses: fix a compile warning with tparm() on some systems.
Features:
* sfeed_atom: add category field(s).
* sfeed_curses: add feature to go to the next bold row and previous bold row
with J and K. This is useful to quickly jump to the next new item or new feed.
Thanks to IanJ for the suggestion and feedback!
* sfeed_content: allow to set HTML converter with env variable $SFEED_HTMLCONV.
For example: SFEED_HTMLCONV="w3m -I UTF-8 -O UTF-8 -T text/html -dump"
* Add compile-time option to improve output on dumb non-UTF8 terminals
(-DSFEED_DUMBTERM).
Misc:
* Documentation improvements to the man page and a sfeed_download example in
the README: this is a parallel downloader/extractor example script.
* Code-style improvements.
Update from Hiltjo Posthuma (maintainer)
Remove the webkit/webengine-wxneeded hack in cmComputeLinkInformation.cxx
and add USE_WXNEEDED=Yes to all cmake webkit/webengine consumer.
Background knowledge about the "hack":
It searches for webkit/webengine (lower-case search) in all link-entries for
EXECUTABLE/SHARED_LIBRARY targets. If the search match it adds
"-Wl,-z,wxneeded".
Feedback, help and OK sthen@ Thanks!
Changelog:
* Update Firefox to 91.6.0esr
* Update NoScript to 11.2.16
* Update Tor Launcher to 0.2.33
* Bug tor-browser#40795: Revert Deutsche Welle v2 redirect
* Bug tor-browser#40679: Missing features on first-time launch in esr91
* Added extensions.torlauncher.launch_delay debug pref to simulate slow tor daemon launch
Patch by Caspar Schutijser (maintainer)
HTTP Framework for REST Applications in C.
Based on GNU Libmicrohttpd for the backend web server, Jansson for the
json manipulation library, and Libcurl for the http/smtp client API.
Used to facilitate creation of web applications in C programs with a
small memory footprint, as in embedded systems applications.
You can create webservices in HTTP or HTTPS mode, stream data, or
implement server websockets.
ok sthen@