~ubuntu-branches/ubuntu/utopic/coreutils/utopic-proposed

« back to all changes in this revision

Viewing changes to m4/printf-frexpl.m4

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2012-11-28 03:03:42 UTC
  • mfrom: (8.3.4 sid)
  • Revision ID: package-import@ubuntu.com-20121128030342-21zanj8354gas5gr
Tags: 8.20-3ubuntu1
* Resynchronise with Debian.  Remaining changes:
  - Make 'uname -i -p' return the real processor/hardware, instead of
    unknown.
  - Build-depend on gettext:any instead of on gettext, so that apt-get can
    properly resolve build-dependencies on the tool when cross-building.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# printf-frexpl.m4 serial 7
2
 
dnl Copyright (C) 2007, 2009-2011 Free Software Foundation, Inc.
 
1
# printf-frexpl.m4 serial 10
 
2
dnl Copyright (C) 2007, 2009-2012 Free Software Foundation, Inc.
3
3
dnl This file is free software; the Free Software Foundation
4
4
dnl gives unlimited permission to copy and/or distribute it,
5
5
dnl with or without modifications, as long as this notice is preserved.
9
9
AC_DEFUN([gl_FUNC_PRINTF_FREXPL],
10
10
[
11
11
  AC_REQUIRE([gl_MATH_H_DEFAULTS])
 
12
  AC_REQUIRE([gl_LONG_DOUBLE_VS_DOUBLE])
 
13
 
12
14
  dnl Subset of gl_FUNC_FREXPL_NO_LIBM.
13
15
  gl_CHECK_FREXPL_NO_LIBM
14
16
  if test $gl_cv_func_frexpl_no_libm = yes; then
26
28
    AC_DEFINE([HAVE_FREXPL_IN_LIBC], [1],
27
29
      [Define if the frexpl function is available in libc.])
28
30
    dnl Also check whether it's declared.
29
 
    dnl MacOS X 10.3 has frexpl() in libc but doesn't declare it in <math.h>.
30
 
    AC_CHECK_DECL([frexpl], , [HAVE_DECL_FREXPL=0], [#include <math.h>])
 
31
    dnl Mac OS X 10.3 has frexpl() in libc but doesn't declare it in <math.h>.
 
32
    AC_CHECK_DECL([frexpl], , [HAVE_DECL_FREXPL=0], [[#include <math.h>]])
31
33
  fi
32
34
 
33
35
  gl_CHECK_LDEXPL_NO_LIBM
38
40
        AC_DEFINE([HAVE_LDEXPL_IN_LIBC], [1],
39
41
          [Define if the ldexpl function is available in libc.])
40
42
        dnl Also check whether it's declared.
41
 
        dnl MacOS X 10.3 has ldexpl() in libc but doesn't declare it in <math.h>.
42
 
        AC_CHECK_DECL([ldexpl], , [HAVE_DECL_LDEXPL=0], [#include <math.h>])
 
43
        dnl Mac OS X 10.3 has ldexpl() in libc but doesn't declare it in <math.h>.
 
44
        AC_CHECK_DECL([ldexpl], , [HAVE_DECL_LDEXPL=0], [[#include <math.h>]])
43
45
        ;;
44
46
    esac
45
47
  fi