diff options
author | Thomas Klausner <wiz@NetBSD.org> | 2013-06-02 21:03:27 +0200 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-06-02 16:27:44 -0700 |
commit | c21d25de05d82a761a3225b685e9adcb7bb374bd (patch) | |
tree | bd032dab3f25e204a49ff1046703b36f5c19bd5d | |
parent | b8dd42dce868f9c16a59790ce51f0542b59cb79d (diff) |
Protect config.h inclusion with ifdef HAVE_CONFIG_H, like usual.
Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | src/fontfile/bunzip2.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/fontfile/bunzip2.c b/src/fontfile/bunzip2.c index 44d19f0..4078796 100644 --- a/src/fontfile/bunzip2.c +++ b/src/fontfile/bunzip2.c @@ -26,7 +26,9 @@ */ +#ifdef HAVE_CONFIG_H #include "config.h" +#endif #include <X11/fonts/fontmisc.h> #include <X11/fonts/bufio.h> |