summaryrefslogtreecommitdiffstats
path: root/src/flann.mk
Commit message (Collapse)AuthorAgeFilesLines
* gcc pthreads: build pthreads and mingw-w64 headers inline and enable libgompTony Theodore2015-10-311-1/+1
| | | | | | | | | * fixes "~winpthreads changes ~pthread_signal.h" etc. reported by build-pkg mingw-w64 installs dummy headers if winpthreads isn't built * enables libgomp to avoid double-build (see #331) * no change in openmp-validation (still 20 failures - taken with a grain of salt as the batch file test runner isn't a reliable perl substitute) * pthreads virtual package kept for future testing
* all packages: really use sha256 checksumsTony Theodore2015-09-231-1/+1
|
* all packages: switch to sha256 checksumsTony Theodore2015-09-231-1/+1
| | | | closes #871
* flann: Fix update macro and download URLTimothy Gu2014-11-131-2/+2
| | | | Signed-off-by: Timothy Gu <timothygu99@gmail.com>
* flann: Symlink to _s libraryTimothy Gu2014-09-191-1/+9
| | | | Signed-off-by: Timothy Gu <timothygu99@gmail.com>
* flann: enable OpenMPTimothy Gu2014-08-111-2/+2
| | | | Signed-off-by: Timothy Gu <timothygu99@gmail.com>
* flann: updateTimothy Gu2014-08-111-3/+4
| | | | Signed-off-by: Timothy Gu <timothygu99@gmail.com>
* flann: enable shared libTimothy Gu2014-08-111-2/+0
| | | | | | | With this commit the static libs are installed as "libflann.a" instead of "libflann_s.a". pkg-config files are changed accordingly. Signed-off-by: Timothy Gu <timothygu99@gmail.com>
* many packages: explicitly disable shared buildsTony Theodore2014-04-061-0/+2
| | | | closes #369
* package flann: fix for too many sections errorTony Theodore2013-11-091-1/+4
|
* 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)
* package flann: add update scriptTony Theodore2012-12-121-2/+4
|
* packages flann netpbm pcl: add update script placeholderTony Theodore2012-12-081-1/+2
|
* Add package flann.Martin Lambers2012-12-071-0/+24
This is a prerequisite for PCL (Point Cloud Library).