2001-12-17 18:01:39 -05:00
|
|
|
#ifndef __CLIENT_SETUP_H
|
|
|
|
#define __CLIENT_SETUP_H
|
2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
1999-12-29 09:20:26 -05:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2003-01-16 16:08:12 -05:00
|
|
|
* Copyright (C) 1998 - 2003, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
* 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.
|
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* 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
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* $Id$
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2002-12-04 06:06:17 -05:00
|
|
|
#if !defined(WIN32) && defined(__WIN32__)
|
|
|
|
/* Borland fix */
|
1999-12-29 09:20:26 -05:00
|
|
|
#define WIN32
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
2002-02-20 08:46:53 -05:00
|
|
|
#ifdef VMS
|
2002-02-20 18:24:04 -05:00
|
|
|
#include "config-vms.h"
|
2002-02-20 08:46:53 -05:00
|
|
|
#else
|
1999-12-29 09:20:26 -05:00
|
|
|
#include "config.h" /* the configure script results */
|
2002-02-20 08:46:53 -05:00
|
|
|
#endif
|
1999-12-29 09:20:26 -05:00
|
|
|
#else
|
|
|
|
#ifdef WIN32
|
|
|
|
/* include the hand-modified win32 adjusted config.h! */
|
|
|
|
#include "config-win32.h"
|
|
|
|
#endif
|
2001-11-29 07:47:41 -05:00
|
|
|
#ifdef macintosh
|
|
|
|
/* this is not the same as Mac OS X */
|
|
|
|
#include "config-mac.h"
|
|
|
|
#endif
|
2002-04-08 18:44:33 -04:00
|
|
|
#ifdef __riscos__
|
|
|
|
#include "config-riscos.h"
|
|
|
|
#endif
|
1999-12-29 09:20:26 -05:00
|
|
|
#endif
|
|
|
|
|
2003-07-29 07:07:38 -04:00
|
|
|
#ifdef CURLDEBUG
|
|
|
|
/* This is an ugly hack for CURLDEBUG conditions only. We need to include
|
2003-04-15 10:01:57 -04:00
|
|
|
the file here, since it might set the _FILE_OFFSET_BITS define, which must
|
|
|
|
be set BEFORE all normal system headers. */
|
|
|
|
#include "../lib/setup.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2003-11-07 02:02:35 -05:00
|
|
|
#ifndef TRUE
|
|
|
|
#define TRUE 1
|
|
|
|
#endif
|
|
|
|
#ifndef FALSE
|
|
|
|
#define FALSE 0
|
|
|
|
#endif
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
#ifndef OS
|
|
|
|
#define OS "unknown"
|
|
|
|
#endif
|
|
|
|
|
2001-09-17 10:10:38 -04:00
|
|
|
#if !defined(fileno) && !defined(WIN32) /* sunos 4 have this as a macro! */
|
1999-12-29 09:20:26 -05:00
|
|
|
int fileno( FILE *stream);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
#define DIR_CHAR "\\"
|
|
|
|
#define DOT_CHAR "_"
|
|
|
|
#else
|
2000-03-19 14:55:02 -05:00
|
|
|
#ifdef __EMX__
|
|
|
|
/* 20000318 mgs
|
|
|
|
* OS/2 supports leading dots in filenames if the volume is formatted
|
|
|
|
* with JFS or HPFS. */
|
|
|
|
#define DIR_CHAR "\\"
|
|
|
|
#define DOT_CHAR "."
|
|
|
|
#else
|
|
|
|
|
2003-05-21 04:08:48 -04:00
|
|
|
#ifdef DJGPP
|
2003-07-05 09:13:49 -04:00
|
|
|
#include <tcp.h>
|
|
|
|
#ifdef word
|
|
|
|
#undef word
|
|
|
|
#endif
|
2003-05-21 04:08:48 -04:00
|
|
|
#define DIR_CHAR "/"
|
|
|
|
#define DOT_CHAR "_"
|
|
|
|
#else
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
#define DIR_CHAR "/"
|
|
|
|
#define DOT_CHAR "."
|
|
|
|
|
2003-05-21 04:08:48 -04:00
|
|
|
#endif /* !DJGPP */
|
|
|
|
#endif /* !__EMX__ */
|
|
|
|
#endif /* !WIN32 */
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2002-04-08 18:44:33 -04:00
|
|
|
#ifdef __riscos__
|
|
|
|
#define USE_ENVIRONMENT
|
|
|
|
#endif
|
|
|
|
|
2003-10-05 11:05:04 -04:00
|
|
|
#ifdef __BEOS__
|
|
|
|
#define typedef_bool
|
|
|
|
#endif
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
#endif /* __SETUP_H */
|