Package: pseudo / 1.9.0+git20200626+067950b-2

0002-disable-bitwidth-guessing.patch Patch series | download
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
From: Andrej Shadura <andrewsh@debian.org>
Date: Fri, 29 Apr 2016 12:14:08 +0200
X-Dgit-Generated: 1.7.5-2 505a1b005eb8b429ec5823fbf246578372f140c7
Subject: Disable bitwidth guessing.

---
 configure | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/configure b/configure
index 39b5fbe..ccbafe8 100755
--- a/configure
+++ b/configure
@@ -22,8 +22,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()
 {
@@ -191,7 +191,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)."
        ;;