diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2010-03-27 11:52:43 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2010-03-27 11:52:43 +0000 |
commit | 62ea0a4ee68cb307201badc572889bbe0b2846f6 (patch) | |
tree | 04673a50b9b6c26cac904a20e2a37289fa54ffa2 /app/listres/configure.ac | |
parent | db8e4c18812bf7123eb632a745f6a4cf78c04528 (diff) |
Update to listres 1.0.2
Diffstat (limited to 'app/listres/configure.ac')
-rw-r--r-- | app/listres/configure.ac | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/app/listres/configure.ac b/app/listres/configure.ac index 0b6517e28..3e1d27b3c 100644 --- a/app/listres/configure.ac +++ b/app/listres/configure.ac @@ -22,25 +22,25 @@ dnl dnl Process this file with autoconf to create configure. AC_PREREQ([2.57]) -AC_INIT(listres,[1.0.1], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],listres) -AM_INIT_AUTOMAKE([dist-bzip2]) +AC_INIT(listres, [1.0.2], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],listres) +AM_INIT_AUTOMAKE([foreign dist-bzip2]) AM_MAINTAINER_MODE +# Require xorg-macros: 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) +XORG_DEFAULT_OPTIONS + AM_CONFIG_HEADER(config.h) AC_PROG_CC AC_PROG_INSTALL -XAW_CHECK_XPRINT_SUPPORT(XAW) # Checks for pkg-config packages -PKG_CHECK_MODULES(LISTRES, x11 xt xmu) -LISTRES_CFLAGS="$DEP_CFLAGS $XAW_CFLAGS" -LISTRES_LIBS="$DEP_LIBS $XAW_LIBS" +PKG_CHECK_MODULES(LISTRES, xaw7 x11 xt xmu) AC_SUBST(LISTRES_CFLAGS) AC_SUBST(LISTRES_LIBS) -XORG_MANPAGE_SECTIONS -XORG_RELEASE_VERSION - AC_OUTPUT([Makefile]) |