Пытаюсь собрать librevenge, однако при конфигурировании возникает ошибка:
checking for boost/archive/iterators/base64_from_binary.hpp... yes
checking for boost/archive/iterators/binary_from_base64.hpp... yes
checking for boost/archive/iterators/remove_whitespace.hpp... yes
checking for boost/archive/iterators/transform_width.hpp... no
configure: error: Required boost headers not found.
В configure.ac:
# ==================
# Find boost headers
# ==================
AC_CHECK_HEADERS(
boost/archive/iterators/base64_from_binary.hpp \
boost/archive/iterators/binary_from_base64.hpp \
boost/archive/iterators/remove_whitespace.hpp \
boost/archive/iterators/transform_width.hpp \
boost/range/iterator_range.hpp \
boost/scoped_ptr.hpp \
boost/shared_ptr.hpp \
boost/spirit/include/classic.hpp,
[],
[AC_MSG_ERROR([Required boost headers not found.])],
[]
)
При этом сам файл существует:
static@static-mbp:/usr/local/Cellar/boost/1.55.0_1/include/boost/archive/iterators$ ls -l
total 160
-rw-r--r-- 1 static admin 1,9K 18 мар 16:11 base64_exception.hpp
-rw-r--r-- 1 static admin 3,3K 18 мар 16:11 base64_from_binary.hpp
-rw-r--r-- 1 static admin 3,9K 18 мар 16:11 binary_from_base64.hpp
-rw-r--r-- 1 static admin 2,8K 18 мар 16:11 dataflow.hpp
-rw-r--r-- 1 static admin 2,2K 18 мар 16:11 dataflow_exception.hpp
-rw-r--r-- 1 static admin 3,1K 18 мар 16:11 escape.hpp
-rw-r--r-- 1 static admin 2,1K 18 мар 16:11 head_iterator.hpp
-rw-r--r-- 1 static admin 2,8K 18 мар 16:11 insert_linebreaks.hpp
-rw-r--r-- 1 static admin 2,8K 18 мар 16:11 istream_iterator.hpp
-rw-r--r-- 1 static admin 3,7K 18 мар 16:11 mb_from_wchar.hpp
-rw-r--r-- 1 static admin 2,4K 18 мар 16:11 ostream_iterator.hpp
-rw-r--r-- 1 static admin 4,8K 18 мар 16:11 remove_whitespace.hpp
-rw-r--r-- 1 static admin 5,3K 18 мар 16:11 transform_width.hpp
-rw-r--r-- 1 static admin 2,5K 18 мар 16:11 unescape.hpp
-rw-r--r-- 1 static admin 3,4K 18 мар 16:11 wchar_from_mb.hpp
-rw-r--r-- 1 static admin 3,0K 18 мар 16:11 xml_escape.hpp
-rw-r--r-- 1 static admin 3,7K 18 мар 16:11 xml_unescape.hpp
-rw-r--r-- 1 static admin 1,3K 18 мар 16:11 xml_unescape_exception.hpp
Есть какие-нибудь идеи, почему так происходит?