summaryrefslogtreecommitdiff
path: root/gutils.c
diff options
context:
space:
mode:
authorManish Singh <yosh@src.gnome.org>1999-01-24 04:42:35 +0000
committerManish Singh <yosh@src.gnome.org>1999-01-24 04:42:35 +0000
commit90ca4040f668a5fcf08b2afc23dbbf0f9f663528 (patch)
tree6fcb047714aa14df000fe5030c4f145cf93dd9ef /gutils.c
parent448e792b0a9b092f9593eaa51e16acd8abe54c76 (diff)
downloadglib-90ca4040f668a5fcf08b2afc23dbbf0f9f663528.tar.gz
Moved the warning about MT and no getpwuid_r from gutils.c to configure
-Yosh
Diffstat (limited to 'gutils.c')
-rw-r--r--gutils.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/gutils.c b/gutils.c
index 74dac8abe..b9d56899c 100644
--- a/gutils.c
+++ b/gutils.c
@@ -479,12 +479,6 @@ g_get_any_init (void)
# else /* !HAVE_GETPWUID_R */
-# ifdef G_THREADS_ENABLED
-# warning "the `g_get_(user_name|real_name|home_dir|tmp_dir)'"
-# warning "functions will not be MT-safe during their first call"
-# warning "because there is no `getpwuid_r' on your system."
-# endif /* G_THREADS_ENABLED */
-
setpwent ();
pw = getpwuid (getuid ());
endpwent ();