~ubuntu-branches/ubuntu/trusty/mod-mono/trusty

« back to all changes in this revision

Viewing changes to aclocal.m4

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2010-09-13 09:57:05 UTC
  • mfrom: (2.1.22 maverick)
  • Revision ID: james.westby@ubuntu.com-20100913095705-gje0z6f8n80wknf6
Tags: 2.6.3-3
Upload to Debian Unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7965
7965
m4_ifndef([AC_LIBTOOL_CONFIG],          [AC_DEFUN([AC_LIBTOOL_CONFIG])])
7966
7966
m4_ifndef([_LT_AC_FILE_LTDLL_C],        [AC_DEFUN([_LT_AC_FILE_LTDLL_C])])
7967
7967
 
7968
 
# pkg.m4 - Macros to locate and utilise pkg-config.            -*- Autoconf -*-
7969
 
7970
 
# Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
7971
 
#
7972
 
# This program is free software; you can redistribute it and/or modify
7973
 
# it under the terms of the GNU General Public License as published by
7974
 
# the Free Software Foundation; either version 2 of the License, or
7975
 
# (at your option) any later version.
7976
 
#
7977
 
# This program is distributed in the hope that it will be useful, but
7978
 
# WITHOUT ANY WARRANTY; without even the implied warranty of
7979
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
7980
 
# General Public License for more details.
7981
 
#
7982
 
# You should have received a copy of the GNU General Public License
7983
 
# along with this program; if not, write to the Free Software
7984
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
7985
 
#
7986
 
# As a special exception to the GNU General Public License, if you
7987
 
# distribute this file as part of a program that contains a
7988
 
# configuration script generated by Autoconf, you may include it under
7989
 
# the same distribution terms that you use for the rest of that program.
7990
 
 
7991
 
# PKG_PROG_PKG_CONFIG([MIN-VERSION])
7992
 
# ----------------------------------
7993
 
AC_DEFUN([PKG_PROG_PKG_CONFIG],
7994
 
[m4_pattern_forbid([^_?PKG_[A-Z_]+$])
7995
 
m4_pattern_allow([^PKG_CONFIG(_PATH)?$])
7996
 
AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl
7997
 
if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
7998
 
        AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
7999
 
fi
8000
 
if test -n "$PKG_CONFIG"; then
8001
 
        _pkg_min_version=m4_default([$1], [0.9.0])
8002
 
        AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
8003
 
        if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
8004
 
                AC_MSG_RESULT([yes])
8005
 
        else
8006
 
                AC_MSG_RESULT([no])
8007
 
                PKG_CONFIG=""
8008
 
        fi
8009
 
                
8010
 
fi[]dnl
8011
 
])# PKG_PROG_PKG_CONFIG
8012
 
 
8013
 
# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
8014
 
#
8015
 
# Check to see whether a particular set of modules exists.  Similar
8016
 
# to PKG_CHECK_MODULES(), but does not set variables or print errors.
8017
 
#
8018
 
#
8019
 
# Similar to PKG_CHECK_MODULES, make sure that the first instance of
8020
 
# this or PKG_CHECK_MODULES is called, or make sure to call
8021
 
# PKG_CHECK_EXISTS manually
8022
 
# --------------------------------------------------------------
8023
 
AC_DEFUN([PKG_CHECK_EXISTS],
8024
 
[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
8025
 
if test -n "$PKG_CONFIG" && \
8026
 
    AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
8027
 
  m4_ifval([$2], [$2], [:])
8028
 
m4_ifvaln([$3], [else
8029
 
  $3])dnl
8030
 
fi])
8031
 
 
8032
 
 
8033
 
# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
8034
 
# ---------------------------------------------
8035
 
m4_define([_PKG_CONFIG],
8036
 
[if test -n "$$1"; then
8037
 
    pkg_cv_[]$1="$$1"
8038
 
 elif test -n "$PKG_CONFIG"; then
8039
 
    PKG_CHECK_EXISTS([$3],
8040
 
                     [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
8041
 
                     [pkg_failed=yes])
8042
 
 else
8043
 
    pkg_failed=untried
8044
 
fi[]dnl
8045
 
])# _PKG_CONFIG
8046
 
 
8047
 
# _PKG_SHORT_ERRORS_SUPPORTED
8048
 
# -----------------------------
8049
 
AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
8050
 
[AC_REQUIRE([PKG_PROG_PKG_CONFIG])
8051
 
if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
8052
 
        _pkg_short_errors_supported=yes
8053
 
else
8054
 
        _pkg_short_errors_supported=no
8055
 
fi[]dnl
8056
 
])# _PKG_SHORT_ERRORS_SUPPORTED
8057
 
 
8058
 
 
8059
 
# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
8060
 
# [ACTION-IF-NOT-FOUND])
8061
 
#
8062
 
#
8063
 
# Note that if there is a possibility the first call to
8064
 
# PKG_CHECK_MODULES might not happen, you should be sure to include an
8065
 
# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
8066
 
#
8067
 
#
8068
 
# --------------------------------------------------------------
8069
 
AC_DEFUN([PKG_CHECK_MODULES],
8070
 
[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
8071
 
AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
8072
 
AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
8073
 
 
8074
 
pkg_failed=no
8075
 
AC_MSG_CHECKING([for $1])
8076
 
 
8077
 
_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
8078
 
_PKG_CONFIG([$1][_LIBS], [libs], [$2])
8079
 
 
8080
 
m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
8081
 
and $1[]_LIBS to avoid the need to call pkg-config.
8082
 
See the pkg-config man page for more details.])
8083
 
 
8084
 
if test $pkg_failed = yes; then
8085
 
        _PKG_SHORT_ERRORS_SUPPORTED
8086
 
        if test $_pkg_short_errors_supported = yes; then
8087
 
                $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1`
8088
 
        else 
8089
 
                $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1`
8090
 
        fi
8091
 
        # Put the nasty error message in config.log where it belongs
8092
 
        echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
8093
 
 
8094
 
        ifelse([$4], , [AC_MSG_ERROR(dnl
8095
 
[Package requirements ($2) were not met:
8096
 
 
8097
 
$$1_PKG_ERRORS
8098
 
 
8099
 
Consider adjusting the PKG_CONFIG_PATH environment variable if you
8100
 
installed software in a non-standard prefix.
8101
 
 
8102
 
_PKG_TEXT
8103
 
])],
8104
 
                [AC_MSG_RESULT([no])
8105
 
                $4])
8106
 
elif test $pkg_failed = untried; then
8107
 
        ifelse([$4], , [AC_MSG_FAILURE(dnl
8108
 
[The pkg-config script could not be found or is too old.  Make sure it
8109
 
is in your PATH or set the PKG_CONFIG environment variable to the full
8110
 
path to pkg-config.
8111
 
 
8112
 
_PKG_TEXT
8113
 
 
8114
 
To get pkg-config, see <http://pkg-config.freedesktop.org/>.])],
8115
 
                [$4])
8116
 
else
8117
 
        $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
8118
 
        $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
8119
 
        AC_MSG_RESULT([yes])
8120
 
        ifelse([$3], , :, [$3])
8121
 
fi[]dnl
8122
 
])# PKG_CHECK_MODULES
8123
 
 
8124
7968
# Copyright (C) 2002, 2003, 2005, 2006, 2007  Free Software Foundation, Inc.
8125
7969
#
8126
7970
# This file is free software; the Free Software Foundation