Where to get necessary header and libraries from?

3 posts / 0 new
Last post
Reth
Reth's picture
Offline
Last seen: 11 years 3 weeks ago
Joined: 2011-07-09 22:16
Where to get necessary header and libraries from?

Hi everybody,

since a few years ago I got permission to use (some older version of) AMarquee-Sources for whatever need I just try to port it to AOS4.

But I did not get very far. After adjusting some includes I got errors regarding missing headers which I could not find so far within SDK folder (only partly within ixemul subfolders).

Maybe someone can give me some helping hint regarding these errors:

  1. In file included from header/server.h:5,
  2. from source/amarqueed.c:11:
  3. header/qcommon.h:25:24: error: proto/alib.h: No such file or directory
  4. header/qcommon.h:30:19: error: inetd.h: No such file or directory
  5. header/qcommon.h:32:38: error: pragmas/socket_pragmas_r.h: No such file or directory

Does anybody know where to get these files from or how to code some alternatives?

Many thanks in advance.

Bye

kas1e
kas1e's picture
Offline
Last seen: 1 year 6 months ago
Joined: 2010-11-30 15:30
@Reth proto/alib.h its an

@Reth

proto/alib.h its an old proto for os3 from geekgadgets/gcc which define BeginIO() and NewList() functions, which now are part of default os4 sdk (they in Exec). So for os4 you just can safely delete such include at all, or make an empty file with such name (i do it like that because i offten port something from os3, so instead of removing it all the time i just make an empty file for).

proto/inited.h and pragmas/socket_pragmas_r.h can be from amitcp/miami sdks , so for os4 you need for first comment them out, and for second add #include <proto/socket.h> instead. It will almost certainly cover all the stuff from those old ones.

Reth
Reth's picture
Offline
Last seen: 11 years 3 weeks ago
Joined: 2011-07-09 22:16
Thanks! This seems to work

Thanks! This seems to work out.

Log in or register to post comments