configure.ac 613 B

123456789101112131415161718192021222324
  1. dnl Process this file with autoconf to create configure.
  2. # Initialize Autoconf
  3. AC_PREREQ([2.60])
  4. AC_INIT([xbitmaps], [1.1.1],
  5. [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [xbitmaps])
  6. AC_CONFIG_SRCDIR([Makefile.am])
  7. AC_CONFIG_HEADERS([config.h])
  8. # Initialize Automake
  9. AM_INIT_AUTOMAKE([foreign dist-bzip2])
  10. AM_MAINTAINER_MODE
  11. # Require xorg-macros 1.3 or later: XORG_DEFAULT_OPTIONS
  12. m4_ifndef([XORG_MACROS_VERSION],
  13. [m4_fatal([must install xorg-macros 1.3 or later before running autoconf/autogen])])
  14. XORG_MACROS_VERSION(1.3)
  15. XORG_DEFAULT_OPTIONS
  16. AC_OUTPUT([
  17. Makefile
  18. xbitmaps.pc
  19. ])