1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395
|
/* System includes for mtools */
#ifndef SYSINCLUDES_H
#define SYSINCLUDES_H
#include "config.h"
/***********************************************************************/
/* */
/* OS dependancies which cannot be covered by the autoconfigure script */
/* */
/***********************************************************************/
#ifdef OS_aux
/* A/UX needs POSIX_SOURCE, just as AIX does. Unlike SCO and AIX, it seems
* to prefer TERMIO over TERMIOS */
#ifndef _POSIX_SOURCE
# define _POSIX_SOURCE
#endif
#ifndef POSIX_SOURCE
# define POSIX_SOURCE
#endif
#endif
/* On AIX, we have to prefer strings.h, as string.h lacks a prototype
* for strcasecmp. On most other architectures, it's string.h which seems
* to be more complete */
#if (defined OS_aix && defined HAVE_STRINGS_H)
# undef HAVE_STRING_H
#endif
#ifdef OS_ultrix
/* on ultrix, if termios present, prefer it instead of termio */
# ifdef HAVE_TERMIOS_H
# undef HAVE_TERMIO_H
# endif
#endif
#ifdef OS_linux_gnu
/* RMS strikes again */
# ifndef OS_linux
# define OS_linux
# endif
#endif
/***********************************************************************/
/* */
/* Compiler dependancies */
/* */
/***********************************************************************/
#if defined __GNUC__ && defined __STDC__
/* gcc -traditional doesn't have PACKED, UNUSED and NORETURN */
# define PACKED __attribute__ ((packed))
# if __GNUC__ == 2 && __GNUC_MINOR__ > 6 || __GNUC__ >= 3
/* gcc 2.6.3 doesn't have "unused" */ /* mool */
# define UNUSED(x) x __attribute__ ((unused));x
# else
# define UNUSED(x) x
# endif
# define NORETURN __attribute__ ((noreturn))
#else
# define UNUSED(x) x
# define PACKED /* */
# define NORETURN /* */
#endif
/***********************************************************************/
/* */
/* Include files */
/* */
/***********************************************************************/
#include <sys/types.h>
#ifdef HAVE_STDLIB_H
# include <stdlib.h>
#endif
#include <stdio.h>
#include <ctype.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#ifdef HAVE_LIBC_H
# include <libc.h>
#endif
#ifdef HAVE_GETOPT_H
# include <getopt.h>
#else
int getopt();
extern char *optarg;
extern int optind, opterr;
#endif
#ifdef HAVE_FCNTL_H
# include <fcntl.h>
#endif
#ifdef HAVE_LIMITS_H
# include <limits.h>
#endif
#ifdef HAVE_SYS_FILE_H
# include <sys/file.h>
#endif
#ifdef HAVE_SYS_IOCTL_H
# ifndef sunos
# include <sys/ioctl.h>
#endif
#endif
/* if we don't have sys/ioctl.h, we rely on unistd to supply a prototype
* for it. If it doesn't, we'll only get a (harmless) warning. The idea
* is to get mtools compile on as many platforms as possible, but to not
* suppress warnings if the platform is broken, as long as these warnings do
* not prevent compilation */
#if TIME_WITH_SYS_TIME
# include <sys/time.h>
# include <time.h>
#else
# if HAVE_SYS_TIME_H
# include <sys/time.h>
# else
# include <time.h>
# endif
#endif
#ifndef NO_TERMIO
# ifdef HAVE_TERMIO_H
# include <termio.h>
# elif defined HAVE_SYS_TERMIO_H
# include <sys/termio.h>
# endif
# if !defined OS_ultrix || !(defined HAVE_TERMIO_H || defined HAVE_TERMIO_H)
/* on Ultrix, avoid double inclusion of both termio and termios */
# ifdef HAVE_TERMIOS_H
# include <termios.h>
# elif defined HAVE_SYS_TERMIOS_H
# include <sys/termios.h>
# endif
# endif
# ifdef HAVE_STTY_H
# include <sgtty.h>
# endif
#endif
#ifdef HAVE_SYS_PARAM_H
# include <sys/param.h>
#endif
/* Can only be done here, as BSD is defined in sys/param.h :-( */
#if defined BSD || defined __BEOS__
/* on BSD and on BEOS, we prefer gettimeofday, ... */
# ifdef HAVE_GETTIMEOFDAY
# undef HAVE_TZSET
# endif
#else /* BSD */
/* ... elsewhere we prefer tzset */
# ifdef HAVE_TZSET
# undef HAVE_GETTIMEOFDAY
# endif
#endif
#include <sys/stat.h>
#include <errno.h>
extern int errno;
#if !defined OS_netbsd && !defined OS_freebsd && !(defined __GLIBC__ && __GLIBC__ >= 2)
/* NetBSD seems to choke on this, due to a slightly non-standard definition */
extern char *sys_errlist[];
#endif
#include <pwd.h>
#ifdef HAVE_STRING_H
# include <string.h>
#else
# ifdef HAVE_STRINGS_H
# include <strings.h>
# endif
#endif
#ifdef HAVE_MEMORY_H
# include <memory.h>
#endif
#ifdef HAVE_MALLOC_H
# include <malloc.h>
#endif
#ifdef HAVE_SIGNAL_H
# include <signal.h>
#else
# ifdef HAVE_SYS_SIGNAL_H
# include <sys/signal.h>
# endif
#endif
#ifdef HAVE_UTIME_H
# include <utime.h>
#endif
#ifdef HAVE_SYS_WAIT_H
# include <sys/wait.h>
#endif
#ifdef OS_linux
# include <linux/fd.h>
#endif
/* missing functions */
#ifndef HAVE_SRANDOM
# define srandom srand48
#endif
#ifndef HAVE_RANDOM
# define random (long)lrand48
#endif
#ifndef HAVE_STRCHR
# define strchr index
#endif
#ifndef HAVE_STRRCHR
# define strrchr rindex
#endif
#define SIG_CAST RETSIGTYPE(*)()
#ifndef HAVE_STRDUP
extern char *strdup(const char *str);
#endif /* HAVE_STRDUP */
#ifndef HAVE_MEMCPY
extern char *memcpy(char *s1, const char *s2, size_t n);
#endif
#ifndef HAVE_MEMSET
extern char *memset(char *s, char c, size_t n);
#endif /* HAVE_MEMSET */
#ifndef HAVE_STRPBRK
extern char *strpbrk(const char *string, const char *brkset);
#endif /* HAVE_STRPBRK */
#ifndef HAVE_STRTOUL
unsigned long strtoul(const char *string, char **eptr, int base);
#endif /* HAVE_STRTOUL */
#ifndef HAVE_STRSPN
size_t strspn(const char *s, const char *accept);
#endif /* HAVE_STRSPN */
#ifndef HAVE_STRCSPN
size_t strcspn(const char *s, const char *reject);
#endif /* HAVE_STRCSPN */
#ifndef HAVE_STRERROR
char *strerror(int errno);
#endif
#ifndef HAVE_ATEXIT
int atexit(void (*function)(void));
#ifndef HAVE_ON_EXIT
void myexit(int code) NORETURN;
#define exit myexit
#endif
#endif
#ifndef HAVE_MEMMOVE
# define memmove(DST, SRC, N) bcopy(SRC, DST, N)
#endif
#ifndef HAVE_STRCASECMP
int strcasecmp(const char *s1, const char *s2);
#endif
#ifndef HAVE_STRNCASECMP
int strncasecmp(const char *s1, const char *s2, size_t n);
#endif
#ifndef HAVE_GETPASS
char *getpass(const char *prompt);
#endif
#ifndef __STDC__
# ifndef signed
# define signed /**/
# endif
#endif /* !__STDC__ */
/***************************************************************************/
/* */
/* Prototypes for systems where the functions exist but not the prototypes */
/* */
/***************************************************************************/
/* prototypes which might be missing on some platforms, even if the functions
* are present. Do not declare argument types, in order to avoid conflict
* on platforms where the prototypes _are_ correct. Indeed, for most of
* these, there are _several_ "correct" parameter definitions, and not all
* platforms use the same. For instance, some use the const attribute for
* strings not modified by the function, and others do not. By using just
* the return type, which rarely changes, we avoid these problems.
*/
/* Correction: Now it seems that even return values are not standardized :-(
For instance DEC-ALPHA, OSF/1 3.2d uses ssize_t as a return type for read
and write. NextStep uses a non-void return value for exit, etc. With the
advent of 64 bit system, we'll expect more of these problems in the future.
Better uncomment the lot, except on SunOS, which is known to have bad
incomplete files. Add other OS'es with incomplete include files as needed
*/
#if (defined OS_sunos || defined OS_ultrix)
int read();
int write();
int fflush();
char *strdup();
int strcasecmp();
int strncasecmp();
char *getenv();
unsigned long strtoul();
int pclose();
void exit();
char *getpass();
int atoi();
FILE *fdopen();
FILE *popen();
#endif
#ifndef MAXPATHLEN
# ifdef PATH_MAX
# define MAXPATHLEN PATH_MAX
# else
# define MAXPATHLEN 1024
# endif
#endif
#ifndef OS_linux
# undef USE_XDF
#endif
#ifdef NO_XDF
# undef USE_XDF
#endif
#ifdef OS_nextstep
/* nextstep doesn't have this. Unfortunately, we cannot test its presence
using AC_EGREP_HEADER, as we don't know _which_ header to test, and in
the general case utime.h might be non-existent */
struct utimbuf
{
time_t actime,modtime;
};
#endif
/* NeXTStep doesn't have these */
#if !defined(S_ISREG) && defined (_S_IFMT) && defined (_S_IFREG)
#define S_ISREG(mode) (((mode) & (_S_IFMT)) == (_S_IFREG))
#endif
#if !defined(S_ISDIR) && defined (_S_IFMT) && defined (_S_IFDIR)
#define S_ISDIR(mode) (((mode) & (_S_IFMT)) == (_S_IFDIR))
#endif
#endif
|