mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-02 09:16:17 +01:00
gio: Remove remaining references to fen file monitor
It used to exist on Solaris, but GLib’s support for it was mostly
removed in 2015 in commit 21ab660cf8
.
Remove the final few references.
Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
This commit is contained in:
parent
e951bf1ae3
commit
2759dd71be
@ -4,7 +4,6 @@ if get_option('gtk_doc')
|
||||
|
||||
ignore_headers = [
|
||||
'fam',
|
||||
'fen',
|
||||
'gdbus-2.0',
|
||||
'gvdb',
|
||||
'inotify',
|
||||
|
@ -392,7 +392,7 @@ Gvfs is also heavily distributed and relies on a session bus to be present.
|
||||
The #GFileMonitor implementation for local files that is included
|
||||
in GIO on Linux has the name <literal>inotify</literal>, others that are built
|
||||
are built as modules (depending on the platform) are called
|
||||
<literal>fam</literal> and <literal>fen</literal>.
|
||||
<literal>fam</literal>, <literal>kqueue</literal> and <literal>win32filemonitor</literal>.
|
||||
</para><para>
|
||||
The special value <literal>help</literal> can be used to print a list of
|
||||
available implementations to standard output.
|
||||
|
@ -1065,7 +1065,6 @@ _g_io_module_get_default (const gchar *extension_point,
|
||||
G_LOCK_DEFINE_STATIC (registered_extensions);
|
||||
G_LOCK_DEFINE_STATIC (loaded_dirs);
|
||||
|
||||
extern GType g_fen_file_monitor_get_type (void);
|
||||
extern GType g_inotify_file_monitor_get_type (void);
|
||||
extern GType g_kqueue_file_monitor_get_type (void);
|
||||
extern GType g_win32_file_monitor_get_type (void);
|
||||
@ -1329,9 +1328,6 @@ _g_io_modules_ensure_loaded (void)
|
||||
#if defined(HAVE_KQUEUE)
|
||||
g_type_ensure (g_kqueue_file_monitor_get_type ());
|
||||
#endif
|
||||
#if defined(HAVE_FEN)
|
||||
g_type_ensure (g_fen_file_monitor_get_type ());
|
||||
#endif
|
||||
#ifdef G_OS_WIN32
|
||||
g_type_ensure (_g_win32_volume_monitor_get_type ());
|
||||
g_type_ensure (g_win32_file_monitor_get_type ());
|
||||
|
Loading…
Reference in New Issue
Block a user