2008-09-04 21:27:24 -04:00
|
|
|
#ifndef __SRC_CONFIG_MAC_H
|
|
|
|
#define __SRC_CONFIG_MAC_H
|
|
|
|
|
2009-07-14 09:25:14 -04:00
|
|
|
/* =================================================================== */
|
|
|
|
/* src/config-mac.h - Hand crafted config file for Mac OS 9 */
|
|
|
|
/* =================================================================== */
|
|
|
|
/* On Mac OS X you must run configure to generate curl_config.h file */
|
|
|
|
/* =================================================================== */
|
2008-09-04 21:27:24 -04:00
|
|
|
|
2004-04-25 11:21:16 -04:00
|
|
|
/* Define to 1 if you want the built-in manual */
|
|
|
|
#define USE_MANUAL 1
|
|
|
|
|
2004-10-06 03:50:18 -04:00
|
|
|
#define HAVE_UNISTD_H 1
|
|
|
|
#define HAVE_FCNTL_H 1
|
|
|
|
#define HAVE_UTIME_H 1
|
|
|
|
#define HAVE_SYS_UTIME_H 1
|
2001-12-04 01:52:19 -05:00
|
|
|
|
2004-10-06 03:50:18 -04:00
|
|
|
#define HAVE_SETVBUF 1
|
|
|
|
#define HAVE_UTIME 1
|
2005-03-04 19:54:16 -05:00
|
|
|
#define HAVE_FTRUNCATE 1
|
2001-12-04 01:52:19 -05:00
|
|
|
|
2006-10-14 08:01:44 -04:00
|
|
|
#define HAVE_TIME_H 1
|
|
|
|
#define HAVE_SYS_TIME_H 1
|
|
|
|
#define TIME_WITH_SYS_TIME 1
|
|
|
|
#define HAVE_STRUCT_TIMEVAL 1
|
|
|
|
|
2010-02-26 13:32:46 -05:00
|
|
|
#define SIZEOF_INT 4
|
|
|
|
#define SIZEOF_SHORT 2
|
|
|
|
|
2001-11-29 07:40:36 -05:00
|
|
|
#define main(x,y) curl_main(x,y)
|
|
|
|
|
|
|
|
/* we provide our own strdup prototype */
|
2001-11-30 04:29:31 -05:00
|
|
|
char *strdup(char *s1);
|
2008-09-04 21:27:24 -04:00
|
|
|
|
|
|
|
#endif /* __SRC_CONFIG_MAC_H */
|