diff options
author | Luca Ceresoli <luca@lucaceresoli.net> | 2015-11-27 18:38:00 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-11-28 18:21:18 +0100 |
commit | f0c9470451b23989fe7b298d30352760b1513c37 (patch) | |
tree | 3de428eeb27535a12aeffc80f5d62cbadcbdf4e4 /package/infozip/0004-configure-use-LDFLAGS-from-command-line.patch | |
parent | d563c0d5ac76b59379dcc228c02408b2a402b721 (diff) | |
download | buildroot-f0c9470451b23989fe7b298d30352760b1513c37.tar.gz buildroot-f0c9470451b23989fe7b298d30352760b1513c37.zip |
infozip: rename to zip
We currently have a package named "infozip" for Info-Zip's Zip.
With the upcoming addition of a package the Info-Zip's UnZip the name
is becoming ambiguous. Rename it to the more specific name "zip".
Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
Cc: Romain Naour <romain.naour@openwide.fr>
Cc: Jan Pedersen <jp@jp-embedded.com>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Reviewed-by: Romain Naour <romain.naour@openwide.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/infozip/0004-configure-use-LDFLAGS-from-command-line.patch')
-rw-r--r-- | package/infozip/0004-configure-use-LDFLAGS-from-command-line.patch | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/package/infozip/0004-configure-use-LDFLAGS-from-command-line.patch b/package/infozip/0004-configure-use-LDFLAGS-from-command-line.patch deleted file mode 100644 index 35d3860215..0000000000 --- a/package/infozip/0004-configure-use-LDFLAGS-from-command-line.patch +++ /dev/null @@ -1,35 +0,0 @@ -From 5c58b8737dc9ccf9407f6725f6f07b764d6abb22 Mon Sep 17 00:00:00 2001 -From: Romain Naour <romain.naour@openwide.fr> -Date: Thu, 22 Jan 2015 23:47:55 +0100 -Subject: [PATCH 4/6] configure: use LDFLAGS from command line - -The bzip2 support may not enabled due to a build error -during the checking for bzip2 library. -The library path (-L) to bzip2 library is missing. - -Signed-off-by: Romain Naour <romain.naour@openwide.fr> ---- - unix/configure | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/unix/configure b/unix/configure -index 489009f..de9fd68 100644 ---- a/unix/configure -+++ b/unix/configure -@@ -106,11 +106,11 @@ int main() - return 0; - } - _EOF_ -- $CC $CFLAGS -o conftest conftest.c -lbz2 > /dev/null 2>/dev/null -+ $CC $CFLAGS $LDFLAGS -o conftest conftest.c -lbz2 > /dev/null 2>/dev/null - if test $? -eq 0; then - echo "-- OS supports bzip2 - linking in bzip2" - CFLAGS="${CFLAGS} -DBZIP2_SUPPORT" -- LFLAGS2="${LFLAGS2} -lbz2" -+ LFLAGS2="${LFLAGS2} ${LDFLAGS} -lbz2" - else - echo "-- Either bzlib.h or libbz2.a not found - no bzip2" - fi --- -1.9.3 - |