getusershell: Move AC_LIBOBJ invocations to module description.
authorBruno Haible <bruno@clisp.org>
Sun, 8 May 2011 16:21:24 +0000 (18:21 +0200)
committerBruno Haible <bruno@clisp.org>
Wed, 15 Jun 2011 22:06:09 +0000 (00:06 +0200)
* m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): Set HAVE_GETUSERSHELL.
Move AC_LIBOBJ invocation from here...
* modules/getusershell (configure.ac): ... to here.
(Depends-on): Update condition.

ChangeLog
m4/getusershell.m4
modules/getusershell

index f2bb8acb8ab1526303b535e4be27f830230fed41..4b374c3da3d18ee921740d037e860070c4c43960 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2011-05-08  Bruno Haible  <bruno@clisp.org>
+
+       getusershell: Move AC_LIBOBJ invocations to module description.
+       * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): Set HAVE_GETUSERSHELL.
+       Move AC_LIBOBJ invocation from here...
+       * modules/getusershell (configure.ac): ... to here.
+       (Depends-on): Update condition.
+
 2011-05-08  Bruno Haible  <bruno@clisp.org>
 
        gettimeofday: Move AC_LIBOBJ invocations to module description.
index 1d74a00b22d450ec0a87fbcfa00fbaf601c645f0..a9f852f31622d64007fbe21bcb73f39270cc326f 100644 (file)
@@ -1,4 +1,4 @@
-# getusershell.m4 serial 6
+# getusershell.m4 serial 7
 dnl Copyright (C) 2002-2003, 2006, 2008-2011 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
@@ -14,13 +14,14 @@ AC_DEFUN([gl_FUNC_GETUSERSHELL],
   dnl Check whether the getusershell function exists.
   AC_CHECK_FUNCS_ONCE([getusershell])
   if test $ac_cv_func_getusershell = yes; then
+    HAVE_GETUSERSHELL=1
     dnl Check whether getusershell is declared.
     AC_CHECK_DECLS([getusershell])
     if test $ac_cv_have_decl_getusershell = no; then
       HAVE_DECL_GETUSERSHELL=0
     fi
   else
-    AC_LIBOBJ([getusershell])
+    HAVE_GETUSERSHELL=0
     dnl Assume that on platforms which declare it, the function exists.
     HAVE_DECL_GETUSERSHELL=0
   fi
index 56e8b5f0e0d37f0a47c11dcc3839711bc0349ab3..26f99e58cadecc1839668e717ad446327f9dbf58 100644 (file)
@@ -8,11 +8,14 @@ m4/getusershell.m4
 Depends-on:
 unistd
 extensions
-fopen-safer     [test $ac_cv_func_getusershell = no]
-xalloc          [test $ac_cv_func_getusershell = no]
+fopen-safer     [test $HAVE_GETUSERSHELL = 0]
+xalloc          [test $HAVE_GETUSERSHELL = 0]
 
 configure.ac:
 gl_FUNC_GETUSERSHELL
+if test $HAVE_GETUSERSHELL = 0; then
+  AC_LIBOBJ([getusershell])
+fi
 gl_UNISTD_MODULE_INDICATOR([getusershell])
 
 Makefile.am: