Blame configure.ac

Packit ec660a
#  Copyright 2005 Red Hat, Inc.
Packit ec660a
#
Packit ec660a
#  Permission to use, copy, modify, distribute, and sell this software and its
Packit ec660a
#  documentation for any purpose is hereby granted without fee, provided that
Packit ec660a
#  the above copyright notice appear in all copies and that both that
Packit ec660a
#  copyright notice and this permission notice appear in supporting
Packit ec660a
#  documentation, and that the name of Red Hat not be used in
Packit ec660a
#  advertising or publicity pertaining to distribution of the software without
Packit ec660a
#  specific, written prior permission.  Red Hat makes no
Packit ec660a
#  representations about the suitability of this software for any purpose.  It
Packit ec660a
#  is provided "as is" without express or implied warranty.
Packit ec660a
#
Packit ec660a
#  RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
Packit ec660a
#  INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
Packit ec660a
#  EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
Packit ec660a
#  CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
Packit ec660a
#  DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
Packit ec660a
#  TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
Packit ec660a
#  PERFORMANCE OF THIS SOFTWARE.
Packit ec660a
#
Packit ec660a
Packit ec660a
# Initialize Autoconf
Packit ec660a
AC_PREREQ([2.60])
Packit ec660a
AC_INIT([libdmx], [1.1.4],
Packit ec660a
        [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [libdmx])
Packit ec660a
AC_CONFIG_SRCDIR([Makefile.am])
Packit ec660a
AC_CONFIG_HEADERS([config.h])
Packit ec660a
Packit ec660a
# Initialize Automake
Packit ec660a
AM_INIT_AUTOMAKE([foreign dist-bzip2])
Packit ec660a
Packit ec660a
# Initialize libtool
Packit ec660a
AC_PROG_LIBTOOL
Packit ec660a
Packit ec660a
# Require X.Org macros 1.8 or later for MAN_SUBSTS set by XORG_MANPAGE_SECTIONS
Packit ec660a
m4_ifndef([XORG_MACROS_VERSION],
Packit ec660a
          [m4_fatal([must install xorg-macros 1.8 or later before running autoconf/autogen])])
Packit ec660a
XORG_MACROS_VERSION(1.8)
Packit ec660a
XORG_DEFAULT_OPTIONS
Packit ec660a
XORG_CHECK_MALLOC_ZERO
Packit ec660a
Packit ec660a
# Obtain compiler/linker options for depedencies
Packit ec660a
PKG_CHECK_MODULES(DMX, [x11 >= 1.6] xext xextproto [dmxproto >= 2.2.99.1])
Packit ec660a
Packit ec660a
AC_CONFIG_FILES([Makefile
Packit ec660a
		src/Makefile
Packit ec660a
		man/Makefile
Packit ec660a
		dmx.pc])
Packit ec660a
AC_OUTPUT