summaryrefslogtreecommitdiffstats
path: root/package/libb64
Commit message (Collapse)AuthorAgeFilesLines
* package/libb64: fix integer overflow and uninitialized C++ objectsMikael Eliasson2019-02-062-0/+111
| | | | | | | | | Fixes a runtime bug on compilers where unsigned char is the default. Fixes a runtime bug where _state variable in the encoder and decoder c++ objects where not initialized by the constructors. Signed-off-by: Mikael Eliasson <mikael@robomagi.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* libb64: add hash for license fileFabrice Fontaine2018-04-291-0/+3
| | | | | Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* packages: use new $($PKG)_DL_DIR) variableMaxime Hadjinlian2018-04-021-1/+1
| | | | | | | | | | | | | | | | | | | | | Instead of DL_DIR, the package should now use $(PKG)_DL_DIR to ease the transition into a new directory structure for DL_DIR. This commit has been generated with the following scripts: for i in $(find . -iname "*.mk"); do if ! grep -q "\$(DL_DIR)" ${i}; then continue fi pkg_name="$(basename $(dirname ${i}))" [ "${pkg_name}" = "package" ] && continue raw_pkg_name=$(echo ${pkg_name} | tr [a-z] [A-Z] | tr '-' '_') pkg_dl_dir="${raw_pkg_name}_DL_DIR" sed -i "s/\$(DL_DIR)/\$($pkg_dl_dir)/" ${i} done Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/libb64: new packageAngelo Compagnucci2017-08-123-0/+47
This patch adds libb64, a library of ANSI C routines for fast encoding/decoding data into and from a base64-encoded format. The package contains a static library, headers, and an executable. The latter, however, requires C++ and offers no advantages over busybox or coreutils base64, so it is not installed. Therefore, nothing is installed to target. Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com> [Arnout: - properly wrap Config.in - move from Crypto to Other menu - don't install to target - don't make headers executable - don't add -D to install with multiple source files - extend commit log] Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
OpenPOWER on IntegriCloud