~ubuntu-branches/ubuntu/intrepid/parted/intrepid

« back to all changes in this revision

Viewing changes to gnulib/modules/math

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2008-06-24 14:31:05 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20080624143105-rd7yw67a9qnvh51i
Tags: 1.8.8.git.2008.03.24-7ubuntu1
* Resynchronise with Debian (LP: #237568). Remaining changes:
  - swap-uuid.dpatch: Create UUIDs on new swap partitions.
  - gptsync.dpatch: On Intel Mac systems, write a synced MBR rather than a
    protective MBR.
  - Add -fno-stack-protector on sparc.
  - sparc-new-label.dpatch: Fix sparc disk label generation. This is
    required for LDOM and parallel installations with Solaris 10.
  - loop-partitions.dpatch: Loop devices can only have one partition, so
    don't generate device names such as "/dev/loop0p1".
  - unpartitioned-disks.dpatch: Don't try to call BLKPG ioctls on
    unpartitionable disks (only implemented for loop devices at the
    moment), as they will always fail.
  - When building with gcc-4.3, add -Wno-array-bounds to CFLAGS.
  - Cell partition tables are misdetected as pc98, so disable pc98 support
    on powerpc.
  - array-bounds.dpatch: Backport patch from git to allow building with
    gcc-4.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Description:
 
2
A GNU-like <math.h>.
 
3
 
 
4
Files:
 
5
lib/math_.h
 
6
m4/math_h.m4
 
7
 
 
8
Depends-on:
 
9
include_next
 
10
link-warning
 
11
 
 
12
configure.ac:
 
13
gl_MATH_H
 
14
 
 
15
Makefile.am:
 
16
BUILT_SOURCES += math.h
 
17
 
 
18
# We need the following in order to create <math.h> when the system
 
19
# doesn't have one that works with the given compiler.
 
20
math.h: math_.h
 
21
        rm -f $@-t $@
 
22
        { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
 
23
          sed -e 's/@''INCLUDE_NEXT''@/$(INCLUDE_NEXT)/g' \
 
24
              -e 's|@''NEXT_MATH_H''@|$(NEXT_MATH_H)|g' \
 
25
              -e 's|@''GNULIB_FREXP''@|$(GNULIB_FREXP)|g' \
 
26
              -e 's|@''GNULIB_FREXPL''@|$(GNULIB_FREXPL)|g' \
 
27
              -e 's|@''GNULIB_LDEXPL''@|$(GNULIB_LDEXPL)|g' \
 
28
              -e 's|@''GNULIB_MATHL''@|$(GNULIB_MATHL)|g' \
 
29
              -e 's|@''GNULIB_SIGNBIT''@|$(GNULIB_SIGNBIT)|g' \
 
30
              -e 's|@''HAVE_DECL_ACOSL''@|$(HAVE_DECL_ACOSL)|g' \
 
31
              -e 's|@''HAVE_DECL_ASINL''@|$(HAVE_DECL_ASINL)|g' \
 
32
              -e 's|@''HAVE_DECL_ATANL''@|$(HAVE_DECL_ATANL)|g' \
 
33
              -e 's|@''HAVE_DECL_CEILL''@|$(HAVE_DECL_CEILL)|g' \
 
34
              -e 's|@''HAVE_DECL_COSL''@|$(HAVE_DECL_COSL)|g' \
 
35
              -e 's|@''HAVE_DECL_EXPL''@|$(HAVE_DECL_EXPL)|g' \
 
36
              -e 's|@''HAVE_DECL_FLOORL''@|$(HAVE_DECL_FLOORL)|g' \
 
37
              -e 's|@''HAVE_DECL_FREXPL''@|$(HAVE_DECL_FREXPL)|g' \
 
38
              -e 's|@''HAVE_DECL_LDEXPL''@|$(HAVE_DECL_LDEXPL)|g' \
 
39
              -e 's|@''HAVE_DECL_LOGL''@|$(HAVE_DECL_LOGL)|g' \
 
40
              -e 's|@''HAVE_DECL_SINL''@|$(HAVE_DECL_SINL)|g' \
 
41
              -e 's|@''HAVE_DECL_SQRTL''@|$(HAVE_DECL_SQRTL)|g' \
 
42
              -e 's|@''HAVE_DECL_TANL''@|$(HAVE_DECL_TANL)|g' \
 
43
              -e 's|@''REPLACE_FREXP''@|$(REPLACE_FREXP)|g' \
 
44
              -e 's|@''REPLACE_FREXPL''@|$(REPLACE_FREXPL)|g' \
 
45
              -e 's|@''REPLACE_LDEXPL''@|$(REPLACE_LDEXPL)|g' \
 
46
              -e 's|@''REPLACE_SIGNBIT''@|$(REPLACE_SIGNBIT)|g' \
 
47
              -e '/definition of GL_LINK_WARNING/r $(LINK_WARNING_H)' \
 
48
              < $(srcdir)/math_.h; \
 
49
        } > $@-t
 
50
        mv $@-t $@
 
51
MOSTLYCLEANFILES += math.h math.h-t
 
52
 
 
53
Include:
 
54
<math.h>
 
55
 
 
56
License:
 
57
LGPL
 
58
 
 
59
Maintainer:
 
60
all