Author: tabish
Date: Tue Jun 9 17:48:54 2009
New Revision: 783079
URL: http://svn.apache.org/viewvc?rev=783079&view=rev
Log:
https://issues.apache.org/activemq/browse/AMQCPP-245
Modified:
activemq/activemq-cpp/trunk/activemq-cpp/README.txt
Modified: activemq/activemq-cpp/trunk/activemq-cpp/README.txt
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/README.txt?rev=783079&r1=783078&r2=783079&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/activemq-cpp/README.txt (original)
+++ activemq/activemq-cpp/trunk/activemq-cpp/README.txt Tue Jun 9 17:48:54 2009
@@ -86,11 +86,27 @@
APR-Util 1.2.x, this implies that you will need to build and install APR from
the source download at Apache.
-On Mac you can use MacPorts to install a version of APR and APR-Util that
-works with ActiveMQ-CPP. At the time of this writing the MacPorts versions
-were APR 1.3.3 and APR-Util 1.3.4 respectively. See the MacPorts website for
-instructions on how to install the MacPorts utility and on using it to install
-the APR libraries.
+ -----------------------------------------------------------------------
+ |MacOS X Note: |
+ | If you have installed APR and APR-Util via MacPorts |
+ | (http://www.macports.org/) and you are building ActiveMQ-CPP from |
+ | source, you will need to specify the location of the APR libraries |
+ | to the configure script. This is easy to do and only requires one |
+ | extra option for compilation. An example of this is shown below |
+ | using the standard location for these libraries as intalled by |
+ | MacPorts: |
+ | |
+ | $ ./configure \ |
+ | --with-apr=/opt/local/var/macports/software/apr/1.3.3_0/opt/local/ |
+ | |
+ | Please notice that this is simply a single option to the |
+ | configure script that has been broken into two lines by escaping |
+ | the newline character to fit the formatting of this file. |
+ | |
+ | If you have manually compiled and installed the APR libraries into |
+ | a custom location, then you will need to point to that location |
+ | using the argument above. |
+ -----------------------------------------------------------------------
1.4 GNU Build System (for building on Unix/Linux/OS X)
--------------------------------------------------------------------------
|