Я написал файл configure.ac, чтобы найти путь к boost c ++ inlclude, но он ничего не смог найти. Если я укажу путь, он может скомпилироваться. Может ли кто-нибудь помочь мне, пожалуйста?
Вот мой configure.ac
AC_PREREQ([2.67])
AC_INIT(pkg, 1.1.01)
AC_PROG_CXX
AC_ARG_WITH(
[boost],
[AS_HELP_STRING(
[--with-boost=DIR],
[path to look for Boost])
],
[boostpath=$withval],
[boostpath=]
)
if test -n "$boostpath"; then
boostinc="-I$boostpath/include"
fi
CXXFLAGS="$CXXFLAGS ${boostinc}"
AC_SUBST([CXXFLAGS])
AC_CONFIG_FILES([Makevars])
AC_OUTPUT
Большое спасибо.