Codebase list genomethreader / 9185426
fix builds on some archs by removing -m32/-m64 Sascha Steinbiss 4 years ago
3 changed file(s) with 26 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 genomethreader (1.7.3+dfsg-2) unstable; urgency=medium
1
2 * Fix builds on some archs by removing -m32/-m64.
3
4 -- Sascha Steinbiss <satta@debian.org> Thu, 23 Jan 2020 00:02:20 +0100
5
06 genomethreader (1.7.3+dfsg-1) unstable; urgency=medium
17
28 * Initial release (Closes: #948526)
0 --- a/Makefile
1 +++ b/Makefile
2 @@ -108,16 +108,6 @@
3 BIT=32bit
4 endif
5
6 -ifeq ($(m32),yes)
7 - GTH_CFLAGS += -m32
8 - GTH_LDFLAGS += -m32
9 -endif
10 -
11 -ifeq ($(m64),yes)
12 - GTH_CFLAGS += -m64
13 - GTH_LDFLAGS += -m64
14 -endif
15 -
16 # libraries for which we build replacements (that also appear in dependencies)
17 #EXP_LDLIBS+=-lz -lbz2 -lm -ldl
18 #OVERRIDELIBS:=../genometools/lib/libbz2.a
11 gt-path-fix.patch
22 hardening.patch
33 search-paths.patch
4 m32-m64-ignore.patch