File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed
Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change 2323# - Cross-compile to platforms other than Linux?
2424
2525
26- MUSL_VERSION=1.1.1
26+ MUSL_VERSION=1.1.5
2727ZLIB_VERSION=1.2.8
2828BZIP2_VERSION=1.0.6
29- SQLITE_VERSION=3080403
29+ SQLITE_VERSION=3080702
3030GMP_VERSION=6.0.0
3131NETTLE_VERSION=2.7.1
32- GNUTLS_VERSION=3.3.4
32+ GNUTLS_VERSION=3.3.10
3333NCURSES_VERSION=5.9
34- GLIB_VERSION=2.40.0
35- GEOIP_VERSION=1.6.2
34+ GLIB_VERSION=2.43.1
35+ GEOIP_VERSION=1.6.3
3636
3737
3838# We don't actually use pkg-config at all. Setting this variable to 'true'
@@ -242,7 +242,11 @@ getglib() {
242242getgeoip () {
243243 fem https://github.com/maxmind/geoip-api-c/releases/download/v${GEOIP_VERSION} / GeoIP-${GEOIP_VERSION} .tar.gz geoip
244244 prebuild geoip || return
245- $srcdir /configure --prefix=$PREFIX --host=$HOST --disable-shared --disable-datafiles || exit
245+ # Build fails on ARM without this check, because autoconf can't figure this
246+ # out when cross-compiling.
247+ export ac_cv_func_malloc_0_nonnull=yes
248+ export ac_cv_func_realloc_0_nonnull=yes
249+ $srcdir /configure --prefix=$PREFIX --host=$HOST --disable-shared || exit
246250 make -C libGeoIP datadir=/usr/share install || exit
247251 postbuild
248252}
You can’t perform that action at this time.
0 commit comments