From: Tobias Geerinckx-Rice Date: Sat, 14 Nov 2020 15:40:56 +0100 Subject: [PATCH] gnu: perl-www-curl: Fix struct void* usage. Copied verbatim from Gentoo[0]. Fixes: Curl.xs:76:12: error: expected ‘{’ before ‘void’ struct void *curlm; ^~~~ Curl.xs:76:12: error: two or more data types in declaration specifiers [0]: https://694466.bugs.gentoo.org/attachment.cgi?id=595098 --- WWW-Curl-4.17/Curl.xs 2014-02-21 18:08:30.000000000 +0200 +++ WWW-Curl-4.17.new/Curl.xs 2019-11-05 21:44:55.434395739 +0200 @@ -73,7 +73,7 @@ typedef struct { #ifdef __CURL_MULTI_H struct CURLM *curlm; #else - struct void *curlm; + void *curlm; #endif } perl_curl_multi; '> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/genimage.scm
AgeCommit message (Expand)Author
2024-09-28gnu: genimage: Update to version 18....* gnu/packages/genimage.scm (genimage): Update from 15 to 18. [arguments]: Disable some tests. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Herman Rimm
2024-08-31gnu: genimage: Import the correct set of modules....* gnu/packages/genimage.scm (genimage) [arguments] <modules>: Replace %default-gnu-imported-modules with %default-gnu-modules. Change-Id: I65a2e2b371ae9b6f822ba54d09ba6741e403432b Maxim Cournoyer
2024-08-31build-systems: gnu: Export %default-gnu-imported-modules and %default-gnu-mod......Until now users would have to cargo cult or inspect the private %default-modules variable of (guix build-systems gnu) to discover which modules to include when extending the used modules via the #:modules argument. The renaming was automated via the command: $ git grep -l %gnu-build-system-modules | xargs sed 's/%gnu-build-system-modules/%default-gnu-imported-modules/' -i * guix/build-system/gnu.scm (%gnu-build-system-modules): Rename to... (%default-gnu-imported-modules): ... this. (%default-modules): Rename to... (%default-gnu-modules): ... this. Export. (dist-package, gnu-build, gnu-cross-build): Adjust accordingly. Change-Id: Idef307fff13cb76f3182d782b26e1cd3a5c757ee Maxim Cournoyer