X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=m4%2Fgetlogin_r.m4;h=8e5a2a3c58c4c4155fc868d5d939cf3368ccc17a;hb=959d9cb463d992f9c5cc2fbeb54bf12eee2346f7;hp=589d626a229169ab06191f1fa75b5983f610617e;hpb=e65015aeff792b6741accb73e55dcb44efa82618;p=gnulib.git diff --git a/m4/getlogin_r.m4 b/m4/getlogin_r.m4 index 589d626a2..8e5a2a3c5 100644 --- a/m4/getlogin_r.m4 +++ b/m4/getlogin_r.m4 @@ -1,6 +1,6 @@ -#serial 3 +#serial 4 -# Copyright (C) 2005, 2006 Free Software Foundation, Inc. +# Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -11,23 +11,23 @@ dnl dnl Provide getlogin_r when the system lacks it. dnl -AC_DEFUN([gl_GETLOGIN_R_SUBSTITUTE], -[ - gl_PREREQ_GETLOGIN_R - AC_LIBOBJ([getlogin_r]) -]) - AC_DEFUN([gl_GETLOGIN_R], [ - AC_REPLACE_FUNCS([getlogin_r]) + AC_REQUIRE([gl_UNISTD_H_DEFAULTS]) + AC_CHECK_FUNCS_ONCE([getlogin_r]) if test $ac_cv_func_getlogin_r = no; then - gl_GETLOGIN_R_SUBSTITUTE + AC_LIBOBJ([getlogin_r]) + gl_PREREQ_GETLOGIN_R + if test $ac_cv_have_decl_getlogin_r = yes; then + HAVE_DECL_GETLOGIN_R=1 + else + HAVE_DECL_GETLOGIN_R=0 + fi fi ]) AC_DEFUN([gl_PREREQ_GETLOGIN_R], [ - AC_CHECK_HEADERS_ONCE([unistd.h]) AC_CHECK_DECLS_ONCE([getlogin]) AC_CHECK_DECLS_ONCE([getlogin_r]) ])