From cef4d8e02560b1a750f81bca94748a7e7faa49e0 Mon Sep 17 00:00:00 2001 From: niki Date: Wed, 14 Dec 2005 13:48:25 +0000 Subject: [PATCH] autoconf info page mentions that including config.h has to be done this way. maybe we should start including common.h instead and do all fancy #if/#endif there. --- src/users.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/users.h b/src/users.h index c250f6ce..02f23dcd 100644 --- a/src/users.h +++ b/src/users.h @@ -23,7 +23,9 @@ #ifndef USERS_H #define USERS_H 1 -#include "config.h" +#if HAVE_CONFIG_H +#include +#endif #if !defined(HAVE_UTMPX_H) || !defined(HAVE_GETUTXENT) #undef HAVE_UTMPX_H -- 2.30.2