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