From 814be8d9e33140d766eababc301457b255c0e117 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Fri, 22 Oct 2010 13:40:24 +0000 Subject: [PATCH] Fix unused import warning on OS X --- compiler/nativeGen/AsmCodeGen.lhs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compiler/nativeGen/AsmCodeGen.lhs b/compiler/nativeGen/AsmCodeGen.lhs index 0761946..68982d0 100644 --- a/compiler/nativeGen/AsmCodeGen.lhs +++ b/compiler/nativeGen/AsmCodeGen.lhs @@ -76,7 +76,9 @@ import DynFlags import StaticFlags ( opt_Static, opt_PIC ) #endif import Util +#if !defined(darwin_TARGET_OS) import Config ( cProjectVersion ) +#endif import Digraph import qualified Pretty -- 1.7.10.4