1#ifndef __SRC_CONFIG_MAC_H
2#define __SRC_CONFIG_MAC_H
3/***************************************************************************
4 *                                  _   _ ____  _
5 *  Project                     ___| | | |  _ \| |
6 *                             / __| | | | |_) | |
7 *                            | (__| |_| |  _ <| |___
8 *                             \___|\___/|_| \_\_____|
9 *
10 * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
11 *
12 * This software is licensed as described in the file COPYING, which
13 * you should have received as part of this distribution. The terms
14 * are also available at http://curl.haxx.se/docs/copyright.html.
15 *
16 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
17 * copies of the Software, and permit persons to whom the Software is
18 * furnished to do so, under the terms of the COPYING file.
19 *
20 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21 * KIND, either express or implied.
22 *
23 ***************************************************************************/
24
25/* =================================================================== */
26/*   src/config-mac.h - Hand crafted config file for Mac OS 9          */
27/* =================================================================== */
28/*  On Mac OS X you must run configure to generate curl_config.h file  */
29/* =================================================================== */
30
31/* Define to 1 if you want the built-in manual */
32#define USE_MANUAL 1
33
34#define HAVE_UNISTD_H           1
35#define HAVE_ERRNO_H            1
36#define HAVE_FCNTL_H            1
37#define HAVE_UTIME_H            1
38#define HAVE_SYS_UTIME_H        1
39
40#define HAVE_SETVBUF            1
41#define HAVE_UTIME              1
42#define HAVE_FTRUNCATE          1
43
44#define HAVE_TIME_H             1
45#define HAVE_SYS_TIME_H         1
46#define TIME_WITH_SYS_TIME      1
47#define HAVE_STRUCT_TIMEVAL     1
48
49#define SIZEOF_INT              4
50#define SIZEOF_SHORT            2
51
52#define main(x,y) curl_main(x,y)
53
54/* we provide our own strdup prototype */
55char *strdup(char *s1);
56
57#endif /* __SRC_CONFIG_MAC_H */
58