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 import Utility.DirWatcher.Types
#if WITH_INOTIFY #if WITH_INOTIFY
import qualified Utility.INotify as INotify import qualified Utility.DirWatcher.INotify as INotify
import qualified System.INotify as INotify import qualified System.INotify as INotify
#endif #endif
#if WITH_KQUEUE #if WITH_KQUEUE
import qualified Utility.Kqueue as Kqueue import qualified Utility.DirWatcher.Kqueue as Kqueue
import Control.Concurrent import Control.Concurrent
#endif #endif
#if WITH_FSEVENTS #if WITH_FSEVENTS
import qualified Utility.FSEvents as FSEvents import qualified Utility.DirWatcher.FSEvents as FSEvents
import qualified System.OSX.FSEvents as FSEvents import qualified System.OSX.FSEvents as FSEvents
#endif #endif
#if WITH_WIN32NOTIFY #if WITH_WIN32NOTIFY
import qualified Utility.Win32Notify as Win32Notify import qualified Utility.DirWatcher.Win32Notify as Win32Notify
import qualified System.Win32.Notify as Win32Notify import qualified System.Win32.Notify as Win32Notify
#endif #endif

View file

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

View file

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

View file

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

View file

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