diff options
Diffstat (limited to 'app/xdriinfo/configure.ac')
-rw-r--r-- | app/xdriinfo/configure.ac | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/app/xdriinfo/configure.ac b/app/xdriinfo/configure.ac index 75ae289e7..4c227b1bc 100644 --- a/app/xdriinfo/configure.ac +++ b/app/xdriinfo/configure.ac @@ -21,10 +21,15 @@ dnl dnl Process this file with autoconf to create configure. AC_PREREQ([2.57]) -AC_INIT(xdriinfo, [1.0.2], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], xdriinfo) +AC_INIT(xdriinfo, [1.0.3], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], xdriinfo) AM_INIT_AUTOMAKE([dist-bzip2]) AM_MAINTAINER_MODE +# Require xorg-macros 1.3 or later: 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) + AM_CONFIG_HEADER(config.h) AC_PROG_CC @@ -32,6 +37,8 @@ AC_PROG_INSTALL AC_TYPE_SIGNAL +XORG_DEFAULT_OPTIONS + # Checks for pkg-config packages PKG_CHECK_MODULES(XDRIINFO, xext x11 glproto) @@ -46,7 +53,4 @@ AC_SEARCH_LIBS([glXGetProcAddressARB], [GL], [], AC_MSG_FAILURE([cannot find GL library - make sure Mesa or other OpenGL package is installed]), [$XDRIINFO_LIBS]) -XORG_MANPAGE_SECTIONS -XORG_RELEASE_VERSION - AC_OUTPUT([Makefile]) |