summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update packages.json & build-matrix.htmlMXEBot as Travis CI2017-07-312-2/+2
|
* update vmimeMark Brand2017-07-311-2/+2
|
* Update packages.json & build-matrix.htmlMXEBot as Travis CI2017-07-312-66/+66
|
* upgrade qt5 packages to Qt 5.9.1Mark Brand2017-07-3133-49/+49
|
* Merge pull request #1861 from pavelvat/fix-clementine-qt4Tony Theodore2017-07-271-0/+36
|\ | | | | fix launch clementine_qt4 with clean settings
| * fix launch clementine_qt4 with clean settingsPavel Vatagin2017-07-261-0/+36
|/
* Update packages.json & build-matrix.htmlMXEBot as Travis CI2017-07-262-2/+2
|
* Merge pull request #1859 from tonytheodore/ClearCorrect-cgal_4_10Tony Theodore2017-07-263-32/+66
|\ | | | | Updated cgal to 4.10.
| * cgal: use new-style options and restore testsTony Theodore2017-07-262-12/+52
| |
| * cgal: Fixed build.Robert Marsa2017-07-262-18/+12
| |
| * Updated cgal to 4.10.Robert Marsa2017-07-261-3/+3
|/
* Merge pull request #1857 from tonytheodore/cfitsio-pcTony Theodore2017-07-251-0/+7
|\ | | | | cfitsio: install pkg-config file
| * cfitsio: install pkg-config fileTony Theodore2017-07-251-0/+7
| | | | | | | | fixes #1855
* | Merge pull request #1854 from tonytheodore/cmake-isystemTony Theodore2017-07-252-0/+28
|\ \ | |/ | | cmake: add option to disable -isystem
| * hyperscan: fix include paths for building with gcc >= 6Tony Theodore2017-07-251-0/+1
| | | | | | | | fixes #1811
| * cmake: add option to disable -isystemTony Theodore2017-07-251-0/+27
| | | | | | | | | | Alternative to #1811, this seems like it should be fixed upstream in gcc/cmake rather than individual packages
* | Merge pull request #1630 from pavelvat/add-package-qt5-clementineTony Theodore2017-07-253-7/+304
|\ \ | |/ |/| add package clementine to mxe/plugins/apps
| * add package clementine to mxe/plugins/appsPavel Vatagin2017-07-253-7/+304
|/
* Update packages.json & build-matrix.htmlMXEBot as Travis CI2017-07-251-1/+1
|
* Merge pull request #1853 from tonytheodore/native-libtoolTony Theodore2017-07-254-2/+4
|\ | | | | add libtool dep for native packages using autotools
| * add libtool dep for native packages using autotoolsTony Theodore2017-07-254-2/+4
| | | | | | | | | | | | | | Partially built autotools suite can cause race condition when plugins/native is included fixes #1851
* | log4cxx: add patch headerTony Theodore2017-07-251-0/+17
| |
* | Merge branch 'log4cxx-invalid-narrowing-conversion-with-gcc6' of ↵Tony Theodore2017-07-251-0/+105
|\ \ | | | | | | | | | https://github.com/mbunkus/mxe into mbunkus-log4cxx-invalid-narrowing-conversion-with-gcc6
| * | log4cxx: fix invalid narrowing conversion tripping up g++ >= 6Moritz Bunkus2017-07-091-0/+105
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | g++ 6 is stricter regarding narrowing conversions in initializer lists. This causes errors similar to the following during compilation with the gcc6 or gcc7 overlays: locationinfo.cpp:163:21: error: narrowing conversion of '237' from 'int' to 'char' inside { } [-Wnarrowing] This has already been fixed upstream in several consecutive patches, but there's no release including those fixes yet. This patch consists of the essence of said fixes.
* | | sdl_sound: convert to git-format-patch styleTony Theodore2017-07-251-1/+14
| | |
* | | Merge branch 'sdl_sound-test-program-compilation-with-gcc6' of ↵Tony Theodore2017-07-251-0/+13
|\ \ \ | | | | | | | | | | | | https://github.com/mbunkus/mxe into mbunkus-sdl_sound-test-program-compilation-with-gcc6
| * | | sdl_sound: fix test program compilation with gcc >= 6Moritz Bunkus2017-07-091-0/+13
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | gcc 6 has added a diagnostic under `-pedantic` that emits a warning whenever an enumerator value is not a constant integer expression. This applies to the expression "1 << 31", too, as [1] explains: that shifts the bit into the sign bit, and therefore it's not constant. This warning combined with `-Werror` means that compilation of the test program fails. This patch implements the workaround mentioned in [1]. Actual error message: ``` 'x86_64-w64-mingw32.static-gcc' -W -Wall -Werror -std=c99 -pedantic '/home/mosu/prog/video/mingw/cross/src/sdl_sound-test.c' -o '/home/mosu/prog/video/mingw/cross/usr/x86_64-w64-mingw32.static/bin/test-sdl_sound.exe' `'x86_64-w64-mingw32.static-pkg-config' SDL_sound --cflags --libs` In file included from /home/mosu/prog/video/mingw/cross/src/sdl_sound-test.c:11:0: /home/mosu/prog/video/mingw/cross/usr/x86_64-w64-mingw32.static/include/SDL/SDL_sound.h:117:32: error: enumerator value for 'SOUND_SAMPLEFLAG_EAGAIN' is not an integer constant expression [-Werror=pedantic] SOUND_SAMPLEFLAG_EAGAIN = 1 << 31 /**< Function would block, or temp error. */ ``` [1] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71803
* | | openmp-validation: consolidate patchesTony Theodore2017-07-252-14/+21
| | |
* | | Merge branch 'openmp-validation-perl-cwd-not-in-inc-anymore' of ↵Tony Theodore2017-07-251-0/+14
|\ \ \ | |_|/ |/| | | | | https://github.com/mbunkus/mxe into mbunkus-openmp-validation-perl-cwd-not-in-inc-anymore
| * | openmp-validation: add current directory to @INC for newer PerlMoritz Bunkus2017-07-091-0/+14
| |/ | | | | | | | | | | | | | | | | Perl v5.26.0 has removed the current directory from the include path. This breaks the `run_test.pl` script which tries to load modules from the build directory and fails if the system Perl is 5.26.0 or newer. Error message: `Can't locate ompts_parserFunctions.pm in @INC`
* | Update packages.json & build-matrix.htmlMXEBot as Travis CI2017-07-252-16/+5
| |
* | Merge pull request #1849 from muellni/qt4overlayTony Theodore2017-07-254-58/+14
|\ \ | | | | | | qt4 overlay plugin (for vtk and qwt)
| * | qt4overlay: add updated vtk dependenciesMartin Müllenhaupt2017-07-241-1/+1
| | |
| * | create qt4 overlay plugin to link VTK and Qwt to Qt 4 instead of 5Martin Müllenhaupt2017-07-244-58/+14
| | |
* | | Update packages.json & build-matrix.htmlMXEBot as Travis CI2017-07-252-16/+5
| | |
* | | Merge pull request #1852 from tonytheodore/muellni-update-vtkTony Theodore2017-07-255-740/+120
|\ \ \ | | | | | | | | vtk: update to version 8 and removal of package vtk6
| * | | vtk: remove positional vars and CMAKE_TOOLCHAIN_FILETony Theodore2017-07-251-17/+13
| | | |
| * | | vtk: use SOURCE_DIR and CMAKE_SHARED_BOOL varsMartin Müllenhaupt2017-07-241-5/+5
| | | |
| * | | vtk: update to version 8 and remove package vtk6Martin Müllenhaupt2017-07-245-737/+121
| |/ /
* | | Merge pull request #1696 from ↵Tony Theodore2017-07-247-47/+53
|\ \ \ | |/ / |/| | | | | | | | pavelvat/install-gstreamer-dll-plugins-to-separate-dir Install gstreamer dll plugins to separate directory
| * | update clementine_qt4Pavel Vatagin2017-07-241-41/+41
| | |
| * | install gstreamer dll plugins to separate directoryPavel Vatagin2017-07-246-6/+12
|/ /
* | Update packages.json & build-matrix.htmlMXEBot as Travis CI2017-07-242-2/+2
| |
* | Merge pull request #1843 from tonytheodore/libarchive-updateTony Theodore2017-07-242-7/+26
|\ \ | | | | | | libarchive: update 3.1.2 --> 3.3.2
| * | libarchive: update 3.1.2 --> 3.3.2Tony Theodore2017-07-242-7/+26
|/ /
* | Update packages.json & build-matrix.htmlMXEBot as Travis CI2017-07-242-2/+2
| |
* | Merge pull request #1814 from mbunkus/libxml++-update-to-2.40.1-for-gcc6Tony Theodore2017-07-241-2/+2
|\ \ | | | | | | libxml++: update from 2.37.2 to 2.40.1
| * | libxml++: update from 2.37.2 to 2.40.1Moritz Bunkus2017-07-091-2/+2
| |/ | | | | | | | | | | | | | | | | | | This fixes the following error with gcc >= 6: ``` libxml++/io/istreamparserinputbuffer.cc: In member function 'virtual bool xmlpp::IStreamParserInputBuffer::do_close()': libxml++/io/istreamparserinputbuffer.cc:42:12: error: cannot convert 'std::istream {aka std::basic_istream<char>}' to 'bool' in return return input_; ```
* | Merge pull request #1841 from tonytheodore/doc-opts-toolchainTony Theodore2017-07-232-3/+5
|\ \ | | | | | | binutils gcc: use MXE_DISABLE_DOC_OPTS
| * | gcc: use MXE_DISABLE_DOC_OPTSTony Theodore2017-07-231-0/+1
| | |