From 9a1eb39a6018cdf98de8518a9dd68c67098b6dcb Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sun, 25 Aug 2002 22:04:43 +0000 Subject: Kill the HAS_LONG_LONG option. It really did not make a lot of sense to exclude it, gcc always supports long long, and we never fully excluded long long anyways (off64_t for example). -Erik --- extra/Configs/uClibc_config_fix.pl | 7 ------- 1 file changed, 7 deletions(-) (limited to 'extra/Configs/uClibc_config_fix.pl') diff --git a/extra/Configs/uClibc_config_fix.pl b/extra/Configs/uClibc_config_fix.pl index 7988dff8b..0ea84dcec 100755 --- a/extra/Configs/uClibc_config_fix.pl +++ b/extra/Configs/uClibc_config_fix.pl @@ -44,7 +44,6 @@ my($mmu) = ""; my($large_file) = ""; my($rpc_support) = ""; my($c99_math) = ""; -my($long_long) = ""; my($float) = ""; my($threads) = ""; my($shadow) = ""; @@ -69,7 +68,6 @@ Getopt::Long::Configure("no_ignore_case", "bundling"); "large_file=s" => \$large_file, "rpc_support=s" => \$rpc_support, "c99_math=s" => \$c99_math, - "long_long=s" => \$long_long, "float=s" => \$float, "threads=s" => \$threads, "shadow=s" => \$shadow, @@ -88,7 +86,6 @@ chomp($mmu); chomp($large_file); chomp($rpc_support); chomp($c99_math); -chomp($long_long); chomp($float); chomp($threads); chomp($shadow); @@ -154,10 +151,6 @@ while($line = ) { print "DO_C99_MATH=$c99_math\n"; next; } - if ($long_long && $line =~ /^HAS_LONG_LONG.*/) { - print "HAS_LONG_LONG=$long_long\n"; - next; - } if ($float && $line =~ /^HAS_FLOATING_POINT.*/) { print "HAS_FLOATING_POINT=$float\n"; next; -- cgit v1.2.3