summaryrefslogtreecommitdiffstats
path: root/src/poco.mk
Commit message (Collapse)AuthorAgeFilesLines
* all packages: really use sha256 checksumsTony Theodore2015-09-231-1/+1
|
* all packages: switch to sha256 checksumsTony Theodore2015-09-231-1/+1
| | | | closes #871
* update various packages (tested on i686-w64-mingw32.static)Tony Theodore2014-12-011-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
* poco: Disable tests and samplesTimothy Gu2014-11-161-1/+3
| | | | | | | Fixes building. Poco doesn't supply a way to declare private/static lib deps so linking fails for the tests. Signed-off-by: Timothy Gu <timothygu99@gmail.com>
* poco: UpdateTimothy Gu2014-11-161-2/+2
| | | | Signed-off-by: Timothy Gu <timothygu99@gmail.com>
* poco: Build as far as possible with parallel buildingTimothy Gu2014-11-161-1/+1
| | | | Signed-off-by: Timothy Gu <timothygu99@gmail.com>
* poco: Fall back to serial build if parallel build failsTimothy Gu2014-10-211-1/+2
| | | Should fix #544.
* poco: Enable on x86_64-w64-mingw32Timothy Gu2014-09-091-1/+0
| | | | Signed-off-by: Timothy Gu <timothygu99@gmail.com>
* poco: Add POCO_STATIC to Config.h when building staticTimothy Gu2014-09-091-0/+3
| | | | | | This allows easier integration with user applications. Signed-off-by: Timothy Gu <timothygu99@gmail.com>
* poco: Use system zlib etc. and enable on i686-w64-mingw32Timothy Gu2014-09-091-4/+3
| | | | Signed-off-by: Timothy Gu <timothygu99@gmail.com>
* many packages: explicitly disable shared buildsTony Theodore2014-04-061-0/+2
| | | | closes #369
* update package pocoNiels Kristian Bech Jensen2013-11-191-3/+3
|
* 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-0/+3
|
* update package pocoNiels Kristian Bech Jensen2013-04-221-1/+1
|
* update package pocoMark Brand2012-11-191-1/+1
|
* update package pocoMark Brand2012-10-121-1/+1
|
* all packages: use $(WGET) portability variableTony Theodore2012-05-161-1/+1
|
* package poco: allow different VENDOR segments of host tripletTony Theodore2012-04-211-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
|
* update packages proj, pocoTony Theodore2012-03-241-2/+2
|
* corrections and improvements for package pocoVolker Grabsch2011-05-011-10/+17
|
* new package: pocoFinny Thomas2011-05-011-0/+25