~ubuntu-branches/ubuntu/lucid/quilt/lucid-201002122335

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Steve Langasek
  • Date: 2009-12-09 07:44:39 UTC
  • mfrom: (7.1.1 squeeze)
  • Revision ID: steve.langasek@canonical.com-20091209074439-rqexn5rscstxbqx3
mergeĀ 0.48-1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
dnl Process this file with autoconf to produce a configure script.
2
 
AC_INIT([quilt],[0.46],[quilt-dev@nongnu.org])
 
2
AC_INIT([quilt],[0.48],[quilt-dev@nongnu.org])
3
3
AC_CONFIG_AUX_DIR(config)
4
4
AC_PREREQ(2.53)
5
 
AC_REVISION ($Revision: 1.82 $)
 
5
AC_REVISION ($Revision: 1.84 $)
6
6
 
7
7
PACKAGE_RELEASE=1
8
8
AC_SUBST(PACKAGE_RELEASE)
188
188
])
189
189
fi
190
190
 
191
 
QUILT_COMPAT_PROG_PATH(POD2MAN, pod2man)
 
191
AC_ARG_WITH(pod2man, AC_HELP_STRING(
 
192
  [--with-pod2man],
 
193
  [name of the pod2man executable to use (use --without-pod2man to disable)]),
 
194
  [
 
195
    if test x"$withval" = xno; then
 
196
      POD2MAN=
 
197
    else
 
198
      POD2MAN=$withval
 
199
    fi],[
 
200
    AC_PATH_PROG(POD2MAN, pod2man)
 
201
  ]
 
202
  )
 
203
AC_SUBST(POD2MAN)
 
204
 
192
205
QUILT_COMPAT_PROG_PATH(COLUMN, column)
193
206
QUILT_COMPAT_PROG_PATH(GETOPT, getopt)
194
207