From: <kr_...@us...> - 2005-12-14 12:34:45
|
Update of /cvsroot/htoolkit/HSQL/SQLite3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22239 Modified Files: Setup.lhs Log Message: Sync with the latest Cabal Index: Setup.lhs =================================================================== RCS file: /cvsroot/htoolkit/HSQL/SQLite3/Setup.lhs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Setup.lhs 16 Jun 2005 19:27:09 -0000 1.1 --- Setup.lhs 14 Dec 2005 12:34:35 -0000 1.2 *************** *** 21,30 **** try (removeFile "SQLite3.buildinfo") return emptyHookedBuildInfo ! postConf :: [String] -> ConfigFlags -> LocalBuildInfo -> IO ExitCode ! postConf args flags localbuildinfo = do mb_bi <- pkgConfigBuildInfo (configVerbose flags) "sqlite3" let bi = case mb_bi of Just bi -> bi ! Nothing -> emptyBuildInfo{extraLibs=["sqlite"]} writeHookedBuildInfo "SQLite3.buildinfo" (Just bi,[]) return ExitSuccess --- 21,30 ---- try (removeFile "SQLite3.buildinfo") return emptyHookedBuildInfo ! postConf :: [String] -> ConfigFlags -> PackageDescription -> LocalBuildInfo -> IO ExitCode ! postConf args flags _ localbuildinfo = do mb_bi <- pkgConfigBuildInfo (configVerbose flags) "sqlite3" let bi = case mb_bi of Just bi -> bi ! Nothing -> emptyBuildInfo{extraLibs=["sqlite3"]} writeHookedBuildInfo "SQLite3.buildinfo" (Just bi,[]) return ExitSuccess |