| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|
|
|
|
|
| |
See https://github.com/mxe/mxe/issues/1422
Automation (Python 2 code): https://gist.github.com/9f5c315e5d0cf113d41dc454b7a0eb41
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Minimal implementation to strip the [largest files][lf-gist] by
default, mostly made up of gcc/binutils and test programs.
gdal and geos both produce large libraries, but the libs themselves
aren't worth stripping, it's the 20 odd programs produced by gdal
with those libs statically linked that consume the most space.
I'm leaving these undocumented as the defaults seems reasonable and
the interface may well change when we enable debug/release variants.
closes #985
closes #1249
[lf-gist]:https://github.com/mxe/mxe/issues/1249#issuecomment-193392038
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The following script was applied:
sed ':a;/part of MXE.$/{N;s/\n//;ba}' -i $(git grep -l 'part of MXE')
sed 's/\(part of MXE\).*\(See index.html\)/\1. \2/' -i \
$(git grep -l 'part of MXE.*See index.html')
before='This file is part of MXE. See index.html for further information.'
after='This file is part of MXE. See LICENSE.md for licensing information.'
sed "s/$before/$after/" -i $(git grep -l 'part of MXE')
Then git grep 'index.html for further information' revealed two other files.
One of them was patched manually (patch.mk). Makefile has text
"See index.html for further information" unrelated to licensing.
See https://github.com/mxe/mxe/issues/1500#issuecomment-241340792
|
| |
|
| |
|
| |
|
|
|
|
| |
This reverts commit 31e57014bca7c5a8e9896b5689001efa78ab009e.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
closes #871
|
|
|
|
| |
close #862
|
| |
|
|\ |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
https://github.com/mxe/mxe/issues/676
|
|/ |
|
|
|
|
|
|
|
|
| |
Regression from 0e39fbcb46b13d0822a5162186416611338de4f4.
Fixes #535.
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
|
|
|
|
|
|
| |
Also add libxml2 support
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
|
|
|
|
| |
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
|
|
|
|
| |
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
|
|
|
|
| |
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
|
| |
|
|
|
|
|
|
|
|
| |
Based on patch by Luis Saavedra <luis94855510@gmail.com>
Closes #504
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
|
|
|
|
|
|
| |
See #504.
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Conflicts:
Makefile
src/gd.mk
src/gdal.mk
src/imagemagick.mk
src/pcl.mk
src/qt.mk
|
| |
| |
| |
| | |
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
|
| | |
|
| | |
|
| |
| |
| |
| | |
closes #369
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| | |
This fixes the following runtime error for applications that use projection
functionality:
ERROR 6: Unable to load PROJ.4 library (libproj-0.dll), creation of
OGRCoordinateTransformation failed.
|
|/ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Most of the automatic conversion was done using the following Python script:
import os
import re
pkgs = sorted(mkfile[:-len('.mk')] for mkfile in os.listdir('src') if mkfile.endswith('.mk'))
with open('index.html', 'rb') as f:
index = f.read()
pkgs_index = re.findall('<td class="package">([^<]*)</td>', index)
assert pkgs_index == pkgs
versions = dict(re.findall('<td id="([^"]*)-version">([^<]*)</td>', index))
assert sorted(versions.keys()) == pkgs
for pkg in pkgs:
version = versions[pkg]
with open('src/' + pkg + '.mk', 'rb') as f:
mk = f.read()
checksumpos = mk.index('\n$(PKG)_CHECKSUM ')
versionline = '\n$(PKG)_VERSION := %(version)s' % {'version': version}
newmk = mk[:checksumpos] + versionline + mk[checksumpos:]
with open('src/' + pkg + '.mk', 'wb') as f:
f.write(newmk)
|
| |
|
| |
|
|
|
|
| |
This also removes linking with libmsvcr80.a for the netcdf and gdal packages.
|
|
|
|
| |
Also enable the HDF4, HDF5 and NetCDF drivers for GDAL.
|
| |
|
| |
|
| |
|
| |
|