Then I guess it's a general dependency that is missing, not specific to 64-bit.
AMIGASYSTEMDistro MaintainerPosted
3 days agoDeadwood even on AROS 32Bit gives the same error!
It looks like you are missing some 3rd party libraries - I guess they are not yet ported to 64-bit.
AMIGASYSTEMDistro MaintainerPosted
1 month agoThank you retrofaza I have noticed and tested your conversions!
AMIGASYSTEMDistro MaintainerPosted
1 month agoTried to use Scout Italian Catalog v3.6 for OS/OS4 on AROS 68k/x86 and found it not compatible, AROS 68k/X86 has a more up-to-date version v3.7, I also corrected catalog 3.6 but it only works with version 3.6.
I attach screenshots showing the corrected error, and Scout 3.6 (OS3 version well localised in Italian) and Scout 3.7 both running on AROS 68k
On Contrib there is only the French catalogs, but no .cd and File.ct files are included in the package, I tried to convert the French catalog to a .cd file, but it doesn't seem to be created right, anyway I'm trying to fix it
You do not have access to view attachments
Sorry, no idea how to proceed further.
AMIGASYSTEMDistro MaintainerPosted
2 months agoI don't know if I did it right, I deleted
#ifndef _ASPRINTF_H_
#define _ASPRINTF_H_
Now the compilation has continued but I have this new error!
You do not have access to view attachments
AMIGASYSTEMDistro MaintainerPosted
2 months agoIn fact there was a strange character that the editor had unintentionally inserted.
I have now deleted the commented functions, left <exec/types.h> at the top of the file, now the error is different!
Also tried deleting <exec/types.h> , the error is the same
You do not have access to view attachments
It seems that the way you made your first change (commeting out two functions) triggered some problem. Try removing those functions completly instead of commenting them out.
AMIGASYSTEMDistro MaintainerPosted
2 months agoMoved start of file <exec/types.h>, now the error seems to be different !
You do not have access to view attachments
Try moving #include <exec/types.h> to top of the file.
AMIGASYSTEMDistro MaintainerPosted
2 months agoYes correct same error, this is the change I made:
#if !defined(__amigaos4__) && (defined(__AMIGA__) || defined(__AROS__))
#include <exec/types.h>
#include <proto/bsdsocket.h>
#undef getaddrinfo
#undef freeaddrinfo
#define close CloseSocket
#endif
It's the same error as before.
AMIGASYSTEMDistro MaintainerPosted
2 months agoCompilation continued, but then stopped on this new error!
You do not have access to view attachments
Try adding #include <exec/types.h> before #include <proto/bsdsocket.h> in libsmb2.c
AMIGASYSTEMDistro MaintainerPosted
2 months agoCompilation continued, but then stopped on this new error!
You do not have access to view attachments
In the file ./include/asprintf.h you have definitions of functions vasprintf and asprintf. You need to comment out those functions.