summaryrefslogtreecommitdiffstats
path: root/src/gdal.mk
Commit message (Collapse)AuthorAgeFilesLines
* gdal: enable mysql support and reorder configure optionsTony Theodore2015-10-081-44/+46
|
* all packages: really use sha256 checksumsTony Theodore2015-09-231-1/+1
|
* many packages: cleanup deps orderingTony Theodore2015-09-231-3/+3
|
* all packages: switch to sha256 checksumsTony Theodore2015-09-231-1/+1
| | | | closes #871
* fix gdal build on Debian WheezyBoris Nagaev2015-09-161-1/+1
| | | | close #862
* gdal:unify build rule - all deps now x86_64 enabledTony Theodore2015-09-111-17/+3
|
* fixing merge conflictRashad M2015-06-171-3/+4
|\
| * Uncomment OGR.Saikrishna Arcot2015-06-131-1/+1
| |
| * Remove old comment.Saikrishna Arcot2015-06-061-3/+0
| |
| * Style cleanup.Saikrishna Arcot2015-06-051-1/+1
| |
| * fix all gdal shared library related requirementsHamza Alloush2015-06-041-10/+3
| |
| * fix: incorrect detection of system hdf4, see: ↵Hamza Alloush2015-06-041-0/+1
| | | | | | | | https://github.com/mxe/mxe/issues/676
* | enable sharedRashad2015-06-091-17/+12
|/
* gdal: Avoid $(PKG)_BUILD_SHAREDTimothy Gu2014-10-201-1/+4
| | | | | | | | Regression from 0e39fbcb46b13d0822a5162186416611338de4f4. Fixes #535. Signed-off-by: Timothy Gu <timothygu99@gmail.com>
* gdal: Fix library detectionTimothy Gu2014-10-181-4/+4
| | | | | | Also add libxml2 support Signed-off-by: Timothy Gu <timothygu99@gmail.com>
* gdal: Remove remnants of i686-pc-mingw32Timothy Gu2014-10-181-10/+1
| | | | Signed-off-by: Timothy Gu <timothygu99@gmail.com>
* gdal: Update and fix config script locationsTimothy Gu2014-10-181-4/+4
| | | | Signed-off-by: Timothy Gu <timothygu99@gmail.com>
* Remove i686-pc-mingw32 package recipesTimothy Gu2014-10-141-1/+0
| | | | Signed-off-by: Timothy Gu <timothygu99@gmail.com>
* gdal: enable netcdf on i686-w64-mingw32Tony Theodore2014-10-021-0/+1
|
* gdal: Fix json-cTimothy Gu2014-09-181-1/+2
| | | | | | | | Based on patch by Luis Saavedra <luis94855510@gmail.com> Closes #504 Signed-off-by: Timothy Gu <timothygu99@gmail.com>
* gdal: Use $(BUILD)Timothy Gu2014-09-091-1/+1
| | | | | | See #504. Signed-off-by: Timothy Gu <timothygu99@gmail.com>
* Merge branch 'stable'Timothy Gu2014-08-301-2/+2
|\ | | | | | | | | | | | | | | | | | | Conflicts: Makefile src/gd.mk src/gdal.mk src/imagemagick.mk src/pcl.mk src/qt.mk
| * gdal: Fix downloadTimothy Gu2014-08-301-2/+2
| | | | | | | | Signed-off-by: Timothy Gu <timothygu99@gmail.com>
* | update package gdalTony Theodore2014-05-131-10/+10
| |
* | package gdal: disable shared build correctlyTony Theodore2014-04-061-1/+3
| |
* | many packages: explicitly disable shared buildsTony Theodore2014-04-061-0/+2
| | | | | | | | closes #369
* | package gdal: remove unrecognized configure optionMark Brand2014-02-151-1/+0
| |
* | gdal: build with static proj.Martin Lambers2013-12-041-2/+2
| | | | | | | | | | | | | | | | 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.
* | update package gdalNiels Kristian Bech Jensen2013-09-071-2/+2
|/
* Move package versions from index.html back into the src/*.mk filesVolker Grabsch2013-07-211-0/+1
| | | | | | | | | | | | | | | | | | | | | | | 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)
* various packages: enable/disable mingw-w64 buildsTony Theodore2013-06-011-5/+26
|
* Update package gdalNiels Kristian Bech Jensen2013-05-051-3/+3
|
* Remove unnecessary dependency on msvcr80.dll from hdf5 package.Martin Lambers2012-12-071-1/+1
| | | | This also removes linking with libmsvcr80.a for the netcdf and gdal packages.
* Add package netcdf and its prerequisites hdf4, hdf5, and portablexdr.Martin Lambers2012-12-051-5/+5
| | | | Also enable the HDF4, HDF5 and NetCDF drivers for GDAL.
* update package gdalMark Brand2012-10-111-1/+1
|
* update package gdalMark Brand2012-05-221-3/+2
|
* all packages: use $(WGET) portability variableTony Theodore2012-05-161-1/+1
|
* Move full package names from src/*.mk into package list (index.html)Volker Grabsch2012-03-291-1/+0
|
* Move doc/index.html -> index.htmlVolker Grabsch2012-03-291-1/+1
|
* Move $(PKG)_VERSION and $(PKG)_WEBSITE from src/*.mk into doc/index.htmlVolker Grabsch2012-03-291-2/+0
|
* Rebrand to new project name MXEVolker Grabsch2012-03-281-1/+1
|
* rename project libgta to gtaMark Brand2012-03-071-1/+1
| | | | | | | | | | | | | | --- src/gdal.mk | 2 +- src/gta-test.c | 20 ++++++++++++++++++++ src/gta.mk | 36 ++++++++++++++++++++++++++++++++++++ src/libgta-test.c | 20 -------------------- src/libgta.mk | 36 ------------------------------------ 5 files changed, 57 insertions(+), 57 deletions(-) create mode 100644 src/gta-test.c create mode 100644 src/gta.mk delete mode 100644 src/libgta-test.c delete mode 100644 src/libgta.mk
* Make GDAL depend on libgta.Martin Lambers2012-03-071-1/+2
| | | | | | | This adds support for the GTA file format (new in GDAL 1.9.0). --- src/gdal.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
* update package gdalMark Brand2012-01-101-2/+2
|
* package gdal gdk-pixbuf libpano13: tiff 4 detection workaroundMark Brand2011-12-231-1/+1
|
* improved coding style regarding creation of symlinksVolker Grabsch2011-08-151-1/+1
|
* update package gdalMark Brand2011-07-141-2/+2
|
* provide a i686-pc-mingw32-gdal-config symlink for package gdalMartin Lambers2011-05-221-0/+1
|
* package gdal: libpng 1.5 compatibilityMark Brand2011-03-031-1/+1
|
* package gdal: autogen not required after update to 1.8Tony Theodore2011-03-031-2/+0
|