1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
From: Andrew Shadura <andrewsh@debian.org>
Date: Fri, 29 Apr 2016 12:14:08 +0200
X-Dgit-Generated: 1.7.5-2 505a1b005eb8b429ec5823fbf246578372f140c7
Subject: [PATCH] Disable bitwidth guessing.
---
configure | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/configure b/configure
index e5ef9ce..2be0644 100755
--- a/configure
+++ b/configure
@@ -32,8 +32,8 @@ opt_xattrdb=false
opt_profile=false
opt_passwd_fallback='""'
-compile_x86_32=-m32
-compile_x86_64=-m64
+compile_x86_32=
+compile_x86_64=
usage()
{
@@ -193,7 +193,7 @@ if [ -z "$opt_bits" ]; then
fi
case $opt_bits in
-64) opt_mark64=64;;
+64) opt_mark64=;;
32) opt_mark64=;;
*) echo >&2 "Unknown bit size $opt_bits (only 32 and 64 known)."
;;
--
2.7.4
|