Fix up FEN ifdefs

2008-03-14  Alexander Larsson  <alexl@redhat.com>

        * giomodule.c:
        (_g_io_modules_ensure_loaded):
	Fix up FEN ifdefs


svn path=/trunk/; revision=6705
This commit is contained in:
Alexander Larsson
2008-03-14 09:45:44 +00:00
committed by Alexander Larsson
parent 7437486b36
commit 9555a3a2ca
2 changed files with 11 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
2008-03-14 Alexander Larsson <alexl@redhat.com>
* giomodule.c:
(_g_io_modules_ensure_loaded):
Fix up FEN ifdefs
2008-03-14 Alexander Larsson <alexl@redhat.com>
* glocalfile.c:

View File

@@ -333,10 +333,14 @@ _g_io_modules_ensure_loaded (void)
#if defined(HAVE_SYS_INOTIFY_H) || defined(HAVE_LINUX_INOTIFY_H)
_g_inotify_directory_monitor_get_type ();
_g_inotify_file_monitor_get_type ();
#elif defined(HAVE_FEN)
#endif
#if defined(HAVE_FEN)
_g_fen_directory_monitor_get_type ();
_g_fen_file_monitor_get_type ();
#endif
#ifdef G_OS_WIN32
g_win32_directory_monitor_get_type ();
#endif
#ifdef G_OS_UNIX
_g_unix_volume_monitor_get_type ();
#endif