From: curt Date: Mon, 19 Jun 2000 17:06:35 +0000 (+0000) Subject: Metakit seems to really want to #define bool int, #define true 1, X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9fabeb77bc12f8d7abb8a72cdb52218cb05910a1;p=simgear.git Metakit seems to really want to #define bool int, #define true 1, #define false 0, so I massaged the header files to make this impossible. --- diff --git a/simgear/Makefile.am b/simgear/Makefile.am index 2dd993de..a3d980a4 100644 --- a/simgear/Makefile.am +++ b/simgear/Makefile.am @@ -21,7 +21,8 @@ METAR_DIRS = EXTRA_DIST = version.h.in -include_HEADERS = compiler.h constants.h fg_traits.hxx fg_zlib.h version.h +include_HEADERS = \ + compiler.h constants.h fg_traits.hxx fg_zlib.h inlines.h version.h SUBDIRS = \ bucket \ diff --git a/simgear/constants.h b/simgear/constants.h index f4d40d2a..d74b2b40 100644 --- a/simgear/constants.h +++ b/simgear/constants.h @@ -21,8 +21,8 @@ // $Id$ -#ifndef _SUPPORTGEAR_CONSTANTS_H -#define _SUPPORTGEAR_CONSTANTS_H +#ifndef _SG_CONSTANTS_H +#define _SG_CONSTANTS_H #ifdef HAVE_CONFIG_H @@ -140,4 +140,4 @@ #define FG_EPSILON 0.0000001 -#endif // _SUPPORTGEAR_CONSTANTS_H +#endif // _SG_CONSTANTS_H