summaryrefslogtreecommitdiffstats
path: root/package/libevent
Commit message (Collapse)AuthorAgeFilesLines
* libevent: fix openssl detection when statically linkingPeter Korsgaard2015-02-271-0/+5
| | | | | | | | | | Fixes (indirectly): http://autobuild.buildroot.net/results/dbf/dbf2d348de3831a86728f9d72cb56b9f2ddbf554/ http://autobuild.buildroot.net/results/6a8/6a89183e558e4ff27841c3e544687ad4a04fb036/ http://autobuild.buildroot.net/results/c80/c80eedb4d7335f1aef736a1312900c2b371eabc9/ http://autobuild.buildroot.net/results/91b/91b4ab54ed9d422bfaef765d09cc92192012ce7e/ Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libevent: security bump to version 2.0.22Gustavo Zacarias2015-01-073-76/+7
| | | | | | | | | | | | | Fixes CVE-2014-6272 - integer overflow bugs in evbuffer_add() and related functions. Also file hash file (was stale) and switch to sourceforge for a stable/proper hash. Patch 0002-Avoid-using-top_srcdir-in-TESTS.patch is upstream so remove. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libevent: add optional dependency on OpenSSLThomas Petazzoni2015-01-021-0/+7
| | | | | | | | | | libevent can optionally use OpenSSL, so add an optional dependency on this package to explicit this possibility. This makes sure libevent always gets built with OpenSSL support when the OpenSSL package is enabled. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
* libevent: Use github call & fix patchMaxime Hadjinlian2014-10-264-33/+105
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We want to use the github helper since there is not a specific releases tarball that we can download, as specified in the manual. This tarball is generated from the tag, which doesn't contains the autotools generated files, we then need to use AUTORECONF. We want to use the github helper anyway as the current URL use an old GitHub feature which was called 'Download' where you could upload files along your repositories, theses files were not related to your tags. This features has been replaced with the 'Release' option where you can create a release from a git tag. But these tarball are generated from the sources and they don't contains all the generated autotools file. Since the old URL scheme can be deprecated at any time, we want to switch to the new URL scheme, which in the case of libevent, implies having to do an AUTORECONF. The patch that was already present is updated to apply against Makefile.am instead of Makefile.in The second patch is backported from upstream to remove the use of $(top_src_dirs) which makes current autotools error out. Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libevent: add hash fileGustavo Zacarias2014-10-191-0/+2
| | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libevent: add license informationGustavo Zacarias2014-06-261-0/+2
| | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libevent: add host variantGustavo Zacarias2013-12-081-0/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libevent: Bump to 2.0.21Mischa Jonker2013-09-251-1/+1
| | | | | | | | This fixes the build on ARC as well, as 2.0.17+ includes a fix that checks for existence of 'sysctl'. Signed-off-by: Mischa Jonker <mjonker@synopsys.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libevent: disable building test programsgilles.talis@gmail.com2013-07-021-0/+30
| | | | | | | | | | | | | | | Libevent test programs use fork(), function that is not available on MMU-less architecture. This patch prevents compiling libevent test programs so that library can successfully build on architectures like blackfin Fixes: http://autobuild.buildroot.org/results/2e0/2e0422f1042d0cb00f5bab0dc190930581ed4ef2/ Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Normalize separator size to 80Alexandre Belloni2013-06-061-2/+2
| | | | | Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Fix package headers to comply with coding styleAlexandre Belloni2013-06-061-0/+1
| | | | | Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* all packages: rename XXXTARGETS to xxx-packageArnout Vandecappelle (Essensium/Mind)2012-07-171-1/+1
| | | | | | | | | | | | | Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* packages: remove redundant INSTALL_TARGET=YES declarationsGustavo Zacarias2012-03-111-1/+0
| | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* packages: remove redundant AUTORECONF=NO declarationsGustavo Zacarias2012-03-111-2/+0
| | | | | | | [Peter: handle libgtk2 as well] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libevent: bump version to 2.0.14H Hartley Sweeten2011-10-071-2/+2
| | | | | | | Released 2011-08-31. Mostly bugfixes. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: remove useless arguments from AUTOTARGETSThomas Petazzoni2011-09-291-1/+1
| | | | | | | | | | Thanks to the pkgparentdir and pkgname functions, we can rewrite the AUTOTARGETS macro in a way that avoids the need for each package to repeat its name and the directory in which it is present. [Peter: pkgdir->pkgparentdir] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libevent: bump to version 2.0.13Darius Augulis2011-09-131-1/+1
| | | | | Signed-off-by: Darius Augulis <augulis.darius@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: apply libtool patch where possiblePeter Korsgaard2011-02-171-1/+0
| | | | | | | | | | Now that we have libtool-2.2.x patch support, we can get rid of a bunch of _LIBTOOL_PATH = NO, fixing (potential) cross link issues. Notice: php not changed, as it uses a very old 1.5 version for the embedded sqlite, where our buildroot-libtool-v1.5.patch doesn't apply. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libevent: convert old-style hook to new-style hookThomas Petazzoni2010-09-121-6/+8
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libevent: only install event_rpcgen.py if python support is enabledPeter Korsgaard2009-09-191-0/+8
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libevent: Bump version and clean up makefile.Will Newton2009-09-192-74/+8
| | | | | | | | | | Closes #565 - Bump version from 1.2 to 1.4.12 - Clean up makefile and use Makefile.autotools.in. Signed-off-by: Will Newton <will.newton@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: Remove unnecessary dependencies on uclibc.Will Newton2009-09-031-1/+1
| | | | | | | | A C library will have been built by the toolchain makefiles, so there is no need for packages to explicitly depend on uclibc. Signed-off-by: Will Newton <will.newton@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/: convert to DOWNLOAD helperPeter Korsgaard2009-01-161-1/+1
|
* package/: get rid of unneeded $(strip ..)Peter Korsgaard2008-12-081-1/+1
|
* Kconfig: remove 'default n'Peter Korsgaard2008-07-171-1/+0
| | | | 'default n' is the default, so there's no need to say it explicitly.
* - fixes and cleanups (Cristian Ionescu-Idbohrn)Bernhard Reutner-Fischer2007-09-191-3/+6
|
* - sed -i -e "/;$/s/;$//g" $(egrep ";$" package/* package/*/*.mk toolchain/* ↵Bernhard Reutner-Fischer2007-08-211-1/+1
| | | | toolchain/*/*.mk */Makefile.in -l)
* Use <package>_VERSION in all <package>.mk instead of <package>_VERUlf Samuelsson2007-07-111-3/+3
|
* - the TARGET_CONFIGURE_OPTS have to be passed after $(MAKE).Bernhard Reutner-Fischer2007-07-091-1/+1
| | | | Fixes build breakage as seen by Ulf et al.
* - add endian handling, mmap, memcmp checks to TARGET_CONFIGURE_ARGSBernhard Reutner-Fischer2007-06-271-2/+1
| | | | - use TARGET_CONFIGURE_ARGS where appropriate.
* - use $@Bernhard Reutner-Fischer2007-06-201-2/+2
|
* - you have to escape the asteriskBernhard Reutner-Fischer2007-06-201-1/+1
|
* fixup package LDFLAGS handlingEric Andersen2007-03-131-0/+1
|
* - remove some hardcoded occurances of "make" and use the proper variable insteadBernhard Reutner-Fischer2007-01-211-2/+2
|
* - Remove CC_FOR_BUILD="$(HOSTCC)" since it is already contained in theBernhard Reutner-Fischer2007-01-141-1/+1
| | | | TARGET_CONFIGURE_OPTS
* - add missing foo-source target for "make source" for downloading Bernhard Reutner-Fischer2007-01-141-0/+2
| | | | package sources used by later offline build.
* Remove man pages after installing into target filesystem."Steven J. Hill"2007-01-141-1/+4
|
* Add libevent package. I started building all the components needed for NFSv4 ↵"Steven J. Hill"2007-01-143-0/+80
support of which libevent is one of them. The rest of the needed components, however, are horrific to get building.
OpenPOWER on IntegriCloud