Skip to content

Commit

Permalink
configure.ac: check for xt
Browse files Browse the repository at this point in the history
Don't assume that libxt is installed as part of libx11.  On some
systems, libxt is a separate dependency.

Fixes #191
  • Loading branch information
ThomasAdam committed Aug 29, 2020
1 parent 0a97ed8 commit c1a10ec
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,12 @@ AC_SUBST(DOC_SECTIONS)
AC_SUBST(DOC_SECTIONS_XML)
AC_SUBST(DOC_SECTIONS_XML_PATH)

PKG_CHECK_MODULES([xt],[xt],
[],
[
AC_MSG_ERROR([*** libxt not found. ***])
])

problem_mandoc=""
AC_CHECK_PROG(XSLTPROC, xsltproc, xsltproc, "")

Expand Down

0 comments on commit c1a10ec

Please sign in to comment.