2019-12-24 05:14:28 -07:00
|
|
|
dnl
|
|
|
|
dnl Process this file with autoconf to create configure.
|
|
|
|
|
|
|
|
# Initialize Autoconf
|
2010-10-31 10:58:47 -06:00
|
|
|
AC_PREREQ([2.60])
|
2019-12-24 05:14:28 -07:00
|
|
|
AC_INIT([makedepend], [1.0.6],
|
|
|
|
[https://gitlab.freedesktop.org/xorg/util/makedepend/issues])
|
|
|
|
AC_CONFIG_SRCDIR([Makefile.am])
|
|
|
|
AC_CONFIG_HEADERS([makedepend-config.h])
|
|
|
|
|
|
|
|
# Initialize Automake
|
2006-11-25 09:15:45 -07:00
|
|
|
AM_INIT_AUTOMAKE([foreign dist-bzip2])
|
|
|
|
|
2010-10-31 10:58:47 -06:00
|
|
|
# Require X.Org macros 1.8 or later for MAN_SUBSTS set by XORG_MANPAGE_SECTIONS
|
2009-11-12 14:07:10 -07:00
|
|
|
m4_ifndef([XORG_MACROS_VERSION],
|
2010-10-31 10:58:47 -06:00
|
|
|
[m4_fatal([must install xorg-macros 1.8 or later before running autoconf/autogen])])
|
|
|
|
XORG_MACROS_VERSION(1.8)
|
2009-11-12 14:07:10 -07:00
|
|
|
|
2006-11-25 09:15:45 -07:00
|
|
|
dnl Checks for programs.
|
2009-11-12 14:07:10 -07:00
|
|
|
XORG_DEFAULT_OPTIONS
|
|
|
|
XORG_WITH_LINT
|
2006-11-25 09:15:45 -07:00
|
|
|
|
|
|
|
dnl Checks for functions
|
|
|
|
AC_CHECK_FUNCS([rename fchmod])
|
|
|
|
|
|
|
|
dnl Use 64-bit file operations on 32-bit systems that support them
|
|
|
|
AC_SYS_LARGEFILE
|
|
|
|
|
|
|
|
dnl Check for pkg-config packages
|
2013-09-28 09:37:13 -06:00
|
|
|
PKG_CHECK_MODULES(X, [xproto >= 7.0.17])
|
2006-11-25 09:15:45 -07:00
|
|
|
|
|
|
|
AC_OUTPUT([Makefile])
|