Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | update: poppler, vmime | Mark Brand | 2020-09-03 | 1 | -2/+2 |
| | |||||
* | update poppler | Mark Brand | 2020-08-03 | 1 | -2/+2 |
| | |||||
* | update poppler | Mark Brand | 2020-07-29 | 1 | -2/+2 |
| | |||||
* | update: dbus, freetds, poppler, vorbis | Mark Brand | 2020-07-04 | 1 | -2/+2 |
| | |||||
* | updates: dbus, harfbuzz, lcms, libgpg_error, mpg123, poppler, vmime | Mark Brand | 2020-06-04 | 1 | -2/+2 |
| | |||||
* | update: curl, nettle, poppler | Mark Brand | 2020-05-01 | 1 | -2/+2 |
| | |||||
* | update: poppler, vmime | Mark Brand | 2020-03-28 | 1 | -2/+2 |
| | |||||
* | update poppler | Mark Brand | 2020-03-03 | 1 | -2/+2 |
| | |||||
* | update: gnutls, libgpg_error, libtasn1, poppler | Mark Brand | 2020-02-10 | 1 | -2/+2 |
| | |||||
* | update: ffmpeg, libjpeg-turbo, poppler, wavpack | Mark Brand | 2020-01-05 | 1 | -3/+3 |
| | |||||
* | update: freetds, poppler | Mark Brand | 2019-12-03 | 1 | -2/+2 |
| | |||||
* | update: libssh, mpg123, poppler | Mark Brand | 2019-10-27 | 1 | -2/+2 |
| | |||||
* | update: freetds, gstreamer, poppler, vmime | Mark Brand | 2019-09-23 | 1 | -2/+2 |
| | |||||
* | update: freetds, libgcrypt, mxml, ogg, poppler | Mark Brand | 2019-08-31 | 1 | -2/+2 |
| | |||||
* | update: libwebp, mpg123, poppler | Mark Brand | 2019-07-18 | 1 | -2/+2 |
| | |||||
* | update: nettle, poco, poppler, qscintilla2 | Mark Brand | 2019-06-27 | 1 | -2/+2 |
| | |||||
* | update libevent, poppler | Mark Brand | 2019-05-26 | 1 | -2/+2 |
| | |||||
* | poppler: split cmake options and explicitly en-/disable each | Stefan Löffler | 2019-03-10 | 1 | -1/+25 |
| | |||||
* | poppler: update 0.51.0 --> 0.74.0 | Stefan Löffler | 2019-03-10 | 1 | -50/+13 |
| | |||||
* | poppler: disable reference docs (close #1820) | darealshinji | 2018-05-22 | 1 | -0/+1 |
| | |||||
* | poppler: use C++11. Fixes Qt5 build. | Jonas Kümmerlin | 2018-01-13 | 1 | -1/+1 |
| | | | | Qt5 now requires C++11 language features in its headers. | ||||
* | poppler qt5: use MXE's moc in PATH | Jonas Kümmerlin | 2018-01-13 | 1 | -2/+2 |
| | | | | | Previously, qt5/bin was missing from PATH. Poppler then picks up the host's tools which may not always work. | ||||
* | cross packages: replace dependency gcc with cc | Tony Theodore | 2017-12-22 | 1 | -1/+1 |
| | |||||
* | more URL updates | Viktor Szakats | 2017-03-10 | 1 | -3/+3 |
| | |||||
* | update: fftw poppler zlib | Mark Brand | 2017-01-15 | 1 | -2/+2 |
| | |||||
* | poppler: disable installation of documentation | Boris Nagaev | 2016-12-28 | 1 | -2/+2 |
| | | | | | | It used to install files to <target>/share/gtk-doc/html/poppler/ See https://github.com/mxe/mxe/pull/1617 | ||||
* | Update poppler. | Saikrishna Arcot | 2016-12-28 | 1 | -2/+2 |
| | |||||
* | add _WEBSITE and _DESCR fields to core packages | Boris Nagaev | 2016-12-22 | 1 | -0/+1 |
| | | | | | | See https://github.com/mxe/mxe/issues/1422 Automation (Python 2 code): https://gist.github.com/9f5c315e5d0cf113d41dc454b7a0eb41 | ||||
* | Copyright headers: point to LICENSE.md and shorten | Boris Nagaev | 2016-08-27 | 1 | -2/+1 |
| | | | | | | | | | | | | | | | | | | | 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 | ||||
* | use $(TEST_FILE) instead of $(2).c and other | Boris Nagaev | 2016-07-30 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The following script was applied: set -xue find src/ plugins/ -name '*.mk' -type f > mks # special cases for test file: # ls -d src/*-test* | sed 's@-test.*@@' | sort | uniq --repeated sed 's@$(2).c@$(PWD)/src/$(PKG)-test.c@g' -i \ src/{boost,freeimage,hdf5,lapack,sdl,sdl_image,sdl_sound}.mk sed 's@$(2).f@$(PWD)/src/$(PKG)-test.f@g' -i src/lapack.mk sed 's@$(PWD)/$(2).pro@$(PWD)/src/$(PKG)-test.pro@g' -i \ src/qt.mk plugins/examples/custom-qt-min/overrides.mk sed 's@$(2)-CMakeLists.txt@$(PWD)/src/$(PKG)-test-CMakeLists.txt@g' \ -i src/{sdl_image,sdl_sound}.mk # check for base in $(ls -d src/*-test* | sed 's@-test.*@@' | sort | uniq --repeated); do ! grep -q '$(2)' "${base}.mk" done # other $(2) sed 's@$(2).cpp@$(TEST_FILE)@g' -i $(cat mks) sed 's@$(2).cxx@$(TEST_FILE)@g' -i $(cat mks) sed 's@$(2).c@$(TEST_FILE)@g' -i $(cat mks) sed 's@$(2).ml@$(TEST_FILE)@g' -i $(cat mks) sed 's@$(2).f@$(TEST_FILE)@g' -i $(cat mks) # check ! grep '$(2)' $(cat mks) See https://github.com/mxe/mxe/issues/1452 | ||||
* | Fix Poppler makefile...again. | Saikrishna Arcot | 2016-06-09 | 1 | -2/+2 |
| | |||||
* | Another fix to the makefiles. | Saikrishna Arcot | 2016-06-08 | 1 | -2/+2 |
| | |||||
* | Get value of variable instead of using the variable name itself. | Saikrishna Arcot | 2016-06-07 | 1 | -1/+1 |
| | |||||
* | Simplify overrides, and add shared build support to poppler. | Saikrishna Arcot | 2016-06-05 | 1 | -9/+6 |
| | |||||
* | all packages: really use sha256 checksums | Tony Theodore | 2015-09-23 | 1 | -1/+1 |
| | |||||
* | many packages: cleanup deps ordering | Tony Theodore | 2015-09-23 | 1 | -1/+1 |
| | |||||
* | all packages: switch to sha256 checksums | Tony Theodore | 2015-09-23 | 1 | -1/+1 |
| | | | | closes #871 | ||||
* | poppler: update | Mark Brand | 2015-01-05 | 1 | -2/+2 |
| | |||||
* | update various packages (tested on i686-w64-mingw32.static) | Tony Theodore | 2014-12-01 | 1 | -2/+2 |
| | | | | | | | ffmpeg flac gdk-pixbuf glew glib graphicsmagick ilmbase imagemagick libffi libftdi1 libircclient libmicrohttpd libpaper librsvg libtool libwebp libxml++ libxml2 mpg123 mxml nlopt oce openblas opencv opusfile pfstools poco poppler primesieve x264 xine-lib | ||||
* | poppler: update | Timothy Gu | 2014-09-16 | 1 | -2/+2 |
| | | | | Signed-off-by: Timothy Gu <timothygu99@gmail.com> | ||||
* | many packages: explicitly disable shared builds | Tony Theodore | 2014-04-06 | 1 | -0/+2 |
| | | | | closes #369 | ||||
* | package poppler: fix PKG_CONFIG_PATH_* | Tony Theodore | 2014-02-09 | 1 | -1/+1 |
| | |||||
* | update package poppler | Mark Brand | 2014-01-04 | 1 | -2/+2 |
| | |||||
* | update package poppler | Mark Brand | 2013-11-28 | 1 | -2/+2 |
| | |||||
* | update package poppler | Mark Brand | 2013-10-26 | 1 | -2/+2 |
| | |||||
* | update package poppler | Mark Brand | 2013-10-06 | 1 | -2/+3 |
| | |||||
* | package poppler: fix update macro | Mark Brand | 2013-10-05 | 1 | -2/+2 |
| | |||||
* | package poppler: fix building poppler Qt 4 libraries | Mark Brand | 2013-08-17 | 1 | -2/+5 |
| | | | | | Poppler doesn't use qmake, so we resort to fixing the PATH so moc can be found by the configure script. | ||||
* | package poppler: use lcms 2 | Mark Brand | 2013-08-17 | 1 | -2/+2 |
| | | | | Now that Qt uses libmng 2 which uses lcms 2, we should too. | ||||
* | package poppler: use lcms1 for qt/libmng compatibility | Tony Theodore | 2013-08-02 | 1 | -1/+2 |
| |