frexpl*: Respect rules for use of AC_LIBOBJ.
authorBruno Haible <bruno@clisp.org>
Sat, 21 May 2011 00:58:01 +0000 (02:58 +0200)
committerBruno Haible <bruno@clisp.org>
Wed, 15 Jun 2011 22:06:15 +0000 (00:06 +0200)
* m4/frexpl.m4 (gl_FUNC_FREXPL, gl_FUNC_FREXPL_NO_LIBM): Move AC_LIBOBJ
invocation from here...
* modules/frexpl (configure.ac): ... to here.
* modules/frexpl-nolibm (configure.ac): ... and here.

ChangeLog
m4/frexpl.m4
modules/frexpl
modules/frexpl-nolibm

index 306d6098c776abc60ac80386f2d0b0440cc82851..85d6656183ec0dc8c897fa36a0f150092021f8ae 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2011-05-20  Bruno Haible  <bruno@clisp.org>
+
+       frexpl*: Respect rules for use of AC_LIBOBJ.
+       * m4/frexpl.m4 (gl_FUNC_FREXPL, gl_FUNC_FREXPL_NO_LIBM): Move AC_LIBOBJ
+       invocation from here...
+       * modules/frexpl (configure.ac): ... to here.
+       * modules/frexpl-nolibm (configure.ac): ... and here.
+
 2011-05-20  Bruno Haible  <bruno@clisp.org>
 
        frexp, frexp-nolibm: Move AC_LIBOBJ invocations to module description.
index 49d8821ce4a3fc4d4ff8d15df42828cc7da6cdf2..63fcb1a8b4100644c17269449c37a7560e11a21e 100644 (file)
@@ -1,4 +1,4 @@
-# frexpl.m4 serial 13
+# frexpl.m4 serial 14
 dnl Copyright (C) 2007-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,
@@ -50,9 +50,6 @@ AC_DEFUN([gl_FUNC_FREXPL],
         [Define if the frexpl() function is available.])
     fi
   fi
-  if test $HAVE_DECL_FREXPL = 0 || test $gl_func_frexpl = no; then
-    AC_LIBOBJ([frexpl])
-  fi
   AC_SUBST([FREXPL_LIBM])
 ])
 
@@ -80,9 +77,6 @@ AC_DEFUN([gl_FUNC_FREXPL_NO_LIBM],
         [Define if the frexpl() function is available in libc.])
     fi
   fi
-  if test $HAVE_DECL_FREXPL = 0 || test $gl_func_frexpl_no_libm = no; then
-    AC_LIBOBJ([frexpl])
-  fi
 ])
 
 dnl Test whether frexpl() can be used without linking with libm.
index d1f0159b638cf4fd43bcfcb4e771de5825bd22a8..9902aff0e0d2096140b59de62063bb4c9b8f35a8 100644 (file)
@@ -13,6 +13,9 @@ fpucw           [test $HAVE_DECL_FREXPL = 0 || test $gl_func_frexpl = no]
 
 configure.ac:
 gl_FUNC_FREXPL
+if test $HAVE_DECL_FREXPL = 0 || test $gl_func_frexpl = no; then
+  AC_LIBOBJ([frexpl])
+fi
 gl_MATH_MODULE_INDICATOR([frexpl])
 
 Makefile.am:
index dbe1a82820797266f765adc3f513e141afe8f9a5..ec1acd2f09f0199e601fa4a9d0ab954b8a658705 100644 (file)
@@ -14,6 +14,9 @@ fpucw           [test $HAVE_DECL_FREXPL = 0 || test $gl_func_frexpl_no_libm = no
 
 configure.ac:
 gl_FUNC_FREXPL_NO_LIBM
+if test $HAVE_DECL_FREXPL = 0 || test $gl_func_frexpl_no_libm = no; then
+  AC_LIBOBJ([frexpl])
+fi
 gl_MATH_MODULE_INDICATOR([frexpl])
 
 Makefile.am: