summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | Indentation, and combine conditionals.Saikrishna Arcot2015-06-062-7/+6
| | | | | |
| * | | | | Remove old comment.Saikrishna Arcot2015-06-061-3/+0
| | | | | |
| * | | | | Build test sets and examples as well.Saikrishna Arcot2015-06-051-2/+0
| | | | | |
| * | | | | Style cleanup.Saikrishna Arcot2015-06-052-4/+4
| | | | | |
| * | | | | fix all gdal shared library related requirementsHamza Alloush2015-06-043-31/+26
| | | | | |
| * | | | | fix: incorrect detection of system hdf4, see: ↵Hamza Alloush2015-06-041-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | https://github.com/mxe/mxe/issues/676
* | | | | | Merge pull request #708 from tm604/graphicsmagick-dep-fixTimothy Gu2015-06-161-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | graphicsmagick build requires libgomp
| * | | | | | graphicsmagick build requires libgompTom Molesworth2015-06-131-1/+1
| | |/ / / / | |/| | | |
* | | | | | Merge pull request #709 from saiarcot895/upstream-proper-dcmtk-fixTimothy Gu2015-06-162-1/+37
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | | Fix building dcmtk on 64-bit platforms.
| * | | | | Fix building dcmtk on 64-bit platforms.Saikrishna Arcot2015-06-132-1/+37
| |/ / / /
* | | | | Merge pull request #710 from saiarcot895/upstream-libgcrypt-gitTimothy Gu2015-06-151-0/+34
|\ \ \ \ \ | |_|_|/ / |/| | | | Don't use git when building libgcrypt.
| * | | | Don't use git when building libgcrypt.Saikrishna Arcot2015-06-131-0/+34
| |/ / /
* | | | qtsystems qtxlsxwriter: updateMark Brand2015-06-132-3/+4
| | | |
* | | | qtservice: updateMark Brand2015-06-131-1/+2
|/ / /
* | | libssh2 openssl: updateMark Brand2015-06-122-4/+4
| | |
* | | vmime: updateMark Brand2015-06-111-2/+2
| | |
* | | openssl: updateMark Brand2015-06-111-2/+2
| | |
* | | Merge pull request #611 from marlam/64bit-5Timothy Gu2015-06-094-7/+41
|\ \ \ | |_|/ |/| | 64bit fixes, part 1
| * | openexr: fix 64 bit build and build failureMartin Lambers2015-01-252-3/+40
| | |
| * | imagemagick: enable 64 bit build -- works for meMartin Lambers2015-01-251-2/+0
| | |
| * | dcmtk: fix 64 bit buildMartin Lambers2015-01-251-2/+1
| | |
* | | vmime: updateMark Brand2015-06-081-2/+2
| | |
* | | hdf4: Fix indentation and simplify conditionalsTimothy Gu2015-06-071-7/+6
| | |
* | | enable sharedRashad2015-06-065-30/+88
| | |
* | | new package openjpeg with fixesRashad2015-06-063-0/+61
| | |
* | | Merge pull request #698 from saiarcot895/upstream-fix-compiling-devilTimothy Gu2015-06-061-0/+28
|\ \ \ | | | | | | | | Add Devil patch
| * | | add Devil patchHamza Alloush2015-06-041-0/+28
| | |/ | |/|
* | | gsoap: update checksumMark Brand2015-06-051-1/+1
|/ /
* | qt5 modules: updateMark Brand2015-06-0324-81/+37
| |
* | Merge pull request #694 from clarkli86/masterTimothy Gu2015-05-271-1/+1
|\ \ | | | | | | Enable ISO C90 inline for i686-w64-mingw32.shared
| * | Enable ISO C90 inlineClark Li2015-05-271-1/+1
| | | | | | | | | | | | | | | Otherwise imaxabs() and other functions in _mingw.h will not be inlined and produce link error
* | | qt: updateMark Brand2015-05-272-763/+693
|/ /
* | sqlite: updateMark Brand2015-05-211-2/+2
| |
* | Merge pull request #686 from LuaAndC/masterTimothy Gu2015-05-155-10/+43
|\ \ | | | | | | update Lua to 5.3.0 and LuaJIT to 2.0.4
| * | update LuaJIT from 2.0.3 to 2.0.4Boris Nagaev2015-05-141-2/+2
| | |
| * | update Lua from 5.2.3 to 5.3.0Boris Nagaev2015-05-144-8/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Package luabind was changed to be compatible with Lua 5.3.0: * do not use macro LUA_COMPAT_ALL. Lua 5.3 respects macros LUA_COMPAT_5_2 and LUA_COMPAT_5_1 and ignores macro LUA_COMPAT_ALL. * Instead, include needed compatibility defines into header luabind/config.hpp. Side effect of this is that C++ code using luabind doesn't need to define LUA_COMPAT_ALL. This definition was removed from the example of luabind.
* | | Fix emailTimothy Gu2015-05-151-1/+1
|/ /
* | vmime: updateMark Brand2015-05-111-2/+2
| |
* | Shared build of libgpg_error failingDan Riegsecker2015-05-091-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | When building libgpg_error with a target of i686-w64-mingw32.shared the build fails with undefined references. In the make process for libgpg_error an application is built and then run called mkheader. This application is used to build the gpg-error.h file. In this application there is a strcmp for 'mingw32' on host_os variable which failes to be true when host_os contains mingw32.shared or mingw32.static. The failure of this test keep w32-add.h from being added to gpg-error.h, hence causing the undefined references errors. This is an attempt to fix this issue, officially issue #677.
* | sqlite: updateMark Brand2015-05-091-2/+2
| |
* | sqlite: updateMark Brand2015-05-081-3/+3
| |
* | gnutls: updateMark Brand2015-05-071-2/+2
| |
* | Suppress gdb documentation building, to avoid dependency from texinfoVolker Grabsch2015-05-031-1/+1
| | | | | | | | | | Related mailing list report: https://lists.nongnu.org/archive/html/mingw-cross-env-list/2015-04/msg00021.html
* | curl pcre: updateMark Brand2015-04-292-4/+4
| |
* | postgresql: require/hint minimum autoconf version 2.63Avi Halachmi (:avih)2015-04-291-0/+30
| | | | | | | | | | | | | | | | | | | | | | the original configure.in warns if autoconf version is less than 2.63, but patch 1 removes this warning. this patch adds that requirement using AC_PREREQ on debian systems where both old/new versions of autoconf are installed, a script is used to determine which version to use. adding AC_PREREQ to configure.in helps the script choose the correct version. the system should already have such version since MXE itself requires 2.67
* | vmime: updateMark Brand2015-04-231-2/+2
| |
* | xmlwrappp: workaround boost lib version detection problemMark Brand2015-04-231-0/+25
| |
* | gcc isl: updateMark Brand2015-04-234-69/+5
| | | | | | | | cloog is no longer required to build gcc.
* | itk libdca libvpx openscenegraph: gcc 5 compatibilityMark Brand2015-04-234-3/+8
| |
* | graphicsmagick: updateMark Brand2015-04-231-3/+4
| | | | | | | | | | As in libgomp.mk, the option -fopenmp prevents undefined dl* symbol errors when linking to -lgomp. -ldl seems to work too.