~ubuntu-branches/debian/sid/x11-apps/sid

« back to all changes in this revision

Viewing changes to xwd/configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Julien Cristau
  • Date: 2011-02-09 18:15:58 UTC
  • mfrom: (9.1.3 experimental)
  • Revision ID: james.westby@ubuntu.com-20110209181558-4wta1q27k11xrtae
Tags: 7.6+4
* debian/rules::get-tarballs: pass "--destdir ." to uscan
* xbiff 1.0.3.
* Remove Brice Goglin and David Nusinow from Uploaders.  Thanks for your
  work!
* Drop Pre-Depends on x11-common.
* Bump Standards-Version to 3.9.1.
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
dnl
22
22
dnl Process this file with autoconf to create configure.
23
23
 
24
 
AC_PREREQ([2.57])
25
 
AC_INIT(xwd, [1.0.3], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],xwd)
26
 
AM_INIT_AUTOMAKE([dist-bzip2])
 
24
# Initialize Autoconf
 
25
AC_PREREQ([2.60])
 
26
AC_INIT([xwd], [1.0.4],
 
27
        [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [xwd])
 
28
AC_CONFIG_SRCDIR([Makefile.am])
 
29
AC_CONFIG_HEADERS([config.h])
 
30
 
 
31
# Initialize Automake
 
32
AM_INIT_AUTOMAKE([foreign dist-bzip2])
27
33
AM_MAINTAINER_MODE
28
34
 
29
 
# Require xorg-macros 1.3 or later: XORG_DEFAULT_OPTIONS
 
35
# Require X.Org macros 1.8 or later for MAN_SUBSTS set by XORG_MANPAGE_SECTIONS
30
36
m4_ifndef([XORG_MACROS_VERSION],
31
 
          [m4_fatal([must install xorg-macros 1.3 or later before running autoconf/autogen])])
32
 
XORG_MACROS_VERSION(1.3)
33
 
 
34
 
AM_CONFIG_HEADER(config.h)
35
 
 
36
 
AC_PROG_CC
37
 
AC_PROG_INSTALL
38
 
 
 
37
          [m4_fatal([must install xorg-macros 1.8 or later before running autoconf/autogen])])
 
38
XORG_MACROS_VERSION(1.8)
39
39
XORG_DEFAULT_OPTIONS
40
40
 
41
41
# Checks for pkg-config packages
42
42
PKG_CHECK_MODULES(XWD, x11)
43
 
AC_SUBST(XWD_CFLAGS)
44
 
AC_SUBST(XWD_LIBS)
45
43
 
46
44
AC_OUTPUT([Makefile])