Hi folks, I recently learned about QPID and am excited about the prospect of a native C++ lib that can "do JMS" and more. Very cool!
In any case, I pulled the latest from SVN and, inside "cpp", ran: ./bootstrap ./configure --prefix=/tmp/qpid_test make but the build failed since I didn't have help2man installed. Attached is a tiny patch that checks for it. I've tested the patch and it "works for me" both with and without help2man installed so perhaps you would consider it? many thanks! Ed ps - I'm using a vanilla Fedora 8 x86_64 system. -- Edward H. Hill III, PhD | [EMAIL PROTECTED] | http://eh3.com/
Index: configure.ac =================================================================== --- configure.ac (revision 613354) +++ configure.ac (working copy) @@ -24,7 +24,9 @@ AC_USE_SYSTEM_EXTENSIONS AC_LANG([C++]) -AM_MISSING_PROG([HELP2MAN], [help2man]) +# AM_MISSING_PROG([HELP2MAN], [help2man]) +AC_CHECK_PROG([HELP2MAN], [help2man], [help2man]) +test -z "$HELP2MAN" && AC_MSG_ERROR([Missing help2man installation (try "yum install help2man").]) AC_ARG_ENABLE(warnings, [ --enable-warnings turn on lots of compiler warnings (recommended)],
signature.asc
Description: PGP signature
