futimens: Move AC_LIBOBJ invocations to module description.
authorBruno Haible <bruno@clisp.org>
Sat, 7 May 2011 11:45:40 +0000 (13:45 +0200)
committerBruno Haible <bruno@clisp.org>
Wed, 15 Jun 2011 22:06:01 +0000 (00:06 +0200)
* m4/futimens.m4 (gl_FUNC_FUTIMENS): Move AC_LIBOBJ invocations from
here...
* modules/futimens (configure.ac): ... to here.

ChangeLog
m4/futimens.m4
modules/futimens

index 9513a99d13f4c8bc10266484e5165fa39f8387d5..515c76a879b71c08166622e77f8f5d98ea98c8a9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2011-05-07  Bruno Haible  <bruno@clisp.org>
+
+       futimens: Move AC_LIBOBJ invocations to module description.
+       * m4/futimens.m4 (gl_FUNC_FUTIMENS): Move AC_LIBOBJ invocations from
+       here...
+       * modules/futimens (configure.ac): ... to here.
+
 2011-05-07  Bruno Haible  <bruno@clisp.org>
 
        ftruncate: Move AC_LIBOBJ invocations to module description.
index 72c6f25cbe4653e613070fc5b59622366c2a8a96..063db053962b1564f34b06528f8da2cfb4d41d74 100644 (file)
@@ -1,4 +1,4 @@
-# serial 5
+# serial 6
 # See if we need to provide futimens replacement.
 
 dnl Copyright (C) 2009-2011 Free Software Foundation, Inc.
@@ -15,7 +15,6 @@ AC_DEFUN([gl_FUNC_FUTIMENS],
   AC_CHECK_FUNCS_ONCE([futimens])
   if test $ac_cv_func_futimens = no; then
     HAVE_FUTIMENS=0
-    AC_LIBOBJ([futimens])
   else
     AC_CACHE_CHECK([whether futimens works],
       [gl_cv_func_futimens_works],
@@ -55,7 +54,6 @@ choke me
       rm -f conftest.file])
     if test "$gl_cv_func_futimens_works" != yes; then
       REPLACE_FUTIMENS=1
-      AC_LIBOBJ([futimens])
     fi
   fi
 ])
index 4ed403e9462832f7d179828ea73c933763c553e9..ab1c62d2bef0056d5bca6f97e2160c4df39c4517 100644 (file)
@@ -12,6 +12,9 @@ utimens         [test $HAVE_FUTIMENS = 0 || test $REPLACE_FUTIMENS = 1]
 
 configure.ac:
 gl_FUNC_FUTIMENS
+if test $HAVE_FUTIMENS = 0 || test $REPLACE_FUTIMENS = 1; then
+  AC_LIBOBJ([futimens])
+fi
 gl_SYS_STAT_MODULE_INDICATOR([futimens])
 
 Makefile.am: