diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-10-24 14:14:09 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-10-24 14:14:09 +0000 |
commit | 2d8fe321f4636ebbb1e84d5223a2af8dd95840f8 (patch) | |
tree | c85f536227f637c49d8e42283783ca9b0fe425d9 /app/xhost/configure.ac | |
parent | d3301f2797d40a147990af350504013c86fed14d (diff) |
Update to xhost 1.0.3
Diffstat (limited to 'app/xhost/configure.ac')
-rw-r--r-- | app/xhost/configure.ac | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/app/xhost/configure.ac b/app/xhost/configure.ac index 231fcf7fc..bfc697ce8 100644 --- a/app/xhost/configure.ac +++ b/app/xhost/configure.ac @@ -1,10 +1,15 @@ -# $XdotOrg: app/xhost/configure.ac,v 1.11 2006/04/15 00:10:10 ajax Exp $ +# $XdotOrg: app/xhost/configure.ac,v 1.10 2005/12/15 00:24:07 kem Exp $ AC_PREREQ([2.57]) -AC_INIT(xhost,[1.0.1], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],xhost) +AC_INIT(xhost,[1.0.3], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],xhost) 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 @@ -12,6 +17,8 @@ AC_PROG_INSTALL AC_TYPE_SIGNAL +XORG_DEFAULT_OPTIONS + # Checks for pkg-config packages PKG_CHECK_MODULES(XHOST, x11 xmuu xau) AC_SUBST(XHOST_CFLAGS) @@ -23,7 +30,4 @@ XTRANS_CONNECTION_FLAGS # Secure RPC detection macro from xtrans.m4 XTRANS_SECURE_RPC_FLAGS -XORG_MANPAGE_SECTIONS -XORG_RELEASE_VERSION - AC_OUTPUT([Makefile]) |