Sergey Bugaev, le mer. 10 mai 2023 14:51:55 +0300, a ecrit: > On Wed, May 10, 2023 at 1:43 PM Samuel Thibault <samuel.thiba...@gnu.org> > wrote: > > For now you'll just be faced with library dependencies, so I'd say just > > unpack all lib*.deb (+zlib1g*.deb) and you'll be done. > > I see, thanks. > > By the way, I'm now getting > > ../../isofs/lookup.c:224:1: error: conflicting types for > ‘diskfs_get_directs’; have ‘error_t(struct node *, int, int, char > **, mach_msg_type_number_t *, vm_size_t, int *)’ {aka ‘error_t(struct > node *, int, int, char **, unsigned int *, long unsigned int, int > *)’} > 224 | diskfs_get_directs (struct node *dp, > | ^~~~~~~~~~~~~~~~~~ > In file included from ../include/hurd/diskfs.h:1, > from ../../isofs/isofs.h:24, > from ../../isofs/lookup.c:24: > ../../isofs/../libdiskfs/diskfs.h:403:9: note: previous declaration of > ‘diskfs_get_directs’ with type ‘error_t(struct node *, int, int, > char **, size_t *, vm_size_t, int *)’ {aka ‘error_t(struct node *, > int, int, char **, long unsigned int *, long unsigned int, int *)’} > 403 | error_t diskfs_get_directs (struct node *dp, int entry, int n, > | ^~~~~~~~~~~~~~~~~~ > > which seems to be caused by your > cb5ab7708b6b7f9941a9ba914ede153601c5be49 "More prototypes fixes". Does > it build for you?
Ah, that was a conflict between your tuned approach and my bulk approach :) I have fixed it, thanks. Samuel