This patch is from Debian, named '0006-arm64.patch' Author: Riku Voipio Description: fuse_kernel.h: clean includes Use for linux and define types used for other operating systems using types (Closes: #752081). diff -Naurp fuse.orig/include/fuse_kernel.h fuse/include/fuse_kernel.h --- fuse.orig/include/fuse_kernel.h +++ fuse/include/fuse_kernel.h @@ -88,12 +88,16 @@ #ifndef _LINUX_FUSE_H #define _LINUX_FUSE_H -#include +#ifdef __linux__ +#include +#else +#include #define __u64 uint64_t #define __s64 int64_t #define __u32 uint32_t #define __s32 int32_t #define __u16 uint16_t +#endif /* * Version negotiation: on value='koszko' selected='selected'>koszko Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
.com>
AgeCommit message (Expand)Author
2022-09-16gnu: nfs-utils: Remove unused input....* gnu/packages/nfs.scm (nfs-utils)[inputs]: Remove LIBNFSIDMAP, which is part of nfs-utils nowadays. Marius Bakke
Mehmet Tekman
2022-10-07gnu: tigervnc-server: Patch and wrap vncserver script....* gnu/packages/vnc.scm (tigervnc-server): [phases]{patch-paths, wrap-vncserver}: New phases. [inputs]: Add font-alias, guile-3.0, util-linux and xinit. Maxim Cournoyer
2022-10-07gnu: tigervnc-server: Disable tests via #:tests?....* gnu/packages/vnc.scm (tigervnc-server) [tests?]: Set to #f. [phases]: Restore check phase. Maxim Cournoyer
2022-10-07gnu: tigervnc-server: Adjust PAM config....* gnu/packages/vnc.scm (tigervnc-server) [phases]{adjust-pam-config}: New phase. Maxim Cournoyer
2022-10-07gnu: tigervnc-server: Move source production into origin snippet....This will make it possible to patch command references in source files, and also makes it more transparent as to what sources get used. * gnu/packages/vnc.scm (tigervnc-server): Re-flow comment. [source]: Inherit from xorg-server. Add a snippet. Use a patch to apply the xserver patch. Fix file name. [phases]{copy-tvnc-xserver, patch-xserver}: Delete phases. {build-tigervnc, install-tigervnc-aux}: Adjust accordingly. Maxim Cournoyer
2022-10-07gnu: tigervnc-server: Use new style inputs, gexps....* gnu/packages/vnc.scm (%tigervnc-client-source): New variable. (tigervnc-server): Move input fields after arguments. [native-inputs]: Use new style and 'modify-inputs'. Do not add tigervnc-client regular inputs. [configure-flags]: Use gexps, cons* instead of append. [phases]: Use gexps. {check}: Replace smiley with an explanatory comment. {copy-tvnc-xserver}: Adjust default Makefile variables, which simplifies needed bindings in other phases. {build-tigervnc, build, install-tigervnc-aux, install}: Remove let*-bound variables. {build-tigervnc, build}: Honor PARALLEL-BUILD?. Maxim Cournoyer
2022-09-02gnu: Add turbovnc....* gnu/packages/vnc.scm (turbovnc): New variable. * gnu/packages/patches/turbovnc-custom-paths.patch: New file. * gnu/packages/patches/turbovnc-find-system-packages.patch: Likewise. * gnu/local.mk (dist_patch_DATA): Register them. Maxim Cournoyer