configure.ac 760 B

1234567891011121314151617181920212223242526
  1. # -*- Autoconf -*-
  2. # Process this file with autoconf to produce a configure script.
  3. # Initialize Autoconf
  4. AC_PREREQ(2.60)
  5. AC_INIT([xcompmgr], [1.1.7],
  6. [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg])
  7. AC_CONFIG_SRCDIR([xcompmgr.c])
  8. AC_CONFIG_HEADERS([config.h])
  9. # Initialize Automake
  10. AM_INIT_AUTOMAKE([foreign dist-bzip2])
  11. # Require X.Org macros 1.8 or later for MAN_SUBSTS set by XORG_MANPAGE_SECTIONS
  12. m4_ifndef([XORG_MACROS_VERSION],
  13. [m4_fatal([must install xorg-macros 1.8 or later before running autoconf/autogen])])
  14. XORG_MACROS_VERSION(1.8)
  15. XORG_DEFAULT_OPTIONS
  16. PKG_CHECK_MODULES(XCOMPMGR, xcomposite xfixes xdamage xrender xext)
  17. AC_CONFIG_FILES([
  18. Makefile
  19. man/Makefile])
  20. AC_OUTPUT