Cabal depends on -package unix when GHC <= 6.2
[ghc-hetmet.git] / compat / compat.mk
1 # Settings for using the libghccompat.a library elsewhere in the build
2 # tree: this file is just included into Makefiles, see 
3 # utils/ghc-pkg/Makefile for example.
4 #
5 # This is a poor-mans package, but simpler because we don't
6 # have to deal with variations in the package support of different
7 # versions of GHC.
8
9 ifneq "$(UseStage1)" "YES"
10
11 SRC_HC_OPTS += -DUSING_COMPAT
12
13 # Use libghccompat.a:
14 SRC_HC_OPTS += -i$(GHC_COMPAT_DIR)
15 SRC_LD_OPTS += -L$(GHC_COMPAT_DIR) -lghccompat
16
17 # Do *not* use the installed Cabal:
18 ifeq "$(ghc_ge_603)" "YES"
19 SRC_HC_OPTS += -ignore-package Cabal
20 endif
21
22 ifeq "$(ghc_ge_607)" "YES"
23 SRC_HC_OPTS += -package directory
24 SRC_HC_OPTS += -package pretty
25 endif
26
27 ifeq "$(ghc_ge_603)" "NO"
28 SRC_HC_OPTS += -package unix
29 endif
30
31 # And similarly for when booting from .hc files:
32 HC_BOOT_LD_OPTS += -L$(GHC_COMPAT_DIR)
33 HC_BOOT_LIBS += -lghccompat
34
35 ifeq "$(Windows)" "YES"
36 # not very nice, but required for -lghccompat on Windows
37 SRC_LD_OPTS += -lshell32
38 HC_BOOT_LIBS += -lshell32
39 endif
40
41 # This is horrible.  We ought to be able to omit the entire directory
42 # from mkDependHS.
43 SRC_MKDEPENDHS_OPTS += \
44         -optdep--exclude-module=Compat.RawSystem \
45         -optdep--exclude-module=Compat.Directory \
46         -optdep--exclude-module=Compat.Unicode \
47         -optdep--exclude-module=Distribution.Compat.FilePath \
48         -optdep--exclude-module=Distribution.Compat.ReadP \
49         -optdep--exclude-module=Distribution.Extension \
50         -optdep--exclude-module=Distribution.GetOpt \
51         -optdep--exclude-module=Distribution.InstalledPackageInfo \
52         -optdep--exclude-module=Distribution.License \
53         -optdep--exclude-module=Distribution.Package \
54         -optdep--exclude-module=Distribution.ParseUtils \
55         -optdep--exclude-module=Distribution.Compiler \
56         -optdep--exclude-module=Distribution.Version \
57         -optdep--exclude-module=System.FilePath \
58         -optdep--exclude-module=System.FilePath.Posix \
59         -optdep--exclude-module=System.FilePath.Windows \
60         -optdep--exclude-module=System.Directory.Internals \
61         -optdep--exclude-module=Trace.Hpc.Mix \
62         -optdep--exclude-module=Trace.Hpc.Tix \
63         -optdep--exclude-module=Trace.Hpc.Util
64
65 PACKAGE_CABAL =
66 PACKAGE_HPC   =
67
68 else
69
70 PACKAGE_CABAL = -package Cabal
71 PACKAGE_HPC   = -package hpc
72
73 endif
74