summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2015-07-21 23:30:54 +0100
committerPeter Powell <petpow@saberuk.com>2015-07-21 23:30:54 +0100
commit4c751dbbe8945e5efc230a59b0ed51c2ba10cf92 (patch)
tree6344bf1fbc1af160ca2e2b65ca9a72eed775b7f4 /configure
parente5cfa9c0c295596f688a18f5562cbb73b8e3997c (diff)
Switch <stdint.h> test to use a test file too.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure10
1 files changed, 2 insertions, 8 deletions
diff --git a/configure b/configure
index 2eba9edb1..fd00ff89c 100755
--- a/configure
+++ b/configure
@@ -353,14 +353,8 @@ $exec = $config{CC} . " -dumpversion | cut -c 3";
chomp($config{GCCMINOR} = `$exec`);
printf "Checking if stdint.h exists... ";
-$config{HAS_STDINT} = "true";
-our $fail = 0;
-open(STDINT, "</usr/include/stdint.h") or $config{HAS_STDINT} = "false";
-if ($config{HAS_STDINT} eq "true") {
- close(STDINT);
-}
-print "yes\n" if $config{HAS_STDINT} eq "true";
-print "no\n" if $config{HAS_STDINT} eq "false";
+$config{HAS_STDINT} = test_compile('stdint');
+print $config{HAS_STDINT} ? "yes\n" : "no\n";
printf "Checking if strlcpy exists... ";
$config{HAS_STRLCPY} = test_compile('strlcpy');