diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2016-01-30 16:25:28 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-02-07 13:57:22 +0100 |
commit | 0d80aee73d977dfdc37413ed61ac1d3d29ad3540 (patch) | |
tree | bd96479aa62e36dfce428633efb23684c5ab732f /package/iprutils/0003-Fix-static-build-by-passing-the-libraries-i.patch | |
parent | 8b9eaff0006ffba1559f532534c3c9e5f55ad114 (diff) | |
download | buildroot-0d80aee73d977dfdc37413ed61ac1d3d29ad3540.tar.gz buildroot-0d80aee73d977dfdc37413ed61ac1d3d29ad3540.zip |
package/iprutils: bump version to 2.4.10
Upstream now provides a new autoconf-based build system, therefore
our patches for Makefile are not needed anymore.
We adapt the gettext patch to make sure that the configure script
doesn't check for libintl.h, and we add an additional patch to fix the
libm check.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
[Thomas: rework patches.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/iprutils/0003-Fix-static-build-by-passing-the-libraries-i.patch')
-rw-r--r-- | package/iprutils/0003-Fix-static-build-by-passing-the-libraries-i.patch | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/package/iprutils/0003-Fix-static-build-by-passing-the-libraries-i.patch b/package/iprutils/0003-Fix-static-build-by-passing-the-libraries-i.patch deleted file mode 100644 index 5ea7d1be0f..0000000000 --- a/package/iprutils/0003-Fix-static-build-by-passing-the-libraries-i.patch +++ /dev/null @@ -1,35 +0,0 @@ -From 1f62dd91314b0ce6378aeafb2a03566002036326 Mon Sep 17 00:00:00 2001 -From: Vicente Olivert Riera <Vincent.Riera@imgtec.com> -Date: Thu, 11 Dec 2014 23:36:55 +0100 -Subject: [PATCH 3/3] iprutils: Fix static build by passing the libraries in - the right order - -This mistake was causing failures like this one: - -m_post.c:(.text+0x60): undefined reference to `wattr_on' - -http://autobuild.buildroot.net/results/500/5004e7b230635e0605acdd17d2b7d2d01fc5075c/build-end.log - -Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> -[Romain: rebase on top of 2.4.5] -Signed-off-by: Romain Naour <romain.naour@openwide.fr> ---- - Makefile | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/Makefile b/Makefile -index 66c4942..18cea94 100644 ---- a/Makefile -+++ b/Makefile -@@ -16,7 +16,7 @@ TAR = cd .. && tar -zcpf iprutils-$(UTILS_VER)-src.tgz --exclude .git --exclude - all: iprconfig iprupdate iprdump iprinit iprdbg docs - - iprconfig: iprconfig.c iprlib.o iprconfig.h -- $(CC) $(CFLAGS) $(INCLUDEDIR) -o iprconfig iprconfig.c iprlib.o $(LDFLAGS) -lform -lpanel -lncurses -lmenu -lm -+ $(CC) $(CFLAGS) $(INCLUDEDIR) -o iprconfig iprconfig.c iprlib.o $(LDFLAGS) -lform -lpanel -lmenu -lncurses -lm - - iprupdate: iprupdate.c iprlib.o - $(CC) $(CFLAGS) $(INCLUDEDIR) -o iprupdate iprlib.o iprupdate.c $(LDFLAGS) --- -1.9.3 - |