diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-11-25 09:52:19 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-11-25 09:52:19 +0000 |
commit | d2a27e02cebb9e352adab19ffb1e1e657d6cd5c5 (patch) | |
tree | 891ec9f8e843e879446e7ea4fffba5b2cd4910ad | |
parent | b55506a76d1941a1ff201b0d43db28dfea15da47 (diff) |
Doug Kaufman corrected my attempt to a generic "skip extra test for function
F"
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 1bd616ef0..c405010d2 100644 --- a/configure.ac +++ b/configure.ac @@ -1549,7 +1549,8 @@ dnl if found [], dnl if not found, $ac_func is the name we check for func="$ac_func" -if test "skipcheck_$func" != "yes"; then +eval skipcheck=\$skipcheck_$func +if test "x$skipcheck" != "xyes"; then AC_MSG_CHECKING([deeper for $func]) AC_TRY_LINK( [], [ $func ();], |