curl/src/setup.h

97 lines
2.4 KiB
C
Raw Normal View History

#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 ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
* 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
#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
#ifdef __riscos__
#include "config-riscos.h"
#endif
1999-12-29 09:20:26 -05:00
#endif
#ifdef MALLOCDEBUG
/* This is an ugly hack for MALLOCDEBUG conditions only. We need to include
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>
1999-12-29 09:20:26 -05:00
#ifndef OS
#define OS "unknown"
#endif
#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
#ifdef DJGPP
#define DIR_CHAR "/"
#define DOT_CHAR "_"
#else
1999-12-29 09:20:26 -05:00
#define DIR_CHAR "/"
#define DOT_CHAR "."
#endif /* !DJGPP */
#endif /* !__EMX__ */
#endif /* !WIN32 */
1999-12-29 09:20:26 -05:00
#ifdef __riscos__
#define USE_ENVIRONMENT
#endif
1999-12-29 09:20:26 -05:00
#endif /* __SETUP_H */