diff options
author | Amol Bhave <amol@amolbhave.com> | 2019-04-19 07:33:25 -0700 |
---|---|---|
committer | Amol Bhave <ambhave@fb.com> | 2019-04-19 16:18:28 -0700 |
commit | acabcd4c23f805d4ba0df966cfd36cd0ee7103a0 (patch) | |
tree | c7e57ba1eb6c0db45e87d4d635fb79dcf7a31c5d /libs/zmq/Makefile | |
parent | 949796044ce23abdfa5b7ca20a35adf2cbed609e (diff) |
zmq: Fix compilation for c++ stdlib
Compilation for the zmq lib is broken for c++ stdlib in openwrt since the
patches add uclibc++ specific code.
This diffs changes the patch to only include the code conditioned
on if we are actually using uclibc++.
Signed-off-by: Amol Bhave <amol@amolbhave.com>
Diffstat (limited to 'libs/zmq/Makefile')
-rw-r--r-- | libs/zmq/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/zmq/Makefile b/libs/zmq/Makefile index 290eef50d..2d21be000 100644 --- a/libs/zmq/Makefile +++ b/libs/zmq/Makefile @@ -11,7 +11,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=zeromq PKG_VERSION:=4.1.6 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_MAINTAINER:=Dirk Chang <dirk@kooiot.com> PKG_LICENSE:=GPL-3.0+ PKG_LICENSE_FILES:=LICENCE.txt |