From d2ab743a74dfca780b405a4f4bac962f02a6672e Mon Sep 17 00:00:00 2001 From: dons Date: Wed, 6 Oct 2004 23:45:37 +0000 Subject: [PATCH] [project @ 2004-10-06 23:45:37 by dons] Fix order of PACKAGE_* #undefs. They must appear before HsBaseConfig.h --- include/HsBase.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/HsBase.h b/include/HsBase.h index c27140e..75f9045 100644 --- a/include/HsBase.h +++ b/include/HsBase.h @@ -11,15 +11,15 @@ #include "ghcconfig.h" -#include "HsBaseConfig.h" - -/* ultra-evil... */ +/* ultra-evil... must come before HsBaseConfig.h */ #undef PACKAGE_BUGREPORT #undef PACKAGE_NAME #undef PACKAGE_STRING #undef PACKAGE_TARNAME #undef PACKAGE_VERSION +#include "HsBaseConfig.h" + #include "HsFFI.h" #include -- 1.7.10.4