diff options
author | Yang Tse <yangsita@gmail.com> | 2007-02-28 14:45:48 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2007-02-28 14:45:48 +0000 |
commit | be8a5d0aef8eef4236d7cd6ce2cd7eabf74006f4 (patch) | |
tree | e6c9b255bd43b7c5ec553731aa2e0f2f815a1193 /lib/config-amigaos.h | |
parent | dd433679e6cc5dbdf0ee26cc1ef111c3cfe64498 (diff) | |
download | curl-be8a5d0aef8eef4236d7cd6ce2cd7eabf74006f4.tar.gz |
proper symbol definition check for all AmigaOS flavours
Diffstat (limited to 'lib/config-amigaos.h')
-rw-r--r-- | lib/config-amigaos.h | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/lib/config-amigaos.h b/lib/config-amigaos.h index 0e48a206a..1859b2f6b 100644 --- a/lib/config-amigaos.h +++ b/lib/config-amigaos.h @@ -1,6 +1,29 @@ - #ifndef LIBCURL_CONFIG_AMIGAOS_H #define LIBCURL_CONFIG_AMIGAOS_H +/*************************************************************************** + * _ _ ____ _ + * 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. + * + * $Id$ + ***************************************************************************/ + +#ifdef __AMIGA__ /* Any AmigaOS flavour */ #define HAVE_ARPA_INET_H 1 #define HAVE_GETHOSTBYADDR 1 @@ -116,4 +139,5 @@ #define SEND_TYPE_ARG4 int #define SEND_TYPE_RETV int +#endif /* __AMIGA__ */ #endif /* LIBCURL_CONFIG_AMIGAOS_H */ |