summaryrefslogtreecommitdiff
path: root/ACE/configure.ac
diff options
context:
space:
mode:
authorolli <olli@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2010-03-15 20:11:18 +0000
committerolli <olli@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2010-03-15 20:11:18 +0000
commit81be68600d9562610a55b38cd10cae5b805b1d1e (patch)
tree0f7a43a471d5f72be3031a98035a33adad214b2a /ACE/configure.ac
parent2a42f97243cc2fea7ab69d91303a19910d248325 (diff)
downloadATCD-81be68600d9562610a55b38cd10cae5b805b1d1e.tar.gz
ChangeLogTag: Mon Mar 15 20:08:32 UTC 2010 Olli Savia <ops@iki.fi>
Diffstat (limited to 'ACE/configure.ac')
-rw-r--r--ACE/configure.ac9
1 files changed, 0 insertions, 9 deletions
diff --git a/ACE/configure.ac b/ACE/configure.ac
index 0aaf812b418..5187eba6b1b 100644
--- a/ACE/configure.ac
+++ b/ACE/configure.ac
@@ -3306,15 +3306,6 @@ ACE_CHECK_LACKS_FUNCS(strtoul)
ACE_FUNC_STRTOULL
-ACE_CHECK_LACKS_FUNCS(floor ceil)
-# floorl and ceill are somtimes present (maybe as a stub) in the math
-# library but not declared in any header. To avoid introducing an
-# undocumented dependency, try these as decls first.
-AH_TEMPLATE([ACE_LACKS_CEILL], [Platform lacks the ceill() function])
-AH_TEMPLATE([ACE_LACKS_FLOORL], [Platform lacks the floorl() function])
-AC_CHECK_DECL(ceill,[],[AC_DEFINE([ACE_LACKS_CEILL])])
-AC_CHECK_DECL(floorl,[],[AC_DEFINE([ACE_LACKS_FLOORL])])
-
# swab() comes in a number of forms:
# swab (const void*, void*, size_t) is POSIX, XPG4, SUS, SUSv2 standard.
# swab (const char*, char*, size_t) is SVID third edition.