2004-01-13 03:35:57 -05:00
|
|
|
#ifndef CURL_CONFIG_AMIGAOS_H
|
|
|
|
#define CURL_CONFIG_AMIGAOS_H
|
2007-02-28 09:45:48 -05:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
|
|
|
* Copyright (C) 1998 - 2007, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
|
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
|
|
|
*
|
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifdef __AMIGA__ /* Any AmigaOS flavour */
|
2004-01-13 03:35:57 -05:00
|
|
|
|
2004-04-25 11:21:16 -04:00
|
|
|
/* Define to 1 if you want the built-in manual */
|
|
|
|
#define USE_MANUAL 1
|
|
|
|
|
2003-12-10 08:54:12 -05:00
|
|
|
#define OS "AmigaOS"
|
|
|
|
|
2009-06-18 20:41:03 -04:00
|
|
|
#define HAVE_CLOSESOCKET_CAMEL 1
|
2004-10-06 03:50:18 -04:00
|
|
|
#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
|
2006-10-14 08:01:44 -04:00
|
|
|
#define HAVE_STRUCT_TIMEVAL 1
|
2005-07-13 14:06:40 -04:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
# define HAVE_TERMIOS_H 1
|
|
|
|
# define HAVE_FTRUNCATE 1
|
|
|
|
#endif
|
2004-10-06 03:50:18 -04:00
|
|
|
|
|
|
|
#define HAVE_PWD_H 1
|
2003-12-10 08:54:12 -05:00
|
|
|
|
|
|
|
#ifndef F_OK
|
|
|
|
# define F_OK 0
|
|
|
|
#endif
|
2005-07-13 14:06:40 -04:00
|
|
|
#ifndef O_RDONLY
|
|
|
|
# define O_RDONLY 0x0000 /* open for reading only */
|
|
|
|
#endif
|
2004-01-13 03:35:57 -05:00
|
|
|
#ifndef LONG_MAX
|
2004-10-06 03:50:18 -04:00
|
|
|
# define LONG_MAX 0x7fffffffL /* max value for a long */
|
2004-01-13 03:35:57 -05:00
|
|
|
#endif
|
|
|
|
#ifndef LONG_MIN
|
2004-10-06 03:50:18 -04:00
|
|
|
# define LONG_MIN (-0x7fffffffL-1) /* min value for a long */
|
2004-01-13 03:35:57 -05:00
|
|
|
#endif
|
2003-12-10 08:54:12 -05:00
|
|
|
|
2010-02-26 13:32:46 -05:00
|
|
|
#define SIZEOF_INT 4
|
|
|
|
#define SIZEOF_SHORT 2
|
|
|
|
|
2007-02-28 09:45:48 -05:00
|
|
|
#endif /* __AMIGA__ */
|
2004-01-13 03:35:57 -05:00
|
|
|
#endif /* CURL_CONFIG_AMIGAOS_H */
|