summaryrefslogtreecommitdiffstats
path: root/package/zmqpp/0003-Install-static-library-for-static-builds.patch
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2016-02-24 14:38:48 -0300
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2016-02-25 21:47:10 +0100
commitbef15922964f6a29ac065bdaa36f11d737d21120 (patch)
tree017d739d070914dc13d688e705cc8ed428569ef4 /package/zmqpp/0003-Install-static-library-for-static-builds.patch
parent8461038f8d4db026538677cee857a3c3324fcb24 (diff)
downloadbuildroot-bef15922964f6a29ac065bdaa36f11d737d21120.tar.gz
buildroot-bef15922964f6a29ac065bdaa36f11d737d21120.zip
zmqpp: bmp to version 4.1.2
Drop 0001-add-cstdlib-header-to-ensure-EXIT_FAILURE-presence.patch since it's already upstream. Rebase shared/static build patches - these look unnecessary if we switch to cmake-package, however it seems to require the zmq package switches to cmake-package as well since static library naming looks different, which might be a problem for users. Also set the minimum required version of gcc to 4.7.x since the code now requires c++1x. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/zmqpp/0003-Install-static-library-for-static-builds.patch')
-rw-r--r--package/zmqpp/0003-Install-static-library-for-static-builds.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/package/zmqpp/0003-Install-static-library-for-static-builds.patch b/package/zmqpp/0003-Install-static-library-for-static-builds.patch
deleted file mode 100644
index c4ce2d219f..0000000000
--- a/package/zmqpp/0003-Install-static-library-for-static-builds.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 1637443262cc861a161fd7c734bc0610a340335b Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?J=C3=B6rg=20Krause?= <joerg.krause@embedded.rocks>
-Date: Mon, 23 Nov 2015 22:53:09 +0100
-Subject: [PATCH] Install static library for static builds
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
----
- Makefile | 3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/Makefile b/Makefile
-index 90c7059..abed6fa 100644
---- a/Makefile
-+++ b/Makefile
-@@ -142,6 +142,9 @@ ifeq ($(BUILD_SHARED),yes)
- ln -sf $(LIBRARY_SHARED).$(APP_VERSION) $(LIBDIR)/$(LIBRARY_SHARED).$(VERSION_MAJOR)
- ln -sf $(LIBRARY_SHARED).$(APP_VERSION) $(LIBDIR)/$(LIBRARY_SHARED)
- endif
-+ifeq ($(BUILD_STATIC),yes)
-+ install -m 755 $(BUILD_PATH)/$(LIBRARY_ARCHIVE) $(LIBDIR)/$(LIBRARY_ARCHIVE)
-+endif
- if [ -f $(BUILD_PATH)/$(CLIENT_TARGET) ]; then install -m 755 $(BUILD_PATH)/$(CLIENT_TARGET) $(BINDIR); fi
- $(LDCONFIG)
- @echo "use make installcheck to test the install"
---
-2.6.2
-
OpenPOWER on IntegriCloud