Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | log4cxx: add patch header | Tony Theodore | 2017-07-25 | 1 | -0/+17 |
| | |||||
* | Merge branch 'log4cxx-invalid-narrowing-conversion-with-gcc6' of ↵ | Tony Theodore | 2017-07-25 | 1 | -0/+105 |
|\ | | | | | | | https://github.com/mbunkus/mxe into mbunkus-log4cxx-invalid-narrowing-conversion-with-gcc6 | ||||
| * | log4cxx: fix invalid narrowing conversion tripping up g++ >= 6 | Moritz Bunkus | 2017-07-09 | 1 | -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 style | Tony Theodore | 2017-07-25 | 1 | -1/+14 |
| | | |||||
* | | Merge branch 'sdl_sound-test-program-compilation-with-gcc6' of ↵ | Tony Theodore | 2017-07-25 | 1 | -0/+13 |
|\ \ | | | | | | | | | | https://github.com/mbunkus/mxe into mbunkus-sdl_sound-test-program-compilation-with-gcc6 | ||||
| * | | sdl_sound: fix test program compilation with gcc >= 6 | Moritz Bunkus | 2017-07-09 | 1 | -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 patches | Tony Theodore | 2017-07-25 | 2 | -14/+21 |
| | | |||||
* | | Merge branch 'openmp-validation-perl-cwd-not-in-inc-anymore' of ↵ | Tony Theodore | 2017-07-25 | 1 | -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 Perl | Moritz Bunkus | 2017-07-09 | 1 | -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.html | MXEBot as Travis CI | 2017-07-25 | 2 | -16/+5 |
| | | |||||
* | | Merge pull request #1849 from muellni/qt4overlay | Tony Theodore | 2017-07-25 | 4 | -58/+14 |
|\ \ | | | | | | | qt4 overlay plugin (for vtk and qwt) | ||||
| * | | qt4overlay: add updated vtk dependencies | Martin Müllenhaupt | 2017-07-24 | 1 | -1/+1 |
| | | | |||||
| * | | create qt4 overlay plugin to link VTK and Qwt to Qt 4 instead of 5 | Martin Müllenhaupt | 2017-07-24 | 4 | -58/+14 |
| | | | |||||
* | | | Update packages.json & build-matrix.html | MXEBot as Travis CI | 2017-07-25 | 2 | -16/+5 |
| | | | |||||
* | | | Merge pull request #1852 from tonytheodore/muellni-update-vtk | Tony Theodore | 2017-07-25 | 5 | -740/+120 |
|\ \ \ | | | | | | | | | vtk: update to version 8 and removal of package vtk6 | ||||
| * | | | vtk: remove positional vars and CMAKE_TOOLCHAIN_FILE | Tony Theodore | 2017-07-25 | 1 | -17/+13 |
| | | | | |||||
| * | | | vtk: use SOURCE_DIR and CMAKE_SHARED_BOOL vars | Martin Müllenhaupt | 2017-07-24 | 1 | -5/+5 |
| | | | | |||||
| * | | | vtk: update to version 8 and remove package vtk6 | Martin Müllenhaupt | 2017-07-24 | 5 | -737/+121 |
| |/ / | |||||
* | | | Merge pull request #1696 from ↵ | Tony Theodore | 2017-07-24 | 7 | -47/+53 |
|\ \ \ | |/ / |/| | | | | | | | | pavelvat/install-gstreamer-dll-plugins-to-separate-dir Install gstreamer dll plugins to separate directory | ||||
| * | | update clementine_qt4 | Pavel Vatagin | 2017-07-24 | 1 | -41/+41 |
| | | | |||||
| * | | install gstreamer dll plugins to separate directory | Pavel Vatagin | 2017-07-24 | 6 | -6/+12 |
|/ / | |||||
* | | Update packages.json & build-matrix.html | MXEBot as Travis CI | 2017-07-24 | 2 | -2/+2 |
| | | |||||
* | | Merge pull request #1843 from tonytheodore/libarchive-update | Tony Theodore | 2017-07-24 | 2 | -7/+26 |
|\ \ | | | | | | | libarchive: update 3.1.2 --> 3.3.2 | ||||
| * | | libarchive: update 3.1.2 --> 3.3.2 | Tony Theodore | 2017-07-24 | 2 | -7/+26 |
|/ / | |||||
* | | Update packages.json & build-matrix.html | MXEBot as Travis CI | 2017-07-24 | 2 | -2/+2 |
| | | |||||
* | | Merge pull request #1814 from mbunkus/libxml++-update-to-2.40.1-for-gcc6 | Tony Theodore | 2017-07-24 | 1 | -2/+2 |
|\ \ | | | | | | | libxml++: update from 2.37.2 to 2.40.1 | ||||
| * | | libxml++: update from 2.37.2 to 2.40.1 | Moritz Bunkus | 2017-07-09 | 1 | -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-toolchain | Tony Theodore | 2017-07-23 | 2 | -3/+5 |
|\ \ | | | | | | | binutils gcc: use MXE_DISABLE_DOC_OPTS | ||||
| * | | gcc: use MXE_DISABLE_DOC_OPTS | Tony Theodore | 2017-07-23 | 1 | -0/+1 |
| | | | |||||
| * | | binutils: use MXE_DISABLE_DOC_OPTS and BUILD_DIR/SOURCE_DIR | Tony Theodore | 2017-07-23 | 1 | -3/+4 |
|/ / | |||||
* | | Update packages.json & build-matrix.html | MXEBot as Travis CI | 2017-07-23 | 2 | -6/+6 |
| | | |||||
* | | Merge pull request #1822 from tonytheodore/binutils-2.28 | Tony Theodore | 2017-07-23 | 3 | -15/+148 |
|\ \ | | | | | | | binutils: update 2.25.1 --> 2.28 | ||||
| * | | binutils: add Debian SOURCE_DATE_EPOCH patch | Tony Theodore | 2017-07-14 | 1 | -0/+146 |
| | | | |||||
| * | | osx: remove workaround for recent Xcode versions | Tony Theodore | 2017-07-14 | 1 | -10/+0 |
| | | | |||||
| * | | binutils: update 2.25.1 --> 2.28 | Tony Theodore | 2017-07-14 | 1 | -5/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * fixes original 2.26 regression with iostreams dll ``` $ make gcc STRIP_TOOLCHAIN= MXE_TARGETS=i686-w64-mingw32.shared [...] $ i686-w64-mingw32.shared-nm usr/i686-w64-mingw32.shared/bin/libstdc++-6.dll | grep InitC1 6fefa2d0 T __ZNSt8ios_base4InitC1Ev ``` * replaces #1737 * fixes #1758 * tested on all four targets | ||||
* | | | Update packages.json & build-matrix.html | MXEBot as Travis CI | 2017-07-23 | 2 | -8/+8 |
| | | | |||||
* | | | Merge pull request #1830 from tonytheodore/doc-opts | Tony Theodore | 2017-07-23 | 22 | -190/+215 |
|\ \ \ | | | | | | | | | add more MXE_DISABLE_DOC_OPTS and fix related packages | ||||
| * | | | opencv openscenegraph: fix __STDC_LIMIT_MACROS used by jasper | Tony Theodore | 2017-07-20 | 2 | -12/+11 |
| | | | | |||||
| * | | | liboil libshout gstreamer and plugins: remove options now in ↵ | Tony Theodore | 2017-07-20 | 7 | -30/+13 |
| | | | | | | | | | | | | | | | | MXE_DISABLE_DOC_OPTS | ||||
| * | | | log4cxx ucl: filter out invalid configure options | Tony Theodore | 2017-07-20 | 2 | -8/+14 |
| | | | | |||||
| * | | | libid3tag libmad: regenerate configure to remove invalid options error | Tony Theodore | 2017-07-20 | 2 | -11/+13 |
| | | | | |||||
| * | | | ccfits cfitsio devil jasper: update and switch to cmake | Tony Theodore | 2017-07-20 | 8 | -129/+163 |
| | | | | |||||
| * | | | Makefile: add more MXE_DISABLE_DOC_OPTS | Tony Theodore | 2017-07-20 | 1 | -0/+1 |
| | | | | |||||
* | | | | Merge pull request #1836 from Lord-Kamina/master | Tony Theodore | 2017-07-23 | 1 | -6/+22 |
|\ \ \ \ | | | | | | | | | | | Fixes for copydlldeps.sh under macOS. | ||||
| * | | | | copydlldeps.sh: Fixes for macOS. | Gregorio Litenstein | 2017-07-22 | 1 | -5/+21 |
| | | | | | | | | | | | | | | | | | | | | The current version fails in macOS due to some differences in “find” and “cp”. This takes that into account. | ||||
| * | | | | copydlldeps.sh: Fix syntax error (missing space) | Gregorio Litenstein | 2017-07-22 | 1 | -1/+1 |
| |/ / / | |||||
* | | | | Merge pull request #1826 from tonytheodore/config-guess | Tony Theodore | 2017-07-22 | 1 | -66/+101 |
|\ \ \ \ | | | | | | | | | | | update config.guess | ||||
| * | | | | update config.guess | Tony Theodore | 2017-07-17 | 1 | -66/+101 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ChangeLog: https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob;f=ChangeLog;h=b364c02c4998fc5bd187f87534f6b12fe41808a9;hb=HEAD closes #1158, #1825 | ||||
* | | | | | Merge pull request #1831 from muellni/qt5_static_cmake_deps | Tony Theodore | 2017-07-22 | 1 | -0/+5 |
|\ \ \ \ \ | | | | | | | | | | | | | qtbase: fix CMake static linking dependencies | ||||
| * | | | | | qtbase: fix CMake static linking dependencies | Martin Müllenhaupt | 2017-07-21 | 1 | -0/+5 |
| | |/ / / | |/| | | |