wget/src/sysdep.h

170 lines
4.9 KiB
C
Raw Normal View History

1999-12-02 02:42:23 -05:00
/* Dirty system-dependent hacks.
Copyright (C) 1995, 1996, 1997, 1998, 2000 Free Software Foundation, Inc.
1999-12-02 02:42:23 -05:00
This file is part of Wget.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
/* This file is included by wget.h. Random .c files need not include
it. */
#ifndef SYSDEP_H
#define SYSDEP_H
/* We need these to be playing with various stuff. */
#ifdef TIME_WITH_SYS_TIME
# include <sys/time.h>
# include <time.h>
#else /* not TIME_WITH_SYS_TIME_H */
#ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
#else /* not HAVE_SYS_TIME_H */
# include <time.h>
#endif /* HAVE_SYS_TIME_H */
#endif /* TIME_WITH_SYS_TIME_H */
#include <sys/types.h>
#include <sys/stat.h>
#ifdef WINDOWS
/* Windows doesn't have some functions. Include mswindows.h so we get
their declarations, as well as some additional declarations and
macros. This must come first, so it can set things up. */
#include <mswindows.h>
#endif /* WINDOWS */
2001-01-03 10:14:02 -05:00
/* Watcom-specific stuff. In practice this is probably specific to
Windows, although Watcom exists under other OS's too. For that
reason, we keep this here. */
#ifdef __WATCOMC__
/* Watcom has its own alloca() defined in malloc.h malloc.h needs to
be included in the sources to prevent 'undefined external' errors
at the link phase. */
# include <malloc.h>
/* io.h defines unlink() and chmod(). We put this here because it's
way too obscure to require all the .c files to observe. */
# include <io.h>
#endif /* __WATCOMC__ */
/* Needed for compilation under OS/2: */
#ifdef __EMX__
1999-12-02 02:42:23 -05:00
#ifndef S_ISLNK
# define S_ISLNK(m) 0
#endif
#ifndef lstat
# define lstat stat
#endif
#endif /* __EMX__ */
1999-12-02 02:42:23 -05:00
/* Reportedly, stat() macros are broken on some old systems. Those
systems will have to fend for themselves, as I will not introduce
new code to handle it.
However, I will add code for *missing* macros, and the following
are missing from many systems. */
#ifndef S_ISLNK
# define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
#endif
#ifndef S_ISDIR
# define S_ISDIR(m) (((m) & (_S_IFMT)) == (_S_IFDIR))
#endif
#ifndef S_ISREG
# define S_ISREG(m) (((m) & _S_IFMT) == _S_IFREG)
#endif
/* Bletch! SPARC compiler doesn't define sparc (needed by
arpa/nameser.h) when in -Xc mode. Luckily, it always defines
__sparc. */
#ifdef __sparc
#ifndef sparc
#define sparc
#endif
#endif
/* mswindows.h defines these. */
#ifndef READ
# define READ(fd, buf, cnt) read ((fd), (buf), (cnt))
#endif
#ifndef WRITE
# define WRITE(fd, buf, cnt) write ((fd), (buf), (cnt))
#endif
#ifndef REALCLOSE
# define REALCLOSE(x) close (x)
#endif
#define CLOSE(x) \
do { \
REALCLOSE (x); \
DEBUGP (("Closing fd %d\n", x)); \
} while (0)
/* Define a "very long" type useful for storing large non-negative
integers, e.g. the total number of bytes downloaded. This needs to
be an integral type at least 64 bits wide. On the machines where
`long' is 64-bit, we use long. Otherwise, we check whether `long
long' is available and if yes, use that. Otherwise, we give up and
just use `long'. */
#if (SIZEOF_LONG >= 8) || !defined(HAVE_LONG_LONG)
# define VERY_LONG_TYPE unsigned long
# define VERY_LONG_FORMAT "%lu"
#else /* long is smaller than 8 bytes, but long long is available. */
# define VERY_LONG_TYPE unsigned long long
# define VERY_LONG_FORMAT "%llu"
#endif /* use long long */
1999-12-02 02:42:23 -05:00
/* Defined in cmpt.c: */
#ifndef HAVE_STRERROR
char *strerror ();
#endif
#ifndef HAVE_STRCASECMP
int strcasecmp ();
#endif
#ifndef HAVE_STRNCASECMP
int strncasecmp ();
#endif
#ifndef HAVE_STRSTR
char *strstr ();
#endif
#ifndef HAVE_STRPTIME
char *strptime ();
#endif
2000-11-04 17:49:46 -05:00
#ifndef HAVE_VSNPRINTF
int vsnprintf ();
#endif
1999-12-02 02:42:23 -05:00
/* SunOS brain damage -- for some reason, SunOS header files fail to
declare the functions below, which causes all kinds of problems
(compiling errors) with pointer arithmetic and similar.
This used to be only within `#ifdef STDC_HEADERS', but it got
tripped on other systems (AIX), thus causing havoc. Fortunately,
SunOS appears to be the only system braindamaged that badly, so I
added an extra `#ifdef sun' guard. */
#ifndef STDC_HEADERS
#ifdef sun
#ifndef __cplusplus
char *strstr ();
char *strchr ();
char *strrchr ();
char *strtok ();
char *strdup ();
void *memcpy ();
#endif /* not __cplusplus */
#endif /* sun */
#endif /* STDC_HEADERS */
#endif /* SYSDEP_H */