summaryrefslogtreecommitdiff
path: root/cpp/README-dev
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2006-12-12 16:05:01 +0000
committerAlan Conway <aconway@apache.org>2006-12-12 16:05:01 +0000
commit7d0a7581134379324b36d78f8c49dcd793d1ab1e (patch)
treea49ba6cc757891a7ff4cd5fb8e6188ea046840ce /cpp/README-dev
parentba98deefab7bfd076a8fc1ff55eed42c3cf5efbe (diff)
downloadqpid-python-7d0a7581134379324b36d78f8c49dcd793d1ab1e.tar.gz
2006-12-11 Alan Conway <aconway@redhat.com>
* SPECS/qpid-cpp.spec: Draft RPM spec file for C++. Based on initial draft provided by David Lutterkort <dlutter@redhat.com> * cpp Makefiles: Renamed libraries with qpid prefix: libqpidclient etc. * cpp/man/: moved to docs/man/ * docs/api/usr.doxygen: more restricted, user-oriented doc settings. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@486207 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/README-dev')
-rw-r--r--cpp/README-dev8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/README-dev b/cpp/README-dev
index b0324ad32d..eca566919b 100644
--- a/cpp/README-dev
+++ b/cpp/README-dev
@@ -15,7 +15,6 @@ that you have the latest stable version.
* libtool <http://www.gnu.org/software/libtool/>
* pkgconfig <http://pkgconfig.freedesktop.org/wiki/> (aka pkg-config)
-
Optional: to re-generated generated code from the XML specification:
* java 5
@@ -28,7 +27,7 @@ Optional: to generate documentation you need:
If you use yum to install packages, do the command from the README-dist then:
-# yum install apr-devel cppunit-devel pkgconfig boost-devel doxygen graphviz
+# yum install apr-devel cppunit-devel pkgconfig boost-devel doxygen graphviz help2man pkgconfig
== Recent changes ==
@@ -68,6 +67,7 @@ simplified and this README will be updated accordingly.
Before building a fresh checkout do:
./bootstrap
+ ./configure
This generates config, makefiles and the like - check the script for
details. You only need to do this once, "make" will keep everything up
@@ -86,9 +86,9 @@ optimization:
make distclean
mkdir .build-dbg .build-opt
(cd .build-opt
- ../configure --enable-warnings --prefix=/tmp/x && make && make check)
+ ../configure --prefix=/tmp/x && make && make check)
(cd .build-dbg
- ../configure --enable-warnings CXXFLAGS=-g --prefix=/tmp/x \
+ ../configure CXXFLAGS=-g --prefix=/tmp/x \
&& make && make check)
=== Portability ===