diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-10-23 20:31:40 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-10-23 20:31:40 +0000 |
commit | c808db69d2e2644497e9a50525971c456e3a0eb5 (patch) | |
tree | c3114c675cdaaba6414d289f0ecf33c099077d5d /app/smproxy/configure.ac | |
parent | 44c2166e6d710384fd59b04c8189dd853b549fd9 (diff) |
really update to smproxy 1.0.3.
(previous commit was done without updating anything)
Diffstat (limited to 'app/smproxy/configure.ac')
-rw-r--r-- | app/smproxy/configure.ac | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/app/smproxy/configure.ac b/app/smproxy/configure.ac index ff5644265..29cde7463 100644 --- a/app/smproxy/configure.ac +++ b/app/smproxy/configure.ac @@ -21,24 +21,28 @@ dnl dnl Process this file with autoconf to create configure. AC_PREREQ([2.57]) -AC_INIT(smproxy,[1.0.2], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],smproxy) +AC_INIT(smproxy, [1.0.3], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],smproxy) 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 AC_PROG_INSTALL +XORG_DEFAULT_OPTIONS + AC_CHECK_FUNC([mkstemp], - AC_DEFINE(HAS_MKSTEMP,1,[Define to 1 if you have the `mkstemp' function.])) + AC_DEFINE(HAS_MKSTEMP,1,[Define to 1 if you have the "mkstemp" function.])) # Checks for pkg-config packages PKG_CHECK_MODULES(SMPROXY, xt xmu) AC_SUBST(SMPROXY_CFLAGS) AC_SUBST(SMPROXY_LIBS) -XORG_MANPAGE_SECTIONS -XORG_RELEASE_VERSION - AC_OUTPUT([Makefile]) |