Mercurial > hg > octave-jordi > gnulib-hg
view m4/asinf.m4 @ 17587:344018b6e5d7
maint: update copyright
I ran 'make update-copyright'.
Signed-off-by: Eric Blake <eblake@redhat.com>
author | Eric Blake <eblake@redhat.com> |
---|---|
date | Wed, 01 Jan 2014 00:04:40 -0700 |
parents | e542fd46ad6f |
children | ab58d4870664 |
line wrap: on
line source
# asinf.m4 serial 2 dnl Copyright (C) 2011-2014 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. AC_DEFUN([gl_FUNC_ASINF], [ AC_REQUIRE([gl_MATH_H_DEFAULTS]) AC_REQUIRE([gl_FUNC_ASIN]) dnl Persuade glibc <math.h> to declare asinf(). AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS]) dnl Test whether asinf() exists. Assume that asinf(), if it exists, is dnl defined in the same library as asin(). save_LIBS="$LIBS" LIBS="$LIBS $ASIN_LIBM" AC_CHECK_FUNCS([asinf]) LIBS="$save_LIBS" if test $ac_cv_func_asinf = yes; then ASINF_LIBM="$ASIN_LIBM" else HAVE_ASINF=0 ASINF_LIBM="$ASIN_LIBM" fi AC_SUBST([ASINF_LIBM]) ])