summaryrefslogtreecommitdiff
path: root/lib/make/configure.in
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-04-24 17:36:42 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-04-24 17:36:42 +0000
commita1d6e94c681d4015e2c42ea7bfc12e0725478437 (patch)
tree42c54ba6b8b7300713b760d593afd18053180172 /lib/make/configure.in
parentb3e37e4180365035d351528c59da3cfef0842885 (diff)
Added configure check for finite(3).
git-svn-id: http://svn.cactuscode.org/flesh/trunk@2135 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/make/configure.in')
-rw-r--r--lib/make/configure.in11
1 files changed, 8 insertions, 3 deletions
diff --git a/lib/make/configure.in b/lib/make/configure.in
index 5ebcfb60..f31b2bb8 100644
--- a/lib/make/configure.in
+++ b/lib/make/configure.in
@@ -486,7 +486,9 @@ AC_DEFINE(HAVE_BOOL))
AC_LANG_RESTORE
fi
-dnl Misc stuff
+dnl #######################################################################
+dnl ############################ Misc stuff ###############################
+dnl #######################################################################
dnl Do we need to build the GNU getopt and regex stuff ?
@@ -510,8 +512,11 @@ fi
dnl Do we have crypt(3)
-CCTK_CHECK_FUNC(crypt, ,
-CCTK_CHECK_LIB_FUNC(crypt, crypt))
+CCTK_CHECK_FUNC(crypt, , CCTK_CHECK_LIB_FUNC(crypt, crypt))
+
+dnl Do we have finite(3)
+
+CCTK_CHECK_FUNCS(finite, , CCTK_CHECK_LIB_FUNC(m, finite))
dnl Checks for availability of pthreads library.