module Paths_call (
    version,
    getBinDir, getLibDir, getDataDir, getLibexecDir,
    getDataFileName, getSysconfDir
  ) where

import qualified Control.Exception as Exception
import Data.Version (Version(..))
import System.Environment (getEnv)
import Prelude

catchIO :: IO a -> (Exception.IOException -> IO a) -> IO a
catchIO = Exception.catch

version :: Version
version = Version [0,1,3] []
bindir, libdir, datadir, libexecdir, sysconfdir :: FilePath

bindir     = "E:\\cabal\\bin"
libdir     = "E:\\cabal\\x86_64-windows-ghc-7.8.4\\call-0.1.3"
datadir    = "E:\\cabal\\x86_64-windows-ghc-7.8.4\\call-0.1.3"
libexecdir = "E:\\cabal\\call-0.1.3"
sysconfdir = "E:\\cabal\\etc"

getBinDir, getLibDir, getDataDir, getLibexecDir, getSysconfDir :: IO FilePath
getBinDir = catchIO (getEnv "call_bindir") (\_ -> return bindir)
getLibDir = catchIO (getEnv "call_libdir") (\_ -> return libdir)
getDataDir = catchIO (getEnv "call_datadir") (\_ -> return datadir)
getLibexecDir = catchIO (getEnv "call_libexecdir") (\_ -> return libexecdir)
getSysconfDir = catchIO (getEnv "call_sysconfdir") (\_ -> return sysconfdir)

getDataFileName :: FilePath -> IO FilePath
getDataFileName name = do
  dir <- getDataDir
  return (dir ++ "\\" ++ name)