diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-12-10 13:54:12 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-12-10 13:54:12 +0000 |
commit | 29d3deaee84bbd4944a8318d5f3867cf9a6df140 (patch) | |
tree | 86fbebe02301fddea84c684690857db1eb1125c3 | |
parent | 6c56340e1ab7c7fc0e98be2b074a38040ab4777e (diff) |
native amiga support by Diego Casorran
-rw-r--r-- | src/config-amigaos.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/config-amigaos.h b/src/config-amigaos.h new file mode 100644 index 000000000..38a52d22f --- /dev/null +++ b/src/config-amigaos.h @@ -0,0 +1,30 @@ + +#define OS "AmigaOS" + +#define HAVE_UNISTD_H 1 +#define HAVE_STRDUP 1 +#define HAVE_UTIME 1 +#define HAVE_UTIME_H 1 +#define HAVE_SYS_TYPES_H 1 +#define HAVE_SYS_SOCKET_H 1 +#define HAVE_WRITABLE_ARGV 1 +#define HAVE_SYS_TIME_H 1 +#define HAVE_TIME_H 1 +#define TIME_WITH_SYS_TIME 1 +#define HAVE_TERMIOS_H 1 + +#define HAVE_PWD_H 1 + +/* futher implementation?... */ +//#define HAVE_TCGETATTR 1 +//#define HAVE_TCSETATTR 1 + +/* futher usergroup.library usage?... */ +//#define HAVE_GETPWUID 1 +//#define HAVE_GETEUID 1 + + +#ifndef F_OK +# define F_OK 0 +#endif + |