aboutsummaryrefslogtreecommitdiff
path: root/tools/ac_converter.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2015-11-20 12:33:09 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2015-11-20 12:33:09 +0200
commit134468d4a50c43b9adf615e7af2dbb417e63618f (patch)
treec8815149d1eee1c557a709db2430b181314cbc50 /tools/ac_converter.py
parent86a6915077066385d480211a159dba764ef85d3d (diff)
downloadmeson-134468d4a50c43b9adf615e7af2dbb417e63618f.zip
meson-134468d4a50c43b9adf615e7af2dbb417e63618f.tar.gz
meson-134468d4a50c43b9adf615e7af2dbb417e63618f.tar.bz2
A few more checks for converter.
Diffstat (limited to 'tools/ac_converter.py')
-rwxr-xr-xtools/ac_converter.py4
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'),