diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2015-11-20 12:33:09 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2015-11-20 12:33:09 +0200 |
commit | 134468d4a50c43b9adf615e7af2dbb417e63618f (patch) | |
tree | c8815149d1eee1c557a709db2430b181314cbc50 | |
parent | 86a6915077066385d480211a159dba764ef85d3d (diff) | |
download | meson-134468d4a50c43b9adf615e7af2dbb417e63618f.zip meson-134468d4a50c43b9adf615e7af2dbb417e63618f.tar.gz meson-134468d4a50c43b9adf615e7af2dbb417e63618f.tar.bz2 |
A few more checks for converter.
-rwxr-xr-x | tools/ac_converter.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/ac_converter.py b/tools/ac_converter.py index 7408864..c7dbd37 100755 --- a/tools/ac_converter.py +++ b/tools/ac_converter.py @@ -213,17 +213,21 @@ function_data = \ 'HAVE_ATAN2': ('atan2', 'math.h'), 'HAVE_ACOS': ('acos', 'math.h'), 'HAVE_ASIN': ('asin', 'math.h'), + 'HAVE_ASINH': ('asinh', 'math.h'), 'HAVE_CEIL': ('ceil', 'math.h'), 'HAVE_COPYSIGN': ('copysign', 'math.h'), 'HAVE_COS': ('cos', 'math.h'), + 'HAVE_COSH': ('cosh', 'math.h'), 'HAVE_COSF': ('cosf', 'math.h'), 'HAVE_FABS': ('fabs', 'math.h'), 'HAVE_FLOOR': ('floor', 'math.h'), + 'HAVE_ISINF': ('isinf', 'math.h'), 'HAVE_LOG': ('log', 'math.h'), 'HAVE_POW': ('pow', 'math.h'), 'HAVE_SCALBN': ('scalbn', 'math.h'), 'HAVE_SIN': ('sin', 'math.h'), 'HAVE_SINF': ('sinf', 'math.h'), + 'HAVE_SINH': ('sinh', 'math.h'), 'HAVE_SQRT': ('sqrt', 'math.h'), 'HAVE_FSEEKO': ('fseeko', 'stdio.h'), 'HAVE_FSEEKO64': ('fseeko64', 'stdio.h'), |