This commit is contained in:
Joey Hess 2013-12-04 23:09:54 -04:00
parent c08a4d3d93
commit c077cee44a
5 changed files with 8 additions and 8 deletions

View file

@ -16,19 +16,19 @@ module Utility.DirWatcher where
import Utility.DirWatcher.Types
#if WITH_INOTIFY
import qualified Utility.INotify as INotify
import qualified Utility.DirWatcher.INotify as INotify
import qualified System.INotify as INotify
#endif
#if WITH_KQUEUE
import qualified Utility.Kqueue as Kqueue
import qualified Utility.DirWatcher.Kqueue as Kqueue
import Control.Concurrent
#endif
#if WITH_FSEVENTS
import qualified Utility.FSEvents as FSEvents
import qualified Utility.DirWatcher.FSEvents as FSEvents
import qualified System.OSX.FSEvents as FSEvents
#endif
#if WITH_WIN32NOTIFY
import qualified Utility.Win32Notify as Win32Notify
import qualified Utility.DirWatcher.Win32Notify as Win32Notify
import qualified System.Win32.Notify as Win32Notify
#endif

View file

@ -5,7 +5,7 @@
- Licensed under the GNU GPL version 3 or higher.
-}
module Utility.FSEvents where
module Utility.DirWatcher.FSEvents where
import Common hiding (isDirectory)
import Utility.DirWatcher.Types

View file

@ -5,7 +5,7 @@
- Licensed under the GNU GPL version 3 or higher.
-}
module Utility.INotify where
module Utility.DirWatcher.INotify where
import Common hiding (isDirectory)
import Utility.ThreadLock

View file

@ -7,7 +7,7 @@
{-# LANGUAGE ForeignFunctionInterface #-}
module Utility.Kqueue (
module Utility.DirWatcher.Kqueue (
Kqueue,
initKqueue,
stopKqueue,

View file

@ -5,7 +5,7 @@
- Licensed under the GNU GPL version 3 or higher.
-}
module Utility.Win32Notify where
module Utility.DirWatcher.Win32Notify where
import Common hiding (isDirectory)
import Utility.DirWatcher.Types