diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2015-05-10 10:07:51 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2015-05-10 10:07:51 +0000 |
commit | b2f03304306a8f009f7d7b23dc6eb143f3a1694c (patch) | |
tree | a3caf3a3fc3d29f34b8a25ff6bb8fb630250afd5 /app/xedit/configure.ac | |
parent | 0ba29d8c77ea5278e923b872dcdd8d00e0d2a47c (diff) |
Update to xedit 1.2.2
Diffstat (limited to 'app/xedit/configure.ac')
-rw-r--r-- | app/xedit/configure.ac | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/app/xedit/configure.ac b/app/xedit/configure.ac index 1d34a7087..5ae9c3032 100644 --- a/app/xedit/configure.ac +++ b/app/xedit/configure.ac @@ -22,10 +22,9 @@ dnl dnl Process this file with autoconf to create configure. AC_PREREQ([2.60]) -AC_INIT([xedit], [1.2.1], +AC_INIT([xedit], [1.2.2], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [xedit]) -AM_INIT_AUTOMAKE([foreign dist-bzip2]) -AM_MAINTAINER_MODE +AM_INIT_AUTOMAKE([foreign dist-bzip2 subdir-objects]) # Require X.Org macros 1.8 or later for MAN_SUBSTS set by XORG_MANPAGE_SECTIONS m4_ifndef([XORG_MACROS_VERSION], @@ -35,7 +34,7 @@ XORG_DEFAULT_OPTIONS AC_CONFIG_HEADERS([config.h]) -AM_PROG_CC_C_O +m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) AC_PROG_RANLIB PKG_PROG_PKG_CONFIG @@ -48,6 +47,9 @@ AC_ARG_WITH(lispdir, AS_HELP_STRING([--with-lispdir=PATH], LISPDIR=$lispdir AC_SUBST(LISPDIR) +AC_CHECK_DECLS([_SC_PAGESIZE]) +AC_CHECK_FUNCS([getpagesize]) + AC_CHECK_FUNC(realpath, [], [have_realpath=yes]) AM_CONDITIONAL(NEED_REALPATH, test x$have_realpath = xyes) AC_CHECK_FUNC(strcasecmp, [], [have_strcasecmp=yes]) |