{-# LANGUAGE CPP #-}
module Internal (fromPackageName, matchFileGlob) where
import Distribution.Simple
#if MIN_VERSION_Cabal(2,4,0)
import Distribution.Simple.Glob (matchDirFileGlob)
import Distribution.Verbosity (silent)
#else
import Distribution.Simple.Utils (matchFileGlob)
#endif
fromPackageName :: PackageName -> String
#if MIN_VERSION_Cabal(2,0,0)
fromPackageName :: PackageName -> String
fromPackageName = PackageName -> String
unPackageName
#else
fromPackageName (PackageName s) = s
#endif
#if MIN_VERSION_Cabal(2,4,0)
matchFileGlob :: FilePath -> IO [FilePath]
matchFileGlob :: String -> IO [String]
matchFileGlob = Verbosity -> Version -> String -> String -> IO [String]
matchDirFileGlob Verbosity
silent ([Int] -> Version
mkVersion [2, 0]) "."
#endif