config-amigaos.h 814 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #ifndef CURL_CONFIG_AMIGAOS_H
  2. #define CURL_CONFIG_AMIGAOS_H
  3. #define OS "AmigaOS"
  4. #define HAVE_UNISTD_H 1
  5. #define HAVE_STRDUP 1
  6. #define HAVE_UTIME 1
  7. #define HAVE_UTIME_H 1
  8. #define HAVE_SYS_TYPES_H 1
  9. #define HAVE_SYS_SOCKET_H 1
  10. #define HAVE_WRITABLE_ARGV 1
  11. #define HAVE_SYS_TIME_H 1
  12. #define HAVE_TIME_H 1
  13. #define TIME_WITH_SYS_TIME 1
  14. #define HAVE_TERMIOS_H 1
  15. #define HAVE_PWD_H 1
  16. /* futher implementation?... */
  17. //#define HAVE_TCGETATTR 1
  18. //#define HAVE_TCSETATTR 1
  19. /* futher usergroup.library usage?... */
  20. //#define HAVE_GETPWUID 1
  21. //#define HAVE_GETEUID 1
  22. #ifndef F_OK
  23. # define F_OK 0
  24. #endif
  25. #ifndef LONG_MAX
  26. # define LONG_MAX 0x7fffffffL /* max value for a long */
  27. #endif
  28. #ifndef LONG_MIN
  29. # define LONG_MIN (-0x7fffffffL-1) /* min value for a long */
  30. #endif
  31. #endif /* CURL_CONFIG_AMIGAOS_H */