## YCP module configure.in.in ## Initialize @YAST2-INIT-COMMON@ @YAST2-INIT-PROGRAM@ @YAST2-INIT-YCP@ ## some common checks @YAST2-CHECKS-COMMON@ @YAST2-CHECKS-PROGRAM@ @YAST2-CHECKS-YCP@ AC_LANG_PUSH(C++) yast_found_ldapcpplib=no AC_CHECK_HEADER(LDAPSchema.h,[yast_found_ldapcpplib=yes]) if [[ "$yast_found_ldapcpplib" = "no" ]]; then AC_MSG_ERROR(Headers for ldapcpplib are missing. Please install the package libldapcpp-devel.) fi yast_found_boost=no AC_CHECK_HEADER(boost/shared_ptr.hpp,[yast_found_boost=yes]) if [[ "$yast_found_boost" = "no" ]]; then AC_MSG_ERROR(Boost Headers are missing. Please install the package boost-devel.) fi AC_LANG_POP(C++) ## and generate the output... @YAST2-OUTPUT@