1dnl Process this file with autoconf to create configure.
2
3# Initialize Autoconf
4AC_PREREQ([2.60])
5AC_INIT([xbitmaps], [1.1.3],
6        [https://gitlab.freedesktop.org/xorg/data/bitmaps/-/issues], [xbitmaps])
7AC_CONFIG_SRCDIR([Makefile.am])
8AC_CONFIG_HEADERS([config.h])
9
10# Initialize Automake
11AM_INIT_AUTOMAKE([foreign dist-xz])
12
13# Require xorg-macros 1.20 or later: XORG_DEFAULT_NOCODE_OPTIONS
14m4_ifndef([XORG_MACROS_VERSION],
15	  [m4_fatal([must install xorg-macros 1.20 or later before running autoconf/autogen])])
16XORG_MACROS_VERSION(1.20)
17XORG_DEFAULT_NOCODE_OPTIONS
18
19AC_CONFIG_FILES([Makefile
20		xbitmaps.pc
21])
22AC_OUTPUT
23