defining C macro if not defined.

This commit is contained in:
Kazu Yamamoto
2014-05-16 09:27:23 +09:00
parent e3ff15862f
commit fcc3b46415
2 changed files with 12 additions and 0 deletions

View File

@@ -10,6 +10,10 @@ module Language.Haskell.GhcMod.GhcPkg (
, getPackageDbStack
) where
#ifndef MIN_VERSION_Cabal
#define MIN_VERSION_Cabal(x,y,z) 1
#endif
import Config (cProjectVersionInt)
import Control.Applicative ((<$>))
#if MIN_VERSION_Cabal(1,18,0)