summaryrefslogtreecommitdiff
path: root/extra/Configs/uClibc_config_fix.pl
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-08-25 22:04:43 +0000
committerEric Andersen <andersen@codepoet.org>2002-08-25 22:04:43 +0000
commit9a1eb39a6018cdf98de8518a9dd68c67098b6dcb (patch)
tree9064a01a4f45f3c68df901b7182f91debc2da7d7 /extra/Configs/uClibc_config_fix.pl
parente320f52df9f172fa3fee4218029a2f4dd4fefbfd (diff)
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
Diffstat (limited to 'extra/Configs/uClibc_config_fix.pl')
-rwxr-xr-xextra/Configs/uClibc_config_fix.pl7
1 files changed, 0 insertions, 7 deletions
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 = <FILE>) {
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;