88 lines
2.3 KiB
C
88 lines
2.3 KiB
C
/*
|
|
* custom.h
|
|
*
|
|
* This file is for use on systems where Autoconf isn't quite able to
|
|
* get things right. It is included after config.h in awk.h, to override
|
|
* definitions from Autoconf that are erroneous. See the manual for more
|
|
* information.
|
|
*
|
|
* If you make additions to this file for your system, please send me
|
|
* the information, to arnold@gnu.org.
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 1995-2001 the Free Software Foundation, Inc.
|
|
*
|
|
* This file is part of GAWK, the GNU implementation of the
|
|
* AWK Programming Language.
|
|
*
|
|
* GAWK 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.
|
|
*
|
|
* GAWK 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
*/
|
|
|
|
/* for MIPS RiscOS, from Nelson H. F. Beebe, beebe@math.utah.edu */
|
|
#if defined(__host_mips) && defined(SYSTYPE_BSD43)
|
|
#undef HAVE_STRTOD
|
|
#undef HAVE_STRERROR
|
|
#endif
|
|
|
|
/* for VMS POSIX, from Pat Rankin, rankin@eql.caltech.edu */
|
|
#ifdef VMS_POSIX
|
|
#undef VMS
|
|
#include "vms/redirect.h"
|
|
#endif
|
|
|
|
/* For QNX, based on submission from Michael Hunter, mphunter@qnx.com */
|
|
#ifdef __QNX__
|
|
#define GETPGRP_VOID 1
|
|
#endif
|
|
|
|
/* For Amigas, from Fred Fish, fnf@ninemoons.com */
|
|
#ifdef __amigaos__
|
|
#define fork vfork
|
|
#endif
|
|
|
|
/* For BeOS, from mc@whoever.com */
|
|
#if defined(__dest_os) && __dest_os == __be_os
|
|
#define BROKEN_STRNCASECMP
|
|
#define ELIDE_CODE
|
|
#include <alloca.h>
|
|
#endif
|
|
|
|
/* For Tandems, based on code from scldad@sdc.com.au */
|
|
#ifdef TANDEM
|
|
#define tempnam(a,b) tmpnam(NULL)
|
|
#define variable(a,b,c) variabl(a,b,c)
|
|
#define srandom srand
|
|
#define random rand
|
|
|
|
#include <cextdecs(PROCESS_GETINFO_)>
|
|
#endif
|
|
|
|
/* For 16-bit DOS */
|
|
#if defined(MSC_VER) && defined(MSDOS)
|
|
#define NO_PROFILING 1
|
|
#endif
|
|
|
|
/* For MacOS X, which is almost BSD Unix */
|
|
#ifdef __APPLE__
|
|
#define HAVE_MKTIME 1
|
|
#endif
|
|
|
|
/* For ULTRIX 4.3 */
|
|
#ifdef ultrix
|
|
#define HAVE_MKTIME 1
|
|
#endif
|
|
|