Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
0.6
-
None
-
Patch Available
Description
While:
./configure --with-cpp
command "test" returns false because of incorrect operator "==" and as result "cpp" library do not built.
Patch:
— configure.ac.orig 2011-03-20 21:26:41.000000000 +0000
+++ configure.ac 2011-03-20 21:26:57.000000000 +0000
@@ -85,7 +85,7 @@
have_cpp=no
if test "$with_cpp" = "yes"; then
AX_BOOST_BASE([1.33.1])
- if test "x$succeeded" == "xyes" ; then
+ if test "x$succeeded" = "xyes" ; then
have_cpp="yes"
fi
Attachments
Issue Links
- is duplicated by
-
THRIFT-1161 C++ library does not get built on FreeBSD
- Closed