extra_pkg.m4
上传用户:shw771010
上传日期:2022-01-05
资源大小:991k
文件大小:3k
源码类别:

Audio

开发平台:

Unix_Linux

  1. # extra_pkg.m4 - Macros to locate and utilise pkg-config.   -*- Autoconf -*-
  2. # Copyright (c) 2004 Scott James Remnant <scott@netsplit.com>.
  3. #
  4. # This program is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 2 of the License, or
  7. # (at your option) any later version.
  8. #
  9. # This program is distributed in the hope that it will be useful, but
  10. # WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12. # General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program; if not, write to the Free Software
  16. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  17. #
  18. # As a special exception to the GNU General Public License, if you
  19. # distribute this file as part of a program that contains a
  20. # configuration script generated by Autoconf, you may include it under
  21. # the same distribution terms that you use for the rest of that program.
  22. # --------------------------------------------------------------
  23. # PKG_CHECK_MOD_VERSION(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
  24. # [ACTION-IF-NOT-FOUND])
  25. #
  26. # This is a very slight modification to the macro PKG_CHECK_MODULES that
  27. # is in the original pkg.m4 file. It prints the versions in the checking
  28. # message (erikd@mega-nerd.com).
  29. AC_DEFUN([PKG_CHECK_MOD_VERSION],
  30. [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
  31. AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
  32. AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
  33. pkg_failed=no
  34. AC_MSG_CHECKING([for $2 ])
  35. _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
  36. _PKG_CONFIG([$1][_LIBS], [libs], [$2])
  37. m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
  38. and $1[]_LIBS to avoid the need to call pkg-config.
  39. See the pkg-config man page for more details.])
  40. if test $pkg_failed = yes; then
  41.         _PKG_SHORT_ERRORS_SUPPORTED
  42.         if test $_pkg_short_errors_supported = yes; then
  43.         $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$2"`
  44.         else 
  45.         $1[]_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"`
  46.         fi
  47. # Put the nasty error message in config.log where it belongs
  48. echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
  49. ifelse([$4], , [AC_MSG_ERROR(dnl
  50. [Package requirements ($2) were not met:
  51. $$1_PKG_ERRORS
  52. Consider adjusting the PKG_CONFIG_PATH environment variable if you
  53. installed software in a non-standard prefix.
  54. _PKG_TEXT
  55. ])],
  56. [AC_MSG_RESULT([no])
  57.                 $4])
  58. elif test $pkg_failed = untried; then
  59. ifelse([$4], , [AC_MSG_FAILURE(dnl
  60. [The pkg-config script could not be found or is too old.  Make sure it
  61. is in your PATH or set the PKG_CONFIG environment variable to the full
  62. path to pkg-config.
  63. _PKG_TEXT
  64. To get pkg-config, see <http://pkg-config.freedesktop.org/>.])],
  65. [$4])
  66. else
  67. $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
  68. $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
  69.         AC_MSG_RESULT([yes])
  70. ifelse([$3], , :, [$3])
  71. fi[]dnl
  72. ])# PKG_CHECK_MOD_VERSION