X-Git-Url: http://git.silcnet.org/gitweb/?a=blobdiff_plain;f=includes%2Fsilccompile.h;fp=includes%2Fsilccompile.h;h=9cd0378f138b2b5166ade1fc565e6b94ca8d53f4;hb=be10e71673bc538573b1805ee2115f2a3a7281a2;hp=0000000000000000000000000000000000000000;hpb=e7b6c157b80152bf9fb9266e6bdd93f9fb0db776;p=silc.git diff --git a/includes/silccompile.h b/includes/silccompile.h new file mode 100644 index 00000000..9cd0378f --- /dev/null +++ b/includes/silccompile.h @@ -0,0 +1,131 @@ +/* + + silccompile.h + + Author: Pekka Riikonen + + Copyright (C) 2008 Pekka Riikonen + + 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; version 2 of the License. + + 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. + +*/ + +#ifndef SILCCOMPILE_H +#define SILCCOMPILE_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#ifdef HAVE_SIGNAL_H +#include +#endif + +#ifdef HAVE_FCNTL_H +#include +#endif + +#ifdef HAVE_ERRNO_H +#include +#endif + +#ifdef HAVE_ASSERT_H +#include +#endif + +#if !defined(SILC_WIN32) + +#include +#include +#include +#include + +#ifdef HAVE_GRP_H +#include +#endif + +#ifdef SOCKS5 +#include "socks.h" +#endif + +#include +#ifdef HAVE_NETINET_IN_H +#include +#endif + +#ifdef HAVE_XTI_H +#include +#else +#ifdef HAVE_NETINET_TCP_H +#include +#endif +#endif + +#ifdef HAVE_NETDB_H +#include +#endif + +#ifdef HAVE_ARPA_INET_H +#include +#endif + +#ifdef HAVE_SYS_MMAN_H +#include +#endif + +#ifdef HAVE_DLFCN_H +#include +#endif + +#ifdef HAVE_LIMITS_H +#include +#endif + +#ifdef SILC_HAVE_PTHREAD +#include +#endif + +#ifdef HAVE_STDDEF_H +#include +#endif + +#ifdef HAVE_TERMIOS_H +#include +#endif + +#ifdef HAVE_UTIME_H +#include +#endif + +#ifdef HAVE_ICONV_H +#include +#endif + +#ifdef HAVE_LOCALE_H +#include +#endif + +#ifdef HAVE_LANGINFO_H +#include +#endif + +#ifdef HAVE_SYS_RESOURCE_H +#include +#endif + +#endif /* !SILC_WIN32 */ + +#endif /* SILCCOMPILE_H */