mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
gutils: Disable some dead code on macOS
This code isn’t used when building on macOS, so ifdef it out to avoid a compiler warning. Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
This commit is contained in:
parent
81a31fd062
commit
6554af0320
@ -1368,7 +1368,7 @@ get_windows_version (gboolean with_windows)
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef G_OS_UNIX
|
||||
#if defined (G_OS_UNIX) && !defined (__APPLE__)
|
||||
static gchar *
|
||||
get_os_info_from_os_release (const gchar *key_name,
|
||||
const gchar *buffer)
|
||||
@ -1497,7 +1497,7 @@ get_os_info_from_uname (const gchar *key_name)
|
||||
else
|
||||
return NULL;
|
||||
}
|
||||
#endif
|
||||
#endif /* defined (G_OS_UNIX) && !defined (__APPLE__) */
|
||||
|
||||
/**
|
||||
* g_get_os_info:
|
||||
|
@ -553,7 +553,7 @@ test_os_info (void)
|
||||
{
|
||||
gchar *name;
|
||||
gchar *contents = NULL;
|
||||
#ifdef G_OS_UNIX
|
||||
#if defined (G_OS_UNIX) && !(defined (G_OS_WIN32) || defined (__APPLE__))
|
||||
struct utsname info;
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user