## initialize @YAST2-INIT-COMMON@ ## some common checks @YAST2-CHECKS-COMMON@ dnl libxml2, libxslt AC_CHECK_PROG(XMLLINT, xmllint, xmllint) if test -z "$XMLLINT" ; then AC_MSG_ERROR(xmllint is missing; please install linxml2.) fi AC_CHECK_PROG(XSLTPROC, xsltproc, xsltproc) if test -z "$XSLTPROC" ; then AC_MSG_ERROR(xsltproc is missing; please install libxslt.) fi dnl gnome-doc-utils AC_CHECK_PROG(XML2PO, xml2po, xml2po) if test -z "$XML2PO" ; then AC_MSG_ERROR(xml2po is missing; please install gnome-doc-utils.) fi dnl gettext or gettext-devel AC_CHECK_PROG(MSGMERGE, msgmerge, msgmerge) if test -z "$MSGMERGE" ; then AC_MSG_ERROR(msgmerg is missing; please install gettext-devel.) fi ## and generate the output @YAST2-OUTPUT@