From eb88865ff14cdce85b3f7967969cd3fba271af8d Mon Sep 17 00:00:00 2001 From: Jeff Teunissen Date: Thu, 18 May 2000 08:19:24 +0000 Subject: [PATCH] Add define protection for config.h, so it can be included multiple times without redefining everything. --- acconfig.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/acconfig.h b/acconfig.h index b9eb081..f0d8e06 100644 --- a/acconfig.h +++ b/acconfig.h @@ -1,3 +1,9 @@ +/* + Compiler/Machine-Specific Configuration +*/ +#ifndef _CONFIG_H +#define _CONFIG_H +@TOP@ /* "Proper" package name */ #undef PROGRAM @@ -78,3 +84,6 @@ /* Define if you have the dlopen function. */ #undef HAVE_DLOPEN + +@BOTTOM@ +#endif // _CONFIG_H