File: 0002-disable-bitwidth-guessing.patch

package info (click to toggle)
pseudo 1.9.0%2Bgit20180920-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,804 kB
  • sloc: ansic: 12,135; sh: 800; python: 752; makefile: 159
file content (36 lines) | stat: -rw-r--r-- 772 bytes parent folder | download | duplicates (2)
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