/* * NeoIRCd: NeoStats Group. Based on Hybird7 * stdinc.h: Pull in all of the necessary system headers * * Copyright (C) 2002 Aaron Sethman * * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * * $Id: stdinc.h,v 1.5 2003/05/09 12:30:19 fishwaldo Exp $ * */ #include "config.h" /* Gotta pull in the autoconf stuff */ #ifdef HAVE_STDLIB_H #include #endif #ifdef STRING_WITH_STRINGS # include # include #else # ifdef HAVE_STRING_H # include # else # ifdef HAVE_STRINGS_H # include # endif # endif #endif #ifdef HAVE_STDDEF_H #include #endif #include #include #include #include #include #include #include #include #ifdef USE_GETTEXT #include #endif #include #include #ifdef VMS #define _XOPEN_SOURCE 1 #endif #include #ifdef HAVE_UNISTD_H #include #endif #include #include #include #ifdef HAVE_SYS_RESOURCE_H #include #endif #include #include #include #ifdef HAVE_SYS_PARAM_H #include #endif #include #include #ifdef HAVE_ERRNO_H #include #else extern int errno; #endif #ifdef VMS #include #endif #ifdef USE_SSL /* we dont need/want kerberos support */ #define OPENSSL_NO_KRB5 1 #include #endif