diff options
| author | Alan Conway <aconway@apache.org> | 2006-10-24 13:29:05 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2006-10-24 13:29:05 +0000 |
| commit | 7853774b9e2451cb4722eb63c53fc25a51c27b1a (patch) | |
| tree | cdd4edcd6f8a4bc441f11864058ca3d42e3ddb2a /qpid/cpp/Makefile | |
| parent | d6c117af7083bd2a18c8465fd80887f755896ead (diff) | |
| download | qpid-python-7853774b9e2451cb4722eb63c53fc25a51c27b1a.tar.gz | |
QPID-52: use of tr1 and unordered_map break build or RHEL4.
Replaced unordered_map with std::map.
Use boost::shared_ptr instead of std::tr1::shared_ptr. Since we're
using boost for other things now anyway it's simpler & more portable.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@467329 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/Makefile')
| -rw-r--r-- | qpid/cpp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/Makefile b/qpid/cpp/Makefile index 269fb75de5..36d0ad58ee 100644 --- a/qpid/cpp/Makefile +++ b/qpid/cpp/Makefile @@ -60,8 +60,8 @@ TRANSFORM := java -jar $(CURDIR)/tools/saxon8.jar -o results.out $(SPEC) generate: gen/timestamp gen/timestamp: $(wildcard etc/stylesheets/*.xsl) $(SPEC) mkdir -p gen/qpid/framing - echo > gen/timestamp - cd gen/qpid/framing && for s in $(STYLESHEETS) ; do $(TRANSFORM) $$s ; done + ( cd gen/qpid/framing && for s in $(STYLESHEETS) ; do $(TRANSFORM) $$s ; done ) && echo > gen/timestamp + gen $(wildcard gen/qpid/framing/*.cpp): gen/timestamp ## Libraries |
