gst-gmyth/m4/pkg.m4
author melunko
Thu Aug 23 22:30:57 2007 +0100 (2007-08-23)
branchtrunk
changeset 825 32ec09590cf2
permissions -rw-r--r--
[svn r831] fixed bug on transcode file
melunko@709
     1
# pkg.m4 - Macros to locate and utilise pkg-config.            -*- Autoconf -*-
melunko@709
     2
# 
melunko@709
     3
# Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
melunko@709
     4
#
melunko@709
     5
# This program is free software; you can redistribute it and/or modify
melunko@709
     6
# it under the terms of the GNU General Public License as published by
melunko@709
     7
# the Free Software Foundation; either version 2 of the License, or
melunko@709
     8
# (at your option) any later version.
melunko@709
     9
#
melunko@709
    10
# This program is distributed in the hope that it will be useful, but
melunko@709
    11
# WITHOUT ANY WARRANTY; without even the implied warranty of
melunko@709
    12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
melunko@709
    13
# General Public License for more details.
melunko@709
    14
#
melunko@709
    15
# You should have received a copy of the GNU General Public License
melunko@709
    16
# along with this program; if not, write to the Free Software
melunko@709
    17
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
melunko@709
    18
#
melunko@709
    19
# As a special exception to the GNU General Public License, if you
melunko@709
    20
# distribute this file as part of a program that contains a
melunko@709
    21
# configuration script generated by Autoconf, you may include it under
melunko@709
    22
# the same distribution terms that you use for the rest of that program.
melunko@709
    23
melunko@709
    24
# PKG_PROG_PKG_CONFIG([MIN-VERSION])
melunko@709
    25
# ----------------------------------
melunko@709
    26
AC_DEFUN([PKG_PROG_PKG_CONFIG],
melunko@709
    27
[m4_pattern_forbid([^_?PKG_[A-Z_]+$])
melunko@709
    28
m4_pattern_allow([^PKG_CONFIG(_PATH)?$])
melunko@709
    29
AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl
melunko@709
    30
if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
melunko@709
    31
	AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
melunko@709
    32
fi
melunko@709
    33
if test -n "$PKG_CONFIG"; then
melunko@709
    34
	_pkg_min_version=m4_ifval([$1], [$1], [0.9.0])
melunko@709
    35
	AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
melunko@709
    36
	if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
melunko@709
    37
		AC_MSG_RESULT([yes])
melunko@709
    38
	else
melunko@709
    39
		AC_MSG_RESULT([no])
melunko@709
    40
		PKG_CONFIG=""
melunko@709
    41
	fi
melunko@709
    42
		
melunko@709
    43
fi[]dnl
melunko@709
    44
])# PKG_PROG_PKG_CONFIG
melunko@709
    45
melunko@709
    46
# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
melunko@709
    47
# ---------------------------------------------
melunko@709
    48
m4_define([_PKG_CONFIG],
melunko@709
    49
[if test "x$ac_cv_env_[]$1[]_set" = "xset"; then
melunko@709
    50
	pkg_cv_[]$1=$ac_cv_env_[]$1[]_value
melunko@709
    51
elif test -n "$PKG_CONFIG"; then
melunko@709
    52
	if AC_RUN_LOG([$PKG_CONFIG --exists "$3" >/dev/null 2>&1]); then
melunko@709
    53
		pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`
melunko@709
    54
	else
melunko@709
    55
		pkg_failed=yes
melunko@709
    56
	fi
melunko@709
    57
else
melunko@709
    58
	pkg_failed=untried
melunko@709
    59
fi[]dnl
melunko@709
    60
])# _PKG_CONFIG
melunko@709
    61
melunko@709
    62
# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
melunko@709
    63
# [ACTION-IF-NOT-FOUND])
melunko@709
    64
#
melunko@709
    65
#
melunko@709
    66
# Note that if there is a possibility the first call to
melunko@709
    67
# PKG_CHECK_MODULES might not happen, you should be sure to include an
melunko@709
    68
# explicit call to PKG_PROG_PKG_CONFIG in your configure.in
melunko@709
    69
#
melunko@709
    70
#
melunko@709
    71
# --------------------------------------------------------------
melunko@709
    72
AC_DEFUN([PKG_CHECK_MODULES],
melunko@709
    73
[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
melunko@709
    74
AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
melunko@709
    75
AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
melunko@709
    76
melunko@709
    77
pkg_failed=no
melunko@709
    78
AC_CACHE_CHECK([for $1][_CFLAGS], [pkg_cv_][$1][_CFLAGS],
melunko@709
    79
	[_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])])
melunko@709
    80
AC_CACHE_CHECK([for $1][_LIBS], [pkg_cv_][$1][_LIBS],
melunko@709
    81
	[_PKG_CONFIG([$1][_LIBS], [libs], [$2])])
melunko@709
    82
melunko@709
    83
if test $pkg_failed = yes; then
melunko@709
    84
	$1[]_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"`
melunko@709
    85
	# Put the nasty error message in config.log where it belongs
melunko@709
    86
	echo "$$1[]_PKG_ERRORS" 1>&AS_MESSAGE_LOG_FD
melunko@709
    87
melunko@709
    88
	ifelse([$4], , [AC_MSG_ERROR(dnl
melunko@709
    89
[Package requirements ($2) were not met.
melunko@709
    90
Consider adjusting the PKG_CONFIG_PATH environment variable if you
melunko@709
    91
installed software in a non-standard prefix.
melunko@709
    92
melunko@709
    93
Alternatively you may set the $1_CFLAGS and $1_LIBS environment variables
melunko@709
    94
to avoid the need to call pkg-config.  See the pkg-config man page for
melunko@709
    95
more details.])],
melunko@709
    96
		[$4])
melunko@709
    97
elif test $pkg_failed = untried; then
melunko@709
    98
	ifelse([$4], , [AC_MSG_FAILURE(dnl
melunko@709
    99
[The pkg-config script could not be found or is too old.  Make sure it
melunko@709
   100
is in your PATH or set the PKG_CONFIG environment variable to the full
melunko@709
   101
path to pkg-config.
melunko@709
   102
melunko@709
   103
Alternatively you may set the $1_CFLAGS and $1_LIBS environment variables
melunko@709
   104
to avoid the need to call pkg-config.  See the pkg-config man page for
melunko@709
   105
more details.
melunko@709
   106
melunko@709
   107
To get pkg-config, see <http://www.freedesktop.org/software/pkgconfig>.])],
melunko@709
   108
		[$4])
melunko@709
   109
else
melunko@709
   110
	$1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
melunko@709
   111
	$1[]_LIBS=$pkg_cv_[]$1[]_LIBS
melunko@709
   112
	ifelse([$3], , :, [$3])
melunko@709
   113
fi[]dnl
melunko@709
   114
])# PKG_CHECK_MODULES