31 lines
651 B
Plaintext
31 lines
651 B
Plaintext
dnl $Id: configure.ac,v 1.1.1.1 2006/11/25 17:04:33 matthieu Exp $
|
|
dnl
|
|
dnl Process this file with autoconf to create configure.
|
|
|
|
AC_PREREQ([2.57])
|
|
|
|
AC_INIT(libXevie, 1.0.2, [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], libXevie)
|
|
AM_INIT_AUTOMAKE([dist-bzip2])
|
|
AM_MAINTAINER_MODE
|
|
|
|
AM_CONFIG_HEADER(config.h)
|
|
|
|
# Check for progs
|
|
AC_PROG_CC
|
|
AC_PROG_LIBTOOL
|
|
|
|
# Checks for pkg-config packages
|
|
PKG_CHECK_MODULES(XEVIE, xproto x11 xextproto xext evieproto)
|
|
AC_SUBST(XEVIE_CFLAGS)
|
|
AC_SUBST(XEVIE_LIBS)
|
|
|
|
XORG_CHECK_MALLOC_ZERO
|
|
XORG_MANPAGE_SECTIONS
|
|
XORG_RELEASE_VERSION
|
|
|
|
AC_OUTPUT([Makefile
|
|
src/Makefile
|
|
man/Makefile
|
|
xevie.pc])
|
|
|