Commit Graph

34560 Commits

Author SHA1 Message Date
Matthew Bauer
43873351ff blas/lapack: add wrapper for “alternative”s of BLAS/LAPACK provider
This is based on previous work for switching between BLAS and LAPACK
implementation in Debian[1] and Gentoo[2]. The goal is to have one way
to depend on the BLAS/LAPACK libraries that all packages must use. The
attrs “blas” and “lapack” are used to represent a wrapped BLAS/LAPACK
provider. Derivations that don’t care how BLAS and LAPACK are
implemented can just use blas and lapack directly. If you do care what
you get (perhaps for some CPP), you should verify that blas and lapack
match what you expect with an assertion.

The “blas” package collides with the old “blas” reference
implementation. This has been renamed to “blas-reference”. In
addition, “lapack-reference” is also included, corresponding to
“liblapack” from Netlib.org.

Currently, there are 3 providers of the BLAS and LAPACK interfaces:

- lapack-reference: the BLAS/LAPACK implementation maintained by netlib.org
- OpenBLAS: an optimized version of BLAS and LAPACK
- MKL: Intel’s unfree but highly optimized BLAS/LAPACK implementation

By default, the above implementations all use the “LP64” BLAS and
LAPACK ABI. This corresponds to “openblasCompat” and is the safest way
to use BLAS/LAPACK. You may received some benefits from “ILP64” or
8-byte integer BLAS at the expense of breaking compatibility with some
packages.

This can be switched at build time with an override like:

    import <nixpkgs> {
        config.allowUnfree = true;
        overlays = [(self: super: {
          lapack = super.lapack.override {
            lapackProvider = super.lapack-reference;
          };
          blas = super.blas.override {
            blasProvider = super.lapack-reference;
          };
        })];
      }

or, switched at runtime via LD_LIBRARY_PATH like:

    $ LD_LIBRARY_PATH=$(nix-build -E '(with import <nixpkgs> {}).lapack.override { lapackProvider = pkgs.mkl; is64bit = true; })')/lib:$(nix-build -E '(with import <nixpkgs> {}).blas.override { blasProvider = pkgs.mkl; is64bit = true; })')/lib ./your-blas-linked-binary

By default, we use OpenBLAS LP64 also known in Nixpkgs as
openblasCompat.

[1]: https://wiki.debian.org/DebianScience/LinearAlgebraLibraries
[2]: https://wiki.gentoo.org/wiki/Blas-lapack-switch
2020-04-17 16:23:55 -05:00
Matthew Bauer
90326ba624 lapack: enable shared libraries, cblas, and tests 2020-04-17 16:17:12 -05:00
Jan Tojnar
42f2d370a5
Merge pull request #81955 from r-ryantm/auto-update/poppler-glib 2020-04-17 18:38:20 +02:00
Michele Guerini Rocco
8afc0daa29
Merge pull request #85431 from rnhmjoj/vapoursynth
vapoursynth: R48 -> R49
2020-04-17 18:20:46 +02:00
Benjamin Hipple
ba8c116519 mesa-glu: use HTTPS instead of FTP
FTP is often blocked by firewalls and is generally slower and less secure than HTTPS.

No change to `src` hash.
2020-04-17 11:35:16 -04:00
Emily
10dd3f3de0 graphene-hardened-malloc: enable on aarch64-linux 2020-04-17 16:12:29 +01:00
rnhmjoj
c339130b80
vapoursynth: R48 -> R49 2020-04-17 08:51:55 +02:00
Jan Tojnar
d1009f4d99
gst_all_1.gstreamer: fix build 2020-04-16 16:46:13 +02:00
Profpatsch
bcfca556f4 skalibs: 2.9.2.0 -> 2.9.2.1 2020-04-16 11:54:11 +02:00
Jan Tojnar
cae8d97c23
dconf: fix build 2020-04-16 11:29:27 +02:00
Jan Tojnar
a3b69ac641
dconf: format with nixpkgs-fmt
Also:

* use pname + version instead of name
* reorder attributes
* change platforms linux + darwin → unix
2020-04-16 11:27:50 +02:00
Jan Tojnar
4b706490da
Merge branch 'staging-next' into staging 2020-04-16 10:10:38 +02:00
Jan Tojnar
3d8e436917
Merge branch 'master' into staging-next 2020-04-16 10:09:43 +02:00
R. RyanTM
896680cd15 chromaprint: 1.4.3 -> 1.5.0 2020-04-16 13:18:50 +05:30
worldofpeace
10d1088f7f
Merge pull request #85338 from lopsided98/g2o-update
g2o: unstable-2019-04-07 -> 20200410
2020-04-16 02:33:43 -04:00
Jan Tojnar
03bfda0196
poppler: add freedesktop team to maintainers 2020-04-16 04:54:58 +02:00
Jan Tojnar
796f9696f1
poppler: 0.86.1 → 0.87.0 2020-04-16 04:18:09 +02:00
R. RyanTM
6187d5babc
poppler: 0.85.0 -> 0.86.1 2020-04-16 04:17:21 +02:00
Niklas Hambüchen
7d39eea965
Merge pull request #85283 from r-ryantm/auto-update/smarty3
smarty3: 3.1.34 -> 3.1.35
2020-04-16 04:16:30 +02:00
Ben Wolsieffer
9693911c5a g2o: unstable-2019-04-07 -> 20200410 2020-04-15 19:57:13 -04:00
Ben Wolsieffer
dd14ee840c g2o: fix log limit exceeded error in Hydra 2020-04-15 19:56:43 -04:00
Jan Tojnar
2a19a03431
Merge pull request #85210 from prusnak/gtk-mac-integration 2020-04-15 21:15:07 +02:00
Jan Tojnar
1fade973fc
libjcat: init at 0.1.1 2020-04-15 20:30:06 +02:00
R. RyanTM
33da4f7174 smarty3: 3.1.34 -> 3.1.35 2020-04-15 08:56:51 +00:00
Anderson Torres
36b48140d6
Merge pull request #84631 from AndersonTorres/update-biblesync+sword
Update biblesync+sword
2020-04-15 01:13:49 -03:00
Anderson Torres
0ee3bf460e
Merge pull request #84607 from AndersonTorres/update-libtap
libtap: 1.12.0 -> 1.14.0
2020-04-15 00:42:37 -03:00
AndersonTorres
b818fb185a cimg: 2.8.4 -> 2.9.0 2020-04-14 21:39:39 -03:00
AndersonTorres
968ccdbc39 sword: 1.7.4 -> 1.8.1 2020-04-14 20:39:13 -03:00
AndersonTorres
88978483b1 biblesync: 1.1.2 -> 2.0.1 2020-04-14 20:39:13 -03:00
Maximilian Bosch
85e15b545a
Merge pull request #85177 from mayflower/sslscan-openssl-ssl3
sslscan: enabling scanning for sslv3
2020-04-14 15:59:37 +02:00
Maximilian Bosch
401e07d419
Merge pull request #84551 from gnprice/pr-stripDebugList
treewide: Fix types of stripDebugList attrs (and fix doc)
2020-04-14 15:54:52 +02:00
worldofpeace
df012cc3c4
Merge pull request #85051 from cgevans/libwacom-1.3
libwacom: 1.1 -> 1.3
2020-04-14 09:20:28 -04:00
worldofpeace
46bf4cb283
Merge pull request #83808 from glittershark/fix-cairo-no-xlib
cairo: pass --disable-xlib to config if no x11
2020-04-14 09:13:36 -04:00
worldofpeace
4dc2c5b1d2 libwacom: add maintainers 2020-04-14 09:07:00 -04:00
Constantine Glen Evans
3b3e5bc7ea libwacom: 1.1 -> 1.3 2020-04-14 09:06:19 -04:00
Markus Kowalewski
11a99fb68f
globalarrays: 5.7 -> 5.7.1 2020-04-14 12:29:36 +02:00
Pavol Rusnak
da9feeb40b
gtk-mac-integration: 2.0.8 -> 2.1.3 2020-04-14 12:01:35 +02:00
John Ericson
c8a6ea5161 Merge remote-tracking branch 'upstream/master' into staging 2020-04-13 22:17:15 -04:00
Austin Seipp
7b235b02e4
liburing: 0.4pre514_2454d630 -> 0.6pre600
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2020-04-13 20:36:11 -05:00
Matthew Bauer
e520d6af29
Merge pull request #84415 from matthewbauer/mb-cross-fixes-april2020
Cross compilation fixes [april 2020]
2020-04-13 16:48:38 -04:00
Robin Gloster
f6be629595
sslscan: enabling scanning for sslv3 2020-04-13 21:23:22 +02:00
Jörg Thalheim
2d9888f61c
Merge pull request #85156 from DieGoldeneEnte/boost-check
boost: check clang version
2020-04-13 19:56:38 +01:00
Roberto Di Remigio
fcf009bbb2 highfive: init at 2.2
Co-Authored-By: Jon <jonringer@users.noreply.github.com>
2020-04-13 11:22:02 -07:00
Jan Tojnar
cc57640aeb
Merge pull request #84470 from jtojnar/ardour-cleanup
ardour: clean up the expression
2020-04-13 20:10:27 +02:00
Jan Tojnar
b4a6714571
Merge branch 'staging-next' into staging 2020-04-13 18:54:59 +02:00
Jan Tojnar
a04625379a
Merge branch 'master' into staging-next 2020-04-13 18:50:35 +02:00
Holger Wünsche
556b0e89ca
boost: check clang version
boost <1.69 can't be compiled with clang >=8. This commit adds an assert
to catch the error early on.
2020-04-13 16:01:50 +02:00
Eelco Dolstra
87d598e310
Merge pull request #85117 from r-ryantm/auto-update/opensubdiv
opensubdiv: 3.4.0 -> 3.4.3
2020-04-13 09:43:17 +02:00
R. RyanTM
d54833b9c6 opensubdiv: 3.4.0 -> 3.4.3 2020-04-13 01:43:47 +00:00
R. RyanTM
3b5cb39081 libwps: 0.4.10 -> 0.4.11 2020-04-12 18:09:23 -07:00
R. RyanTM
ed36c7d9ff libzdb: 3.2.1 -> 3.2.2 2020-04-12 17:45:47 -07:00
Orivej Desh
ecb36271a2
libgit2: unbundle pcre (#85049)
libgit2 has bundled pcre (not pcre2) in
https://github.com/libgit2/libgit2/pull/4935

Before this change configure printed "regex, using bundled PCRE",
after this change it prints "regex, using system PCRE".
2020-04-12 19:59:55 +00:00
Ryan Mulligan
eaacb2b60d
Merge pull request #84851 from r-ryantm/auto-update/intel-media-sdk
intel-media-sdk: 19.4.0 -> 20.1.0
2020-04-12 11:57:42 -07:00
Benjamin Hipple
5f64fa1744
Merge pull request #85025 from symphorien/update-libinsane
libinsane: 1.0.3 -> 1.0.4
2020-04-12 13:57:11 -04:00
alexanderWatanabe
c45155d6b7 added cuda cmake flags (allows GPU acceleration of some of the libraries functions) 2020-04-13 01:22:45 +09:00
Alexey Shmalko
5eca80f7eb
Merge pull request #82883 from ilya-fedin/update-kotatogram
kotatogram-desktop: 1.1.5 -> 1.2
2020-04-12 15:02:41 +03:00
Michael Raskin
cfd7a08c57
Merge pull request #84991 from jluttine/liblinphone-fix-vcard
liblinphone: fix missing vcard_grammar
2020-04-12 00:22:24 +00:00
Jan Tojnar
11e0f5993b
Merge pull request #84956 from schmittlauch/gst-disable-zbar
gst-plugins-bad: disable zbar by default
2020-04-11 21:13:43 +02:00
Trolli Schmittlauch
2df7f920d6 gst_all_1.gst-plugins-bad: disable zbar by default
gst-plugins-bad by default used to pull in gtk3 and qtbase and qtx11extras because of the default dependency on zbar.
As zbar is a rarely needed gstreamer plugin, this unnecessarily
increased the closure size.
I am only aware of gnome-keysign actually using the zbar plugin, so that
uses a zbar-enabled gst-plugins-bad.

closes #84845
2020-04-11 21:08:00 +02:00
Dmitry Kalinkin
7cbffa0530
herwig: 7.2.0 -> 7.2.1
thepeg: 2.2.0 -> 2.2.1

A minor bugfix
2020-04-11 14:23:26 -04:00
Orivej Desh
bbdd169400
gst_all_1.gst-plugins-good: enable jack plugin (#84543)
On Linux this adds two dependencies to the closure, libjack2 and celt, which
increases its size from 163.5 MB to 164.4 MB.

This should not cause any issues on macOS since jack supports it.
2020-04-11 17:26:26 +00:00
Benjamin Hipple
7b1f4dc454
Merge pull request #84880 from pmiddend/fcppt-to-3.5.0
fcppt: 3.2.2 -> 3.5.0
2020-04-11 11:55:09 -04:00
Jaakko Luttinen
93ea5b0d0d
liblinphone: fix missing vcard_grammar
Fixes #84488
2020-04-11 15:32:39 +03:00
Symphorien Gibol
25e5a37c97 libinsane: 1.0.3 -> 1.0.4
changelog: https://gitlab.gnome.org/World/OpenPaperwork/libinsane/-/blob/1.0.4/ChangeLog
2020-04-11 12:00:00 +00:00
Tor Hedin Brønner
597b1d9e2c
Merge pull request #84695 from hedning/gnome-3.36.1-staging
Gnome 3.36.1 staging
2020-04-11 10:13:48 +02:00
Philipp Middendorf
2a9866fc2c fcppt: 3.2.2 -> 3.5.0 2020-04-11 08:50:48 +02:00
Philipp Middendorf
7af039befe metal: init at 2.1.1 2020-04-11 08:50:48 +02:00
Benjamin Hipple
3fea9ace4b
Merge pull request #84833 from r-ryantm/auto-update/libgnurl
libgnurl: 7.67.0 -> 7.69.1
2020-04-10 15:23:00 -04:00
Benjamin Hipple
dd8d859829 opencl-clhpp: fix install directory
Previously, it was installing to `$out/include/include`. Now it's correct:

/nix/store/alw8idc8qhfhzw98banq2l5hmrdaglgm-opencl-clhpp-2.0.11
├── include
│   └── CL
│       ├── cl2.hpp
│       └── cl.hpp
└── nix-support
    └── propagated-build-inputs

3 directories, 3 files
2020-04-10 12:22:13 -07:00
R. RyanTM
1450740470 suitesparse: 5.7.1 -> 5.7.2 2020-04-10 11:55:20 -07:00
Benjamin Hipple
a1f6400fd5
Merge pull request #84451 from robertodr/update-mkl
mkl: 2020.0.166 -> 2020.1.217 (Linux only)
2020-04-10 13:54:49 -04:00
Michael Reilly
84cf00f980
treewide: Per RFC45, remove all unquoted URLs 2020-04-10 17:54:53 +01:00
Jan Tojnar
55a5c128d4
Merge branch 'staging-next' into staging 2020-04-10 12:13:27 +02:00
Jan Tojnar
1ab03c3a76
Merge branch 'master' into staging-next 2020-04-10 12:12:56 +02:00
Vladimír Čunát
f2198c46b2
Merge #84279: libjpeg(_turbo): 2.0.3 -> 2.0.4 (in staging) 2020-04-10 09:02:21 +02:00
Cole Mickens
e24e8da336 libjpeg_turbo: 2.0.3 -> 2.0.4 2020-04-09 17:50:26 -07:00
worldofpeace
7b5b815c3b
Merge pull request #84854 from r-ryantm/auto-update/libinput
libinput: 1.15.3 -> 1.15.4
2020-04-09 18:58:31 -04:00
R. RyanTM
7b0a055beb libinput: 1.15.3 -> 1.15.4 2020-04-09 21:42:09 +00:00
R. RyanTM
f9f5e9435e intel-media-sdk: 19.4.0 -> 20.1.0 2020-04-09 21:03:02 +00:00
worldofpeace
939fcdcbdd
Merge pull request #84817 from pbogdan/libvirt-6.2.0
libvirt: 6.1.0 -> 6.2.0
2020-04-09 14:38:41 -04:00
R. RyanTM
80425c3c50 libpst: 0.6.74 -> 0.6.75 2020-04-09 11:33:13 -07:00
R. RyanTM
ed6dbc144d libaacs: 0.9.0 -> 0.10.0 2020-04-09 11:30:11 -07:00
R. RyanTM
178dede747 intel-gmmlib: 19.4.1 -> 20.1.1 2020-04-09 10:47:04 -07:00
R. RyanTM
4295a78f18 libgnurl: 7.67.0 -> 7.69.1 2020-04-09 17:33:14 +00:00
R. RyanTM
16fb884bdc resolv_wrapper: 1.1.5 -> 1.1.6 2020-04-09 10:26:52 -07:00
Mario Rodas
b417d51f27
Merge pull request #84775 from r-ryantm/auto-update/libinstpatch
libinstpatch: 1.1.3 -> 1.1.4
2020-04-09 12:25:03 -05:00
Mario Rodas
136f879ca6
Merge pull request #84778 from r-ryantm/auto-update/nuspell
nuspell: 3.0.0 -> 3.1.0
2020-04-09 11:51:56 -05:00
Mario Rodas
74bedf27a9
Merge pull request #84776 from r-ryantm/auto-update/librsync
librsync: 2.2.1 -> 2.3.0
2020-04-09 11:49:35 -05:00
Piotr Bogdan
bc66b77de9 libvirt: 6.1.0 -> 6.2.0 2020-04-09 10:30:14 +01:00
Mario Rodas
49e2a18dbd
libinstpatch: enable on darwin 2020-04-09 04:20:00 -05:00
Tor Hedin Brønner
0dbcdd857b gtk3: various upstreaom fixes for wayland
- fix invisible dialogs
- fix resizing custom surfaces (eg. panels like gtk-layer-shell)
2020-04-09 10:57:11 +02:00
Tor Hedin Brønner
88607e0e02
Merge pull request #84694 from hedning/gnome-3.36.1
Gnome 3.36.1
2020-04-09 10:37:23 +02:00
Jan Tojnar
723bbfcd01
pipewire: 0.3.1 → 0.3.2
f0f3a0a660
2020-04-09 10:24:08 +02:00
Jan Tojnar
0a5634807e
libmanette: 0.2.3 → 0.2.4
https://ftp.gnome.org/pub/GNOME/sources/libmanette/0.2/libmanette-0.2.4.news
2020-04-09 10:24:08 +02:00
Tor Hedin Brønner
99e7ea62fd
vte: 0.60.0 -> 0.60.1 2020-04-09 10:24:07 +02:00
Tor Hedin Brønner
a07bcd02d6
totem-pl-parser: 3.26.4 -> 3.26.5 2020-04-09 10:24:07 +02:00
Tor Hedin Brønner
c2c80dd9bc
gvfs: 1.44.0 -> 1.44.1 2020-04-09 10:24:06 +02:00
Tor Hedin Brønner
a215f184f9
gtksourceview4: 4.4.0 -> 4.6.0 2020-04-09 10:24:06 +02:00
Tor Hedin Brønner
a17a64d791
geocode-glib: 3.26.1 -> 3.26.2 2020-04-09 10:24:06 +02:00
Tor Hedin Brønner
f4c7e2ef89
clutter: 1.26.2 -> 1.26.4 2020-04-09 10:24:06 +02:00
R. RyanTM
054c2113c6 nuspell: 3.0.0 -> 3.1.0 2020-04-09 06:01:29 +00:00
R. RyanTM
19888d1f94 librsync: 2.2.1 -> 2.3.0 2020-04-09 05:04:22 +00:00
R. RyanTM
577ab2b68b libinstpatch: 1.1.3 -> 1.1.4 2020-04-09 04:54:15 +00:00
Mario Rodas
2f41064d86
Merge pull request #84455 from r-ryantm/auto-update/petsc
petsc: 3.12.4 -> 3.13.0
2020-04-08 21:35:27 -05:00
Jan Tojnar
521ddb1397
Merge pull request #83400 from jtojnar/malcontent-0.7
malcontent: 0.6.0 → 0.7.0
2020-04-08 17:38:17 +02:00
Jan Tojnar
4e68e0a5a2
malcontent: Fix installed tests
Installed tests tried to load the PAM module from installed tests prefix instead of the configured pamlibdir.

Forgot to do this in 0.5.0 bump.
2020-04-08 17:08:15 +02:00
Jan Tojnar
f3d1333f0d
malcontent-ui: split from malcontent
The 0.7.0 update allows us to split the package.
2020-04-08 17:08:15 +02:00
Jan Tojnar
4b4c0164f0
malcontent: 0.6.0 → 0.7.0
2e8a07d58c
2020-04-08 17:08:14 +02:00
Peter Hoeg
8cbe9f03f9
Merge pull request #81780 from volth/patch-387
libwebsockets: 3.2.0 -> 3.2.2; init as 4.0.0
2020-04-08 22:32:43 +08:00
Mario Rodas
2a7a7a8155 librsvg: fix build on darwin
librsvg needs -lobjc ldflag on darwin https://gitlab.gnome.org/GNOME/librsvg/-/issues/545
2020-04-08 15:46:36 +02:00
Niklas Hambüchen
f3cf0f074a
Merge pull request #84382 from nh2/openblas-add-singleThreaded-option
openblas: Add `singleThreaded` option. Off by default.
2020-04-08 13:49:32 +02:00
Niklas Hambüchen
df907c4786 openblas: Add singleThreaded option. Off by default.
See https://github.com/xianyi/OpenBLAS/issues/2543
2020-04-08 13:46:04 +02:00
Milan
0fc7da19b4
kdeFrameworks: 5.66 -> 5.68 (#84622) 2020-04-08 12:48:57 +02:00
Milan
4dee289784
grantlee: 5.1.0 -> 5.2.0 (#84621) 2020-04-08 12:48:31 +02:00
Jan Tojnar
af476597c0
python3.pkgs.libmodulemd: init bindings 2020-04-08 12:32:39 +02:00
Tor Hedin Brønner
247bddd311 gobject-introspection: 1.64.0 -> 1.64.1 2020-04-08 09:52:37 +02:00
Tor Hedin Brønner
29f47af273 glib-networking: 2.64.0 -> 2.64.1 2020-04-08 09:52:37 +02:00
Tor Hedin Brønner
34a0147072 libsecret: 0.20.1 -> 0.20.2 2020-04-08 09:52:37 +02:00
Tor Hedin Brønner
95abd75a59 librsvg: 2.48.0 -> 2.48.2 2020-04-08 09:52:36 +02:00
Tor Hedin Brønner
cd00bc2ccd atk: 2.35.1 -> 2.36.0 2020-04-08 09:52:36 +02:00
Tor Hedin Brønner
5d5740a051 gjs: 1.64.0 -> 1.64.1 2020-04-08 09:48:14 +02:00
R. RyanTM
72cb79e06b libmediainfo: 19.09 -> 20.03 2020-04-07 19:21:45 -07:00
Jonathan Ringer
7c8d21790d libbass: fix sha 2020-04-07 17:59:32 -07:00
Peter Hoeg
4d942683f3
Merge pull request #84368 from r-ryantm/auto-update/freetds
freetds: 1.1.6 -> 1.1.26
2020-04-08 08:53:43 +08:00
R. RyanTM
fe6302c7fa libzen: 0.4.37 -> 0.4.38 2020-04-07 12:33:56 -07:00
R. RyanTM
bf3e71ab7d libgpiod: 1.5 -> 1.5.1 2020-04-07 12:23:13 -07:00
Jan Tojnar
1ff54d019f
qm-dsp: init at 1.7.1 2020-04-07 20:26:23 +02:00
Jan Tojnar
602bf811c1
kissft: init at 131 2020-04-07 20:26:23 +02:00
Andreas Rammhold
80d0a401d0
Merge pull request #84584 from andir/firefox
firefox: 74.0.1 -> 75.0 and related updates
2020-04-07 20:05:14 +02:00
R. RyanTM
08070fffc7 nss_wrapper: 1.1.10 -> 1.1.11 2020-04-07 10:59:10 -07:00
AndersonTorres
ff2aa0ce39 libtap: 1.12.0 -> 1.14.0 2020-04-07 10:53:55 -03:00
Andreas Rammhold
1859b5a5ae
libvpx_1_8: init at 1.8.2
Adding this as a new attribute as software is likely going to break when
we switch the default from the 1.7 branch to 1.8.
2020-04-07 13:27:26 +02:00
Vincent Laporte
926a875def opendht: 1.8.0 → 2.0.0 2020-04-07 08:42:41 +02:00
Greg Price
7547cf9dfc treewide: Fix up stripDebugList attrs to be lists.
The documentation says this should be a list, and it already is in
about half the expressions that set it.

The difference doesn't matter at present, because these values are all
space-free literals.  But it will in a future with __structuredAttrs .

(The similar attr stripAllList has no users in the nixpkgs tree, so
there's nothing to do to fix any of those up.)
2020-04-06 21:26:52 -07:00
Mario Rodas
55d2a340d4
Merge pull request #84461 from marsam/fix-libbluray-build
libbluray: fix build on darwin
2020-04-06 20:13:09 -05:00
R. RyanTM
fd059cc3e5 libgit2: 0.99.0 -> 1.0.0 2020-04-06 15:45:25 -07:00
Timo Kaufmann
5d3f4e9c0b
Merge pull request #84457 from vbgl/ocaml-gettext-0.4.1
ocamlPackages.ocaml_gettext: 0.3.8 → 0.4.1
2020-04-06 21:52:01 +00:00
R. RyanTM
a81f9c5ef0 faudio: 20.03 -> 20.04 2020-04-06 14:07:44 -07:00
Matthew Bauer
97309f7fa2 fstrcmp: patch for cross
Patches fstrcmp to cross-compile
2020-04-06 16:36:30 -04:00
Matthew Bauer
89dac3c856 flatbuffers: don’t build tests when cross compiling 2020-04-06 16:36:30 -04:00
Matthew Bauer
7887d50ae4 ftgl: add --with-ft-prefix for finding freetype
freetype-config is not in PATH when cross-compiling. We need to
provide our own.
2020-04-06 16:36:29 -04:00
Matthew Bauer
bedd47ed4b libcddb: force malloc and realloc
This needs to be set to avoid having undefined malloc symbol.
2020-04-06 16:36:29 -04:00
Matthew Bauer
a1c6dea273 libcdio: get native help2man 2020-04-06 16:36:29 -04:00
Matthew Bauer
72363f71bf libcec: get native cmake for cross 2020-04-06 16:36:29 -04:00
Matthew Bauer
5256aa688f libcrossguid: get prefixed utility 2020-04-06 16:36:29 -04:00
Matthew Bauer
5c80a3585b tinyxml2: fix cross compilation
- use native unzip
- add target prefix to LD
2020-04-06 16:36:28 -04:00
Matthew Bauer
71a9eb80e7 waylandpp: fix cross compilation
- add libffi dependency
- provide wayland-scanner++ when cross compiling
2020-04-06 16:36:28 -04:00
Matthew Bauer
99355cc2e4 libasyncns: override malloc null check in cross
This is needed to build and avoid malloc error.
2020-04-06 16:36:28 -04:00
Matthew Bauer
a656aeb7f1 libvisual: fix null malloc check on cross
this is needed to build
2020-04-06 16:36:28 -04:00
Matthew Bauer
e446334824 libvpx: set proper target name
- Needs to be like <cpu>-<os>-gcc.
- Remove unneeded --enable-external-build flag
    This confuses the feature detection and is not needed for cross
    compilation anymore.
2020-04-06 16:36:28 -04:00