aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorLeo Famulari <leo@famulari.name>2021-04-28 12:40:15 -0400
committerLeo Famulari <leo@famulari.name>2021-04-28 16:32:54 -0400
commit75d8067779ed7d46cd777e4052ada8f9fca5bc3c (patch)
treec58f93398b412d9b145817901c85c4643c4be153 /configure.ac
parent3d1c37122e2971065d4b793d9029e7f1be71a4d3 (diff)
downloadguix-75d8067779ed7d46cd777e4052ada8f9fca5bc3c.tar.gz
guix-75d8067779ed7d46cd777e4052ada8f9fca5bc3c.zip
gnu: linux-libre 4.19: Update to 4.19.189.
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.189. (linux-libre-4.19-pristine-source): Update hash.
Diffstat (limited to 'configure.ac')
0 files changed, 0 insertions, 0 deletions
specification->package): Add "guile-zlib" and "guile-lzlib" and remove "zlib" and "lzlib", (compiled-guix): remove "zlib" and "lzlib" arguments and add guile-zlib and guile-lzlib to the dependencies, also do not pass "zlib" and "lzlib" to "make-config.scm" procedure, (make-config.scm): remove "zlib" and "lzlib" arguments as well as %libz and %liblz variables. * guix/utils.scm (lzip-port): Use (lzlib) instead of (guix lzlib) and do not check for lzlib availability. * guix/zlib.scm: Remove it. * m4/guix.m4 (GUIX_LIBZ_LIBDIR, GUIX_LIBLZ_FILE_NAME): Remove them. * tests/lzlib.scm: Use (zlib) instead of (guix zlib) and (lzlib) instead of (guix lzlib), and do not check for zlib and lzlib availability. * tests/publish.scm: Ditto. * tests/substitute.scm: Do not check for lzlib availability. * tests/utils.scm: Ditto. * tests/zlib.scm: Remove it. Mathieu Othacehe 2019-06-20utils: canonical-newline-port: Fix handling of carriage return at buffer end....Prior to this change the added test fails for me locally at byte 1024. It might depend on some default buffer sizes. Fixes <https://bugs.gnu.org/35863>. * tests/utils.scm ("canonical-newline-port-1024"): Add test. * guix/utils.scm (canonical-newline-port): Correct comments on CR/LF. Remove CR even when they're at the end of the buffer. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Robert Vollmert