X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=config.h.in;h=0a6033710db945f91b9c5b78d3a1943ff15192c3;hb=32352d169d447952a4a1eab9a86fbb803e7950b4;hp=a3b3cef8bf58014eb35447a3538c5904f4cdb645;hpb=2fe58dfd10216a37f1ece081f926971882de112e;p=secnet.git diff --git a/config.h.in b/config.h.in index a3b3cef..0a60337 100644 --- a/config.h.in +++ b/config.h.in @@ -1,90 +1,190 @@ -/* config.h.in. Generated automatically from configure.in by autoheader. */ -/*************************************************************************** - * - * Part II Project, "A secure, private IP network" - * Stephen Early - * - * - * $RCSfile$ - * - * Description: - * - * Copyright: (C) Stephen Early 1995 - * - * $Revision$ - * - * $Date$ - * - * $State$ - * - ***************************************************************************/ - -/* $Log$ - */ +/* config.h.in. Generated from configure.in by autoheader. */ + #ifndef _CONFIG_H #define _CONFIG_H -/* Define to empty if the keyword does not work. */ -#undef const +/* Define to 1 if you have the header file. */ +#undef HAVE_INTTYPES_H + +/* Define to 1 if you have the `adns' library (-ladns). */ +#undef HAVE_LIBADNS + +/* Define to 1 if you have the `fl' library (-lfl). */ +#undef HAVE_LIBFL + +/* Define to 1 if you have the `getopt' library (-lgetopt). */ +#undef HAVE_LIBGETOPT + +/* Define to 1 if you have the `gmp' library (-lgmp). */ +#undef HAVE_LIBGMP + +/* Define to 1 if you have the `gmp2' library (-lgmp2). */ +#undef HAVE_LIBGMP2 + +/* Define to 1 if you have the `gnugetopt' library (-lgnugetopt). */ +#undef HAVE_LIBGNUGETOPT + +/* Define to 1 if you have the `nsl' library (-lnsl). */ +#undef HAVE_LIBNSL + +/* Define to 1 if you have the `resolv' library (-lresolv). */ +#undef HAVE_LIBRESOLV + +/* Define to 1 if you have the `socket' library (-lsocket). */ +#undef HAVE_LIBSOCKET + +/* Define to 1 if you have the header file. */ +#undef HAVE_LINUX_IF_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_MEMORY_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_NET_IF_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_NET_IF_TUN_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_NET_ROUTE_H + +/* Define to 1 if you have the `snprintf' function. */ +#undef HAVE_SNPRINTF + +/* Define to 1 if you have the header file. */ +#undef HAVE_STDINT_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STDLIB_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STRINGS_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STRING_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STROPTS_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_SOCKET_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_SOCKIO_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_STAT_H -/* Define if you don't have vprintf but do have _doprnt. */ -#undef HAVE_DOPRNT +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_TYPES_H -/* Define if you have the vprintf function. */ -#undef HAVE_VPRINTF +/* Define to 1 if you have the header file. */ +#undef HAVE_UNISTD_H -/* Define to `int' if doesn't define. */ -#undef pid_t +/* Define to the address where bug reports for this package should be sent. */ +#undef PACKAGE_BUGREPORT -/* Define to `unsigned' if doesn't define. */ -#undef size_t +/* Define to the full name of this package. */ +#undef PACKAGE_NAME -/* Define if you have the ANSI C header files. */ +/* Define to the full name and version of this package. */ +#undef PACKAGE_STRING + +/* Define to the one symbol short name of this package. */ +#undef PACKAGE_TARNAME + +/* Define to the version of this package. */ +#undef PACKAGE_VERSION + +/* The size of a `unsigned char', as computed by sizeof. */ +#undef SIZEOF_UNSIGNED_CHAR + +/* The size of a `unsigned int', as computed by sizeof. */ +#undef SIZEOF_UNSIGNED_INT + +/* The size of a `unsigned long', as computed by sizeof. */ +#undef SIZEOF_UNSIGNED_LONG + +/* The size of a `unsigned long long', as computed by sizeof. */ +#undef SIZEOF_UNSIGNED_LONG_LONG + +/* The size of a `unsigned short', as computed by sizeof. */ +#undef SIZEOF_UNSIGNED_SHORT + +/* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS -/* Define if your processor stores words with the most significant - byte first (like Motorola and SPARC, unlike Intel and VAX). */ +/* Define to 1 if your processor stores words with the most significant byte + first (like Motorola and SPARC, unlike Intel and VAX). */ #undef WORDS_BIGENDIAN -/* Define if you have the adns library (-ladns). */ -#undef HAVE_LIBADNS - -/* Define if you have the fl library (-lfl). */ -#undef HAVE_LIBFL -/* Define if you have the gmp library (-lgmp). */ -#undef HAVE_LIBGMP /* -*- c -*- */ -/* These are from config.h.bot, pasted onto the end of config.h.in. */ +/* These used to be in config.h.bot, but are now in configure.in. */ -#ifdef HAVE_SYS_CDEFS_H -#include +#ifdef HAVE_INTTYPES_H +#include +#else +#ifdef HAVE_STDINT_H +#include +#else +#if SIZEOF_UNSIGNED_LONG_LONG==8 +typedef unsigned long long uint64_t; +typedef long long int64_t; +#elif SIZEOF_UNSIGNED_LONG==8 +typedef unsigned long uint64_t; +typedef long int64_t; +#else +#error I do not know what to use for a uint64_t. #endif -#if 0 -/* Use the definitions: */ - /* Give us an unsigned 32-bit data type. */ #if SIZEOF_UNSIGNED_LONG==4 -#define UWORD32 unsigned long +typedef unsigned long uint32_t; +typedef long int32_t; #elif SIZEOF_UNSIGNED_INT==4 -#define UWORD32 unsigned int +typedef unsigned int uint32_t; +typedef int int32_t; #else -#error I do not know what to use for a UWORD32. +#error I do not know what to use for a uint32_t. +#endif + +/* An unsigned 16-bit data type. */ +#if SIZEOF_UNSIGNED_INT==2 +typedef unsigned int uint16_t; +typedef int int16_t; +#elif SIZEOF_UNSIGNED_SHORT==2 +typedef unsigned short uint16_t; +typedef short int16_t; +#else +#error I do not know what to use for a uint16_t. #endif /* An unsigned 8-bit data type */ #if SIZEOF_UNSIGNED_CHAR==1 -#define UBYTE8 unsigned char +typedef unsigned char uint8_t; #else -#error I do not know what to use for a UBYTE8 +#error I do not know what to use for a uint8_t. +#endif +#endif #endif +#ifndef HAVE_SNPRINTF +#include +#include +#include "snprintf.h" +#endif -#endif /* 0 */ - +#ifdef __GNUC__ +#define NORETURN(_x) void _x __attribute__ ((noreturn)) +#define FORMAT(_a,_b,_c) __attribute__ ((format (_a,_b,_c))) +#else +#define NORETURN(_x) _x +#define FORMAT(_a,_b,_c) +#endif #endif /* _CONFIG_H */ +