sync code with last improvements from OpenBSD
This commit is contained in:
commit
88965415ff
26235 changed files with 29195616 additions and 0 deletions
58
lib/libXi/configure.ac
Normal file
58
lib/libXi/configure.ac
Normal file
|
@ -0,0 +1,58 @@
|
|||
|
||||
# Initialize Autoconf
|
||||
AC_PREREQ([2.60])
|
||||
AC_INIT([libXi], [1.8.1],
|
||||
[https://gitlab.freedesktop.org/xorg/lib/libXi/issues], [libXi])
|
||||
AC_CONFIG_SRCDIR([Makefile.am])
|
||||
AC_CONFIG_HEADERS([src/config.h])
|
||||
AC_CONFIG_MACRO_DIRS([m4])
|
||||
|
||||
# Initialize Automake
|
||||
AM_INIT_AUTOMAKE([foreign dist-xz])
|
||||
|
||||
# Initialize libtool
|
||||
LT_INIT
|
||||
|
||||
# Require xorg-macros minimum of 1.12 for DocBook external references
|
||||
m4_ifndef([XORG_MACROS_VERSION],
|
||||
[m4_fatal([must install xorg-macros 1.12 or later before running autoconf/autogen])])
|
||||
XORG_MACROS_VERSION(1.12)
|
||||
XORG_DEFAULT_OPTIONS
|
||||
XORG_ENABLE_DOCS
|
||||
XORG_ENABLE_SPECS
|
||||
XORG_WITH_XMLTO(0.0.22)
|
||||
XORG_WITH_FOP
|
||||
XORG_WITH_XSLTPROC
|
||||
XORG_CHECK_SGML_DOCTOOLS(1.8)
|
||||
XORG_WITH_ASCIIDOC(8.4.5)
|
||||
XORG_CHECK_MALLOC_ZERO
|
||||
|
||||
# Obtain compiler/linker options for dependencies
|
||||
PKG_CHECK_MODULES(XI, [xproto >= 7.0.13] [x11 >= 1.6] [xextproto >= 7.0.3] [xext >= 1.0.99.1] [inputproto >= 2.3.99.1])
|
||||
# CFLAGS only for PointerBarrier typedef
|
||||
PKG_CHECK_MODULES(XFIXES, [xfixes >= 5])
|
||||
|
||||
# Check for xmlto and asciidoc for man page conversion
|
||||
# (only needed by people building tarballs)
|
||||
if test "$have_xmlto" = yes && test "$have_asciidoc" = yes; then
|
||||
have_doctools=yes
|
||||
else
|
||||
have_doctools=no
|
||||
fi
|
||||
AM_CONDITIONAL([HAVE_DOCTOOLS], [test $have_doctools = yes])
|
||||
if test $have_doctools = no; then
|
||||
AC_MSG_WARN([xmlto or asciidoc not found - cannot create man pages without it])
|
||||
fi
|
||||
|
||||
# Determine if the source for man pages is available
|
||||
# It may already be present (tarball) or can be generated using doctools
|
||||
AM_CONDITIONAL([INSTALL_MANPAGES],
|
||||
[test -f "$srcdir/man/XAllowDeviceEvents.man" || \
|
||||
test $have_doctools = yes])
|
||||
|
||||
AC_CONFIG_FILES([Makefile
|
||||
src/Makefile
|
||||
man/Makefile
|
||||
specs/Makefile
|
||||
xi.pc])
|
||||
AC_OUTPUT
|
Loading…
Add table
Add a link
Reference in a new issue