C++ library does not get built on FreeBSD
-----------------------------------------
Key: THRIFT-1161
URL: https://issues.apache.org/jira/browse/THRIFT-1161
Project: Thrift
Issue Type: Bug
Components: Build Process
Affects Versions: 0.6.1, 0.6
Environment: FreeBSD 8.1
Reporter: Toomas Aas
Priority: Minor
When running ./configure, Thrift is not configured for building the C++
library, even if --with-cpp is explicitly added to the command line. This is
caused by the == operator which is used on line 19883 of configure for thrift
0.6.1
19883 if test "x$succeeded" == "xyes" ; then
19884 have_cpp="yes"
19885 fi
The problem is resolved by replacing '==' with '='
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira