gpsbabel: fix build on i686
This commit is contained in:
parent
fece57da45
commit
89e22a78b7
@ -20,7 +20,10 @@ stdenv.mkDerivation rec {
|
||||
But FOP isn't packaged yet. */
|
||||
|
||||
preConfigure = "cd gpsbabel";
|
||||
configureFlags = [ "--with-zlib=system" ];
|
||||
configureFlags = [ "--with-zlib=system" ]
|
||||
# Floating point behavior on i686 causes test failures. Preventing
|
||||
# extended precision fixes this problem.
|
||||
++ stdenv.lib.optional stdenv.isi686 "CXXFLAGS=-ffloat-store";
|
||||
|
||||
doCheck = true;
|
||||
preCheck = ''
|
||||
|
Loading…
Reference in New Issue
Block a user