From 9841ec46cb370568206995e2a27c12dc912dff92 Mon Sep 17 00:00:00 2001 From: sof Date: Sat, 23 Apr 2005 03:07:23 +0000 Subject: [PATCH] [project @ 2005-04-23 03:07:23 by sof] added ghc_ge_602. Merge to STABLE --- ghc/mk/config.mk.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ghc/mk/config.mk.in b/ghc/mk/config.mk.in index ea3e883..1f004dd 100644 --- a/ghc/mk/config.mk.in +++ b/ghc/mk/config.mk.in @@ -50,15 +50,18 @@ endif ifeq "$(UseStage1)" "YES" ghc_ge_504 = YES ghc_ge_601 = YES +ghc_ge_602 = YES ghc_ge_603 = YES else ifeq "$(BootingFromHc)" "YES" ghc_ge_504 = YES ghc_ge_601 = YES +ghc_ge_602 = YES ghc_ge_603 = YES else ghc_ge_504 = $(shell if (test $(GhcCanonVersion) -ge 504); then echo YES; else echo NO; fi) ghc_ge_601 = $(shell if (test $(GhcCanonVersion) -ge 601); then echo YES; else echo NO; fi) +ghc_ge_602 = $(shell if (test $(GhcCanonVersion) -ge 602); then echo YES; else echo NO; fi) ghc_ge_603 = $(shell if (test $(GhcCanonVersion) -ge 603); then echo YES; else echo NO; fi) endif endif -- 1.7.10.4