Blame custom.h

Packit Service f629e6
/*
Packit Service f629e6
 * custom.h
Packit Service f629e6
 *
Packit Service f629e6
 * This file is for use on systems where Autoconf isn't quite able to
Packit Service f629e6
 * get things right. It is appended to the bottom of config.h by configure,
Packit Service f629e6
 * in order to override definitions from Autoconf that are erroneous. See
Packit Service f629e6
 * the manual for more information.
Packit Service f629e6
 *
Packit Service f629e6
 * If you make additions to this file for your system, please send me
Packit Service f629e6
 * the information, to arnold@skeeve.com.
Packit Service f629e6
 */
Packit Service f629e6
Packit Service f629e6
/*
Packit Service f629e6
 * Copyright (C) 1995-2004, 2008, 2009, 2011, 2016
Packit Service f629e6
 * the Free Software Foundation, Inc.
Packit Service f629e6
 *
Packit Service f629e6
 * This file is part of GAWK, the GNU implementation of the
Packit Service f629e6
 * AWK Programming Language.
Packit Service f629e6
 *
Packit Service f629e6
 * GAWK is free software; you can redistribute it and/or modify
Packit Service f629e6
 * it under the terms of the GNU General Public License as published by
Packit Service f629e6
 * the Free Software Foundation; either version 3 of the License, or
Packit Service f629e6
 * (at your option) any later version.
Packit Service f629e6
 *
Packit Service f629e6
 * GAWK is distributed in the hope that it will be useful,
Packit Service f629e6
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service f629e6
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service f629e6
 * GNU General Public License for more details.
Packit Service f629e6
 *
Packit Service f629e6
 * You should have received a copy of the GNU General Public License
Packit Service f629e6
 * along with this program; if not, write to the Free Software
Packit Service f629e6
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
Packit Service f629e6
 */
Packit Service f629e6
Packit Service f629e6
/* for VMS POSIX, from Pat Rankin, r.pat.rankin@gmail.com */
Packit Service f629e6
#ifdef VMS_POSIX
Packit Service f629e6
#undef VMS
Packit Service f629e6
#include "vms/redirect.h"
Packit Service f629e6
#endif
Packit Service f629e6
Packit Service f629e6
/* For QNX, based on submission from Michael Hunter, mphunter@qnx.com */
Packit Service f629e6
#ifdef __QNX__
Packit Service f629e6
#define GETPGRP_VOID	1
Packit Service f629e6
#endif
Packit Service f629e6
Packit Service f629e6
/* For MacOS X, which is almost BSD Unix */
Packit Service f629e6
#ifdef __APPLE__
Packit Service f629e6
#define HAVE_MKTIME	1
Packit Service f629e6
#endif
Packit Service f629e6
Packit Service f629e6
/* For whiny users */
Packit Service f629e6
#ifdef USE_INCLUDED_STRFTIME
Packit Service f629e6
#undef HAVE_STRFTIME
Packit Service f629e6
#endif
Packit Service f629e6
Packit Service f629e6
/* For HP/UX with gcc */
Packit Service f629e6
#if defined(hpux) || defined(_HPUX_SOURCE)
Packit Service f629e6
#undef HAVE_TZSET
Packit Service f629e6
#define HAVE_TZSET 1
Packit Service f629e6
#define _TZSET 1
Packit Service f629e6
#endif
Packit Service f629e6
Packit Service f629e6
#if defined(_AIX)
Packit Service f629e6
#define _XOPEN_SOURCE_EXTENDED 1
Packit Service f629e6
#endif
Packit Service f629e6
Packit Service f629e6
/* Junk for dfa.[ch] */
Packit Service f629e6
/* The __pure__ attribute was added in gcc 2.96.  */
Packit Service f629e6
#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)
Packit Service f629e6
# define _GL_ATTRIBUTE_PURE __attribute__ ((__pure__))
Packit Service f629e6
#else
Packit Service f629e6
# define _GL_ATTRIBUTE_PURE /* empty */
Packit Service f629e6
#endif