extern-inline: make safe for -Wundef usage
[gnulib.git] / modules / remainder
index f5a8dd9..721707f 100644 (file)
@@ -8,12 +8,16 @@ m4/mathfunc.m4
 
 Depends-on:
 math
-round           [test $HAVE_REMAINDER = 0]
-fma             [test $HAVE_REMAINDER = 0]
+isfinite        [test $HAVE_REMAINDER = 0 || test $REPLACE_REMAINDER = 1]
+signbit         [test $HAVE_REMAINDER = 0 || test $REPLACE_REMAINDER = 1]
+fabs            [test $HAVE_REMAINDER = 0 || test $REPLACE_REMAINDER = 1]
+fmod            [test $HAVE_REMAINDER = 0 || test $REPLACE_REMAINDER = 1]
+isnand          [test $HAVE_REMAINDER = 0 || test $REPLACE_REMAINDER = 1]
+isinf           [test $HAVE_REMAINDER = 0 || test $REPLACE_REMAINDER = 1]
 
 configure.ac:
 gl_FUNC_REMAINDER
-if test $HAVE_REMAINDER = 0; then
+if test $HAVE_REMAINDER = 0 || test $REPLACE_REMAINDER = 1; then
   AC_LIBOBJ([remainder])
 fi
 gl_MATH_MODULE_INDICATOR([remainder])