~ubuntu-branches/ubuntu/wily/exif/wily

« back to all changes in this revision

Viewing changes to aclocal.m4

  • Committer: Bazaar Package Importer
  • Author(s): Emmanuel Bouthenot
  • Date: 2011-04-27 18:49:37 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20110427184937-w06h1y3xdcdziz3w
Tags: 0.6.20-1
* New upstream release (Closes: #552102)
* debian/copyright:
  - updates (huge backlog) (Closes: #613485)
  - switch to DEP5 format
* Update uploader email (me)
* Refresh patches and convert them to DEP3 format
* Bump Standards-Version to 3.9.2
* Remove DMUA field (no more needed)
* Bump the B-D on libexif-dev to >= 0.6.20 since this version is now
  required.
* Remove B-D on chrpath (no more needed)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# generated automatically by aclocal 1.11 -*- Autoconf -*-
 
1
# generated automatically by aclocal 1.11.1 -*- Autoconf -*-
2
2
 
3
3
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4
4
# 2005, 2006, 2007, 2008, 2009  Free Software Foundation, Inc.
13
13
 
14
14
m4_ifndef([AC_AUTOCONF_VERSION],
15
15
  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
16
 
m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.64],,
17
 
[m4_warning([this file was generated for autoconf 2.64.
 
16
m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.65],,
 
17
[m4_warning([this file was generated for autoconf 2.65.
18
18
You have another version of autoconf.  It may work, but is not guaranteed to.
19
19
If you have problems, you may need to regenerate the build system entirely.
20
20
To do so, use the procedure documented by the package, typically `autoreconf'.])])
87
87
# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
88
88
# ---------------------------------------------
89
89
m4_define([_PKG_CONFIG],
90
 
[if test -n "$$1"; then
91
 
    pkg_cv_[]$1="$$1"
92
 
 elif test -n "$PKG_CONFIG"; then
93
 
    PKG_CHECK_EXISTS([$3],
94
 
                     [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
95
 
                     [pkg_failed=yes])
96
 
 else
97
 
    pkg_failed=untried
 
90
[if test -n "$PKG_CONFIG"; then
 
91
    if test -n "$$1"; then
 
92
        pkg_cv_[]$1="$$1"
 
93
    else
 
94
        PKG_CHECK_EXISTS([$3],
 
95
                         [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
 
96
                         [pkg_failed=yes])
 
97
    fi
 
98
else
 
99
        pkg_failed=untried
98
100
fi[]dnl
99
101
])# _PKG_CONFIG
100
102
 
138
140
if test $pkg_failed = yes; then
139
141
        _PKG_SHORT_ERRORS_SUPPORTED
140
142
        if test $_pkg_short_errors_supported = yes; then
141
 
                $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1`
 
143
                $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$2"`
142
144
        else 
143
 
                $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1`
 
145
                $1[]_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"`
144
146
        fi
145
147
        # Put the nasty error message in config.log where it belongs
146
148
        echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
190
192
[am__api_version='1.11'
191
193
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
192
194
dnl require some minimum version.  Point them to the right macro.
193
 
m4_if([$1], [1.11], [],
 
195
m4_if([$1], [1.11.1], [],
194
196
      [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
195
197
])
196
198
 
206
208
# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
207
209
# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
208
210
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
209
 
[AM_AUTOMAKE_VERSION([1.11])dnl
 
211
[AM_AUTOMAKE_VERSION([1.11.1])dnl
210
212
m4_ifndef([AC_AUTOCONF_VERSION],
211
213
  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
212
214
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
997
999
fi
998
1000
AC_MSG_RESULT(yes)])
999
1001
 
 
1002
# Copyright (C) 2009  Free Software Foundation, Inc.
 
1003
#
 
1004
# This file is free software; the Free Software Foundation
 
1005
# gives unlimited permission to copy and/or distribute it,
 
1006
# with or without modifications, as long as this notice is preserved.
 
1007
 
 
1008
# serial 1
 
1009
 
 
1010
# AM_SILENT_RULES([DEFAULT])
 
1011
# --------------------------
 
1012
# Enable less verbose build rules; with the default set to DEFAULT
 
1013
# (`yes' being less verbose, `no' or empty being verbose).
 
1014
AC_DEFUN([AM_SILENT_RULES],
 
1015
[AC_ARG_ENABLE([silent-rules],
 
1016
[  --enable-silent-rules          less verbose build output (undo: `make V=1')
 
1017
  --disable-silent-rules         verbose build output (undo: `make V=0')])
 
1018
case $enable_silent_rules in
 
1019
yes) AM_DEFAULT_VERBOSITY=0;;
 
1020
no)  AM_DEFAULT_VERBOSITY=1;;
 
1021
*)   AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
 
1022
esac
 
1023
AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
 
1024
AM_BACKSLASH='\'
 
1025
AC_SUBST([AM_BACKSLASH])dnl
 
1026
_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
 
1027
])
 
1028
 
1000
1029
# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
1001
1030
#
1002
1031
# This file is free software; the Free Software Foundation