#ifndef HEADER_CURL_CONFIG_MAC_H1#define HEADER_CURL_CONFIG_MAC_H2/***************************************************************************3* _ _ ____ _4* Project ___| | | | _ \| |5* / __| | | | |_) | |6* | (__| |_| | _ <| |___7* \___|\___/|_| \_\_____|8*9* Copyright (C) Daniel Stenberg, <[email protected]>, et al.10*11* This software is licensed as described in the file COPYING, which12* you should have received as part of this distribution. The terms13* are also available at https://curl.se/docs/copyright.html.14*15* You may opt to use, copy, modify, merge, publish, distribute and/or sell16* copies of the Software, and permit persons to whom the Software is17* furnished to do so, under the terms of the COPYING file.18*19* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY20* KIND, either express or implied.21*22* SPDX-License-Identifier: curl23*24***************************************************************************/2526/* =================================================================== */27/* Hand crafted config file for Mac OS 9 */28/* =================================================================== */29/* On macOS you must run configure to generate curl_config.h file */30/* =================================================================== */3132#ifndef CURL_OS33#define CURL_OS "mac"34#endif3536#include <ConditionalMacros.h>37#if TYPE_LONGLONG38#define HAVE_LONGLONG 139#endif4041/* Define if you want the built-in manual */42#define USE_MANUAL 14344#define HAVE_NETINET_IN_H 145#define HAVE_NETDB_H 146#define HAVE_ARPA_INET_H 147#define HAVE_UNISTD_H 148#define HAVE_NET_IF_H 149#define HAVE_SYS_TYPES_H 150#define HAVE_GETTIMEOFDAY 151#define HAVE_FCNTL_H 152#define HAVE_UTIME_H 153#define HAVE_SYS_UTIME_H 154#define HAVE_SYS_IOCTL_H 155#define HAVE_ALARM 156#define HAVE_FTRUNCATE 157#define HAVE_UTIME 158#define HAVE_SELECT 159#define HAVE_SOCKET 160#define HAVE_STRUCT_TIMEVAL 16162#define HAVE_SIGACTION 16364#define CURL_DISABLE_LDAP 16566#define HAVE_IOCTL_FIONBIO 16768#define SIZEOF_INT 469#define SIZEOF_LONG 470#define SIZEOF_SIZE_T 471#ifdef HAVE_LONGLONG72#define SIZEOF_CURL_OFF_T 873#else74#define SIZEOF_CURL_OFF_T 475#endif7677#define HAVE_RECV 178#define RECV_TYPE_ARG1 int79#define RECV_TYPE_ARG2 void *80#define RECV_TYPE_ARG3 size_t81#define RECV_TYPE_ARG4 int82#define RECV_TYPE_RETV ssize_t8384#define HAVE_SEND 185#define SEND_TYPE_ARG1 int86#define SEND_QUAL_ARG2 const87#define SEND_TYPE_ARG2 void *88#define SEND_TYPE_ARG3 size_t89#define SEND_TYPE_ARG4 int90#define SEND_TYPE_RETV ssize_t9192#endif /* HEADER_CURL_CONFIG_MAC_H */939495