summaryrefslogtreecommitdiff
path: root/package/c-icap
AgeCommit message (Collapse)Author
2016-04-26c-icap: avoid host library search pathBaruch Siach
Add AUTORECONF as a workaround to the effect of '-Wl,-rpath -Wl,/usr/lib' that c-icap adds to the linker command. Fixes: http://autobuild.buildroot.net/results/077/077374329b2782dbb4b4a9ee7af264cdda311ccc/ http://autobuild.buildroot.net/results/057/057a88179150a4f02990d7b9b0d8f2de3c9da1a3/ http://autobuild.buildroot.net/results/da6/da62b80989df6b8f1b5557b4987d7a6999d30bb8/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2016-04-26c-icap: bump to version 0.4.2Baruch Siach
Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2015-10-04package: Replace 'echo -n' by 'printf'Maxime Hadjinlian
'echo -n' is not a POSIX construct (no flag support), we shoud use 'printf', especially in init script. This patch was generated by the following command line: git grep -l 'echo -n' -- `git ls-files | grep -v 'patch'` | xargs sed -i 's/echo -n/printf/' Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2015-09-30package: Remove trailing slash from all package site URLsLuca Ceresoli
The recommended form is without the trailing slash, and will become mandatory in a coming commit. This avoids the need for the $$($(2)_SITE:/=) magic in package/pkg-generic.mk to avoid double slashes in download URLs, like "https://mosh.mit.edu//mosh-1.2.5.tar.gz". ^^ Note: this work has already been done in b0b9606530dfc6de4030 a few months ago and earlier in c7f4b964718bc5a3329b and 4a9eb20de817fa64, but no check has been added at that time to avoid new slashes to slip in, and so they did. This time a patch will follow immediately to prevent future mistakes from being unnoticed. Mass-replaced with the following command: git grep -l '_SITE.*/$' | xargs sed -i '/_SITE.*=/s|/$||' Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2015-08-06c-icap: fix incorrect dependency on BR2_PREFER_STATIC_LIBThomas Petazzoni
BR2_PREFER_STATIC_LIB has been changed/renamed quite some time ago to BR2_STATIC_LIBS, but the c-icap submission was done before that, and during the review/merge of the patch, this rename was forgotten. This commit therefore fixes the c-icap dependency on BR2_STATIC_LIBS, which should fix: http://autobuild.buildroot.net/results/cb623460de30dd7c4ef3275fe13220c1ca0642a5/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2015-07-23c-icap: fix config scriptGuillaume GARDET
This commit adjusts the c-icap config script by removing a bogus -L$LIBDIR which was expanded to -L/usr/lib, which is wrong for cross-compilation. It fixes the build of c-icap-modules: http://autobuild.buildroot.org/results/b05/b05141a6d450c94669c6a0a5a0f5b799c2c248f2/ Reported-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Guillaume GARDET <guillaume.gardet@oliseo.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2015-07-12c-icap: disable Perl supportThomas Petazzoni
The Perl support in c-icap does not build properly, because it queries the system-installed Perl for cflags/ldflags, which returns things like -I/usr/local/include causing build failures since those are invalid paths when cross-compiling. Since there is no easy way to fix that without changing c-icap configure.in, let's disable the Perl support for now, until someone is interested enough to fix this up. Fixes: http://autobuild.buildroot.org/results/f60/f6011ab8211589fe8e1e8932db9f8be81768d3e6/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2015-07-12c-icap: needs MMU supportThomas Petazzoni
Fixes: http://autobuild.buildroot.org/results/8c3/8c3e397eeecb2a6a39fbae1d8665bff92ef3e3bb/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2015-07-10c-icap: new packageGuillaume GARDET
[Thomas: - Remove trailing whitespace everywhere - Rewrap the Config.in help text - Fix Config.in comment, the proper text for BR2_PREFER_STATIC_LIB is "dynamic library", not "libdl library" - Use a PID file in the init script - Show OK / FAIL when stopping the service - Remove the largefile/IPv6 handling in c-icap.mk, since they are now mandatory. We therefore pass --enable-large-files and --enable-ipv6 unconditionally. - Remove the reference to a non-existing C_ICAP_INSTALL_TARGET_CONFIGS install target hook. - Install the init script unconditionally. - Remove unneeded example configuration files (*.default) from /etc, and fixup the c-icap.conf so that the default values work with Buildroot - Properly handle the *-config scripts installed by c-icap. - Add hash file.] Signed-off-by: Guillaume GARDET <guillaume.gardet@oliseo.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>