From d469a7c8812dca1f81c6a48dd2e965d6f8927770 Mon Sep 17 00:00:00 2001 From: Gordon Sim Date: Wed, 30 Jul 2008 18:25:14 +0000 Subject: QPID-1162: added patches and additions required to build against boost 1.32. These are not deemed desirable for direct application to the trunk, but can be used to simply update an svn checkout for compilation against that boost version. Contributed by Mick Goulish and Justin Ross. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@681164 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/cpp/boost-1.32-support/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 qpid/cpp/boost-1.32-support/Makefile (limited to 'qpid/cpp/boost-1.32-support/Makefile') diff --git a/qpid/cpp/boost-1.32-support/Makefile b/qpid/cpp/boost-1.32-support/Makefile new file mode 100644 index 0000000000..fb440e26da --- /dev/null +++ b/qpid/cpp/boost-1.32-support/Makefile @@ -0,0 +1,10 @@ +.PHONY: default apply + +default: + @echo "Run 'make apply' to patch the source" + +apply: main.patch ../src/boost + patch -d .. -p0 < main.patch + +../src/boost: boost.tar.gz + tar -C .. -xvzf boost.tar.gz -- cgit v1.2.1 From 06b42b97f7a7102eabdda7d57ef044cf4d3375ae Mon Sep 17 00:00:00 2001 From: Gordon Sim Date: Thu, 4 Sep 2008 21:16:04 +0000 Subject: Fix mods to suppressions; changed from patching to cat'ing to the end for easier management. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@692250 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/cpp/boost-1.32-support/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'qpid/cpp/boost-1.32-support/Makefile') diff --git a/qpid/cpp/boost-1.32-support/Makefile b/qpid/cpp/boost-1.32-support/Makefile index fb440e26da..f0907f7fda 100644 --- a/qpid/cpp/boost-1.32-support/Makefile +++ b/qpid/cpp/boost-1.32-support/Makefile @@ -5,6 +5,7 @@ default: apply: main.patch ../src/boost patch -d .. -p0 < main.patch + cat supressions >> ../src/tests/.valgrind.supp ../src/boost: boost.tar.gz tar -C .. -xvzf boost.tar.gz -- cgit v1.2.1 From 4978d516e39c7862934bed5eb0cdcfb528f0390e Mon Sep 17 00:00:00 2001 From: Robert Gemmell Date: Sun, 31 Oct 2010 23:39:39 +0000 Subject: add ASF licence to various files in the cpp tree git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1029521 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/cpp/boost-1.32-support/Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'qpid/cpp/boost-1.32-support/Makefile') diff --git a/qpid/cpp/boost-1.32-support/Makefile b/qpid/cpp/boost-1.32-support/Makefile index f0907f7fda..8b521a1aa3 100644 --- a/qpid/cpp/boost-1.32-support/Makefile +++ b/qpid/cpp/boost-1.32-support/Makefile @@ -1,3 +1,21 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# .PHONY: default apply default: -- cgit v1.2.1