aboutsummaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-03-14 12:44:56 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-03-14 12:44:56 +0000
commitd65587b06c09effe1007b5fcc7f9ca8df98f7caa (patch)
treee0f4c77492de7f510d957861c2141108405dc13e /configure.in
parent1ab0134522400d3a75180f4bc9e36ecb6059b82e (diff)
improved "deeper" check
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index e177c08ed..367d5770a 100644
--- a/configure.in
+++ b/configure.in
@@ -758,8 +758,9 @@ dnl if not found, $ac_func is the name we check for
AC_TRY_LINK( [],
[ $func ();],
AC_MSG_RESULT(yes!)
+ eval "ac_cv_func_$func=yes"
def=`echo "HAVE_$func" | tr 'a-z' 'A-Z'`
- AC_DEFINE($def, 1, [If you have $func]),
+ AC_DEFINE_UNQUOTED($def, 1, [If you have $func]),
AC_MSG_RESULT(but still no)
)