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