diff options
author | Luka Perkov <luka@openwrt.org> | 2013-05-16 00:04:48 +0000 |
---|---|---|
committer | Luka Perkov <luka@openwrt.org> | 2013-05-16 00:04:48 +0000 |
commit | 4fc8e64a40e8e6d7151640c9b76dbab38f51d254 (patch) | |
tree | 475ec6d0e2c28deffdd7bdcd31d92e5d9485a7b7 /package/network/utils | |
parent | a62ca723099af67cae706b723305e4d48f082d10 (diff) | |
download | upstream-4fc8e64a40e8e6d7151640c9b76dbab38f51d254.tar.gz upstream-4fc8e64a40e8e6d7151640c9b76dbab38f51d254.tar.bz2 upstream-4fc8e64a40e8e6d7151640c9b76dbab38f51d254.zip |
iproute2: workaround compile issues with gcc 4.8.x
SVN-Revision: 36642
Diffstat (limited to 'package/network/utils')
4 files changed, 16 insertions, 4 deletions
diff --git a/package/network/utils/iproute2/Makefile b/package/network/utils/iproute2/Makefile index 8e25f867b2..ff80df4111 100644 --- a/package/network/utils/iproute2/Makefile +++ b/package/network/utils/iproute2/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=iproute2 PKG_VERSION:=3.9.0 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=http://kernel.org/pub/linux/utils/net/iproute2/ diff --git a/package/network/utils/iproute2/patches/000-warnings.patch b/package/network/utils/iproute2/patches/000-warnings.patch new file mode 100644 index 0000000000..8f07c3896b --- /dev/null +++ b/package/network/utils/iproute2/patches/000-warnings.patch @@ -0,0 +1,12 @@ +--- a/Makefile ++++ b/Makefile +@@ -30,8 +30,7 @@ CC = gcc + HOSTCC = gcc + DEFINES += -D_GNU_SOURCE + CCOPTS = -O2 +-WFLAGS := -Wall -Wstrict-prototypes -Werror -Wmissing-prototypes +-WFLAGS += -Wmissing-declarations -Wold-style-definition ++WFLAGS := -Wall -Wstrict-prototypes + + CFLAGS = $(WFLAGS) $(CCOPTS) -I../include $(DEFINES) + YACCFLAGS = -d -t -v diff --git a/package/network/utils/iproute2/patches/008-no_netem.patch b/package/network/utils/iproute2/patches/008-no_netem.patch index 165ce0c9b9..78baeadbd1 100644 --- a/package/network/utils/iproute2/patches/008-no_netem.patch +++ b/package/network/utils/iproute2/patches/008-no_netem.patch @@ -1,6 +1,6 @@ --- a/Makefile +++ b/Makefile -@@ -36,7 +36,7 @@ WFLAGS += -Wmissing-declarations -Wold-s +@@ -35,7 +35,7 @@ WFLAGS := -Wall -Wstrict-prototypes CFLAGS = $(WFLAGS) $(CCOPTS) -I../include $(DEFINES) YACCFLAGS = -d -t -v diff --git a/package/network/utils/iproute2/patches/110-extra-ccopts.patch b/package/network/utils/iproute2/patches/110-extra-ccopts.patch index af38fe1989..71ec957ad0 100644 --- a/package/network/utils/iproute2/patches/110-extra-ccopts.patch +++ b/package/network/utils/iproute2/patches/110-extra-ccopts.patch @@ -6,6 +6,6 @@ DEFINES += -D_GNU_SOURCE -CCOPTS = -O2 +CCOPTS = -O2 $(EXTRA_CCOPTS) - WFLAGS := -Wall -Wstrict-prototypes -Werror -Wmissing-prototypes - WFLAGS += -Wmissing-declarations -Wold-style-definition + WFLAGS := -Wall -Wstrict-prototypes + CFLAGS = $(WFLAGS) $(CCOPTS) -I../include $(DEFINES) |