B Fraser
B Fraser
Code was expecting a double-interpolation from cmake which didn't happen, leaving the Requires section like this: Requires: @ZLIB_PKG@ @LZMA_PKG@ @SNAPPY_PKG@ This patch fixes that: Requires: zlib liblzma
Google explicitly is not supporting that: https://github.com/google/snappy/pull/86 Which leaves us users in a somewhat precarious state; if users of snappy, like avro, try to include it as a requirement in...
Changes this: ; pkg-config --libs --static avro-c -L/install/dir -lavro Into this: ; pkg-config --libs --static avro-c -L/install/dir -lavro -lzma -ljansson -lpthreads Assuming those are needed to link statically; pthreads may...
This PR makes Python an optional dependency when compiling the library. Like with bison/flex, if Python isn't around, it just re-uses a pre-generated versions.
These two were patched to not be tricked by this: { use strict; } $foo = 1; Where the strictness would be scoped, so `$foo` ends up not being covered....
``` ; perl -E 'say $^V' v5.28.3 ; ; perldoc Devel::Cover | grep version | head -n1 version 1.36 ; ; perl min_explode.pl ; ; PERL5OPT='-MDevel::Cover' perl min_explode.pl Global symbol...
Two of Thordan's downtime phases don't seem to be handled in xivanalysis (I don't know if this is an issue in the source data from fflogs or not). First one...
Right now I can't use gdb to find out how/where it's segfaulting, so this ticket will have to be a bit bare -- I should have the stack trace in...
``` # perl -E 'say "$^O: $^V"' android: v5.19.9 # perl -E 'use Cwd; say Cwd::cwd()' /mnt/sdcard/src/.cpan/build/Path-Class-0.33-7dmUq1 # perl -E 'BEGIN{ $^O = "Unix" }use Cwd; say Cwd::cwd()' # ```...