2013-09-22 07:07:30 -06:00
|
|
|
dnl
|
|
|
|
dnl Process this file with autoconf to create configure.
|
|
|
|
|
|
|
|
# Initialize Autoconf
|
2010-09-04 03:39:52 -06:00
|
|
|
AC_PREREQ([2.60])
|
2013-09-22 07:07:30 -06:00
|
|
|
AC_INIT([VideoProto], [2.3.2],
|
|
|
|
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg])
|
|
|
|
AC_CONFIG_SRCDIR([Makefile.am])
|
|
|
|
|
|
|
|
# Initialize Automake
|
2006-11-25 08:43:19 -07:00
|
|
|
AM_INIT_AUTOMAKE([foreign dist-bzip2])
|
|
|
|
|
2010-09-04 03:39:52 -06:00
|
|
|
# Require xorg-macros: XORG_DEFAULT_OPTIONS
|
|
|
|
m4_ifndef([XORG_MACROS_VERSION],
|
|
|
|
[m4_fatal([must install xorg-macros 1.3 or later before running autoconf/autogen])])
|
|
|
|
XORG_MACROS_VERSION(1.3)
|
|
|
|
XORG_DEFAULT_OPTIONS
|
2006-11-25 08:43:19 -07:00
|
|
|
|
|
|
|
AC_OUTPUT([Makefile
|
|
|
|
videoproto.pc])
|