X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=userv.git;a=blobdiff_plain;f=acconfig.h;h=80cec87872147bc27be9e5f582e61d18db84046a;hp=998b8e39c796d32067df71cdc718d2e9da02a5bf;hb=26f06c01c4cb357d9e4fb6d0cd0386e70f7e6b6e;hpb=703b99b834625829d6b285e5bca619475ef54511 diff --git a/acconfig.h b/acconfig.h index 998b8e3..80cec87 100644 --- a/acconfig.h +++ b/acconfig.h @@ -2,7 +2,7 @@ * userv - acconfig.h * extra stuff for config.h.in (autoconf) * - * Copyright (C)1996-1997 Ian Jackson + * Copyright (C)1996-1997,1999 Ian Jackson * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by @@ -19,11 +19,17 @@ * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +/* Define if EPROTO exists. */ +#undef HAVE_EPROTO + +/* Define if LOG_AUTHPRIV exists. */ +#undef HAVE_LOG_AUTHPRIV + /* Define if function attributes a la GCC 2.5 and higher are available. */ #undef HAVE_GNUC25_ATTRIB -/* Define if constant functions a la GCC 2.5 and higher are available. */ -#undef HAVE_GNUC25_CONST +/* Define if unused functions a la GCC 2.5 and higher are available. */ +#undef HAVE_GNUC25_UNUSED /* Define if nonreturning functions a la GCC 2.5 and higher are available. */ #undef HAVE_GNUC25_NORETURN @@ -33,6 +39,16 @@ @BOTTOM@ +/* EPROTO */ +#ifndef HAVE_EPROTO +#define EPROTO 0 +#endif + +/* LOG_AUTHPRIV */ +#ifndef HAVE_LOG_AUTHPRIV +#define LOG_AUTHPRIV LOG_AUTH +#endif + /* GNU C attributes. */ #ifndef FUNCATTR #ifdef HAVE_GNUC25_ATTRIB @@ -71,14 +87,14 @@ #define NONRETURNPRINTFFORMAT(si,tc) FUNCATTR((ATTRPRINTF(si,tc),ATTRNORETURN)) #endif -/* GNU C constant functions, or null. */ -#ifndef ATTRCONST -#ifdef HAVE_GNUC25_CONST -#define ATTRCONST const +/* GNU C unused functions, or null. */ +#ifndef ATTRUNUSED +#ifdef HAVE_GNUC25_UNUSED +#define ATTRUNUSED unused #else -#define ATTRCONST +#define ATTRUNUSED #endif #endif -#ifndef CONSTANT -#define CONSTANT FUNCATTR((ATTRCONST)) +#ifndef UNUSED +#define UNUSED FUNCATTR((ATTRUNUSED)) #endif