mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
a10cce5246
* gnu/packages/web.scm (netsurf): Update to 3.11. [arguments]: Adjust to new source. Netsurf's JS engine cannot handle DuckDuckGo's redirect urls, so replace websearch form with post to DuckDuckGo Lite. (netsurf-buildsystem): Update to 1.10 (libparserutils): Update to 0.2.5. (hubbub): Update to 0.3.8. [source]: Remove hubbub-maybe-uninitialized.patch. (libcss): Update to 0.9.2. [source]: Remove snippet. Add patch for tests. (libdom): Update to 0.4.2. (libsvgtiny): Update to 0.1.8. (libnsbmp): Update to 0.1.7. (libnsgif): Update to 1.0.0. (libnsutils): Update to 0.1.1. (libnspsl): Update to 0.1.7. (nsgenbind): Update to 0.9. * gnu/packages/patches/netsurf-message-timestamp.patch: Adjust to latest source. * gnu/packages/patches/hubbub-maybe-uninitialized.patch: Delete patch. * gnu/packages/patches/libcss-check-format.patch: New patch. * gnu/local.mk (dist_patch_DATA): Adjust. Change-Id: I5834b0418270309aa30b6cd0a5a307e20c00fd4a
13 lines
424 B
Diff
13 lines
424 B
Diff
Submitted upstream at https://bugs.netsurf-browser.org/mantis/view.php?id=2870
|
|
|
|
--- libcss-0.9.2/test/dump.h.orig
|
|
+++ libcss-0.9.2/test/dump.h
|
|
@@ -131,7 +131,7 @@ void dump_rule_media(css_rule_media *s, char **buf, size_t *buflen)
|
|
char *ptr = *buf;
|
|
css_rule *rule;
|
|
|
|
- ptr += sprintf(ptr, "| @media %s%03lx",
|
|
+ ptr += sprintf(ptr, "| @media %s%03" PRIx64,
|
|
s->media->negate_type ? "not " : "",
|
|
s->media->type);
|
|
|