diff options
author | Nicolò Balzarotti <nicolo@nixo.xyz> | 2020-04-02 11:50:27 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-04-07 17:31:58 +0300 |
commit | 633360e00e2418fe243c6179c944f81a51ca74de (patch) | |
tree | cb74025def847b8124fd4432255a3abd600580e7 | |
parent | b60e2d480ad5d55b94e1ad5b52fca28a85503771 (diff) | |
download | guix-633360e00e2418fe243c6179c944f81a51ca74de.tar.gz guix-633360e00e2418fe243c6179c944f81a51ca74de.zip |
gnu: http-parser: Add support for RFC 3986.
Fixes parsing of colon followed by empty port, allowed by RFC 3986
specifications. Fedora is applying it to system http-parser too.
* gnu/packages/web.scm (http-parser)[source]: Add patch from Fedora.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
-rw-r--r-- | gnu/packages/web.scm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 02bad3cd4c..5e393db463 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -5818,6 +5818,20 @@ into your tests. It automatically starts up a HTTP server in a separate thread (uri (git-reference (url home-page) (commit (string-append "v" version)))) (file-name (git-file-name name version)) + (patches | ||
2015-05-19 | build: Make sure $CXX supports C++11. | Ludovic Courtès |