diff options
-rw-r--r-- | Utility/DirWatcher.hs | 8 | ||||
-rw-r--r-- | Utility/DirWatcher/FSEvents.hs (renamed from Utility/FSEvents.hs) | 2 | ||||
-rw-r--r-- | Utility/DirWatcher/INotify.hs (renamed from Utility/INotify.hs) | 2 | ||||
-rw-r--r-- | Utility/DirWatcher/Kqueue.hs (renamed from Utility/Kqueue.hs) | 2 | ||||
-rw-r--r-- | Utility/DirWatcher/Win32Notify.hs (renamed from Utility/Win32Notify.hs) | 2 |
5 files changed, 8 insertions, 8 deletions
diff --git a/Utility/DirWatcher.hs b/Utility/DirWatcher.hs index 5231286fc..9eeddce3d 100644 --- a/Utility/DirWatcher.hs +++ b/Utility/DirWatcher.hs @@ -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 diff --git a/Utility/FSEvents.hs b/Utility/DirWatcher/FSEvents.hs index d6663e9d7..18c73ec57 100644 --- a/Utility/FSEvents.hs +++ b/Utility/DirWatcher/FSEvents.hs @@ -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 diff --git a/Utility/INotify.hs b/Utility/DirWatcher/INotify.hs index ffdad8be3..922f202a4 100644 --- a/Utility/INotify.hs +++ b/Utility/DirWatcher/INotify.hs @@ -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 diff --git a/Utility/Kqueue.hs b/Utility/DirWatcher/Kqueue.hs index eb5feab00..3ddef603f 100644 --- a/Utility/Kqueue.hs +++ b/Utility/DirWatcher/Kqueue.hs @@ -7,7 +7,7 @@ {-# LANGUAGE ForeignFunctionInterface #-} -module Utility.Kqueue ( +module Utility.DirWatcher.Kqueue ( Kqueue, initKqueue, stopKqueue, diff --git a/Utility/Win32Notify.hs b/Utility/DirWatcher/Win32Notify.hs index edde5309c..74b36b4f1 100644 --- a/Utility/Win32Notify.hs +++ b/Utility/DirWatcher/Win32Notify.hs @@ -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 |