pkg.m4
上传用户:nini_0081
上传日期:2022-07-21
资源大小:2628k
文件大小:5k
源码类别:

多媒体编程

开发平台:

DOS

  1. # pkg.m4 - Macros to locate and utilise pkg-config.            -*- Autoconf -*-
  2. # Copyright © 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. # PKG_PROG_PKG_CONFIG([MIN-VERSION])
  23. # ----------------------------------
  24. AC_DEFUN([PKG_PROG_PKG_CONFIG],
  25. [m4_pattern_forbid([^_?PKG_[A-Z_]+$])
  26. m4_pattern_allow([^PKG_CONFIG(_PATH)?$])
  27. AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl
  28. if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
  29. AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
  30. fi
  31. if test -n "$PKG_CONFIG"; then
  32. _pkg_min_version=m4_default([$1], [0.9.0])
  33. AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
  34. if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
  35. AC_MSG_RESULT([yes])
  36. else
  37. AC_MSG_RESULT([no])
  38. PKG_CONFIG=""
  39. fi
  40. fi[]dnl
  41. ])# PKG_PROG_PKG_CONFIG
  42. # PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
  43. #
  44. # Check to see whether a particular set of modules exists.  Similar
  45. # to PKG_CHECK_MODULES(), but does not set variables or print errors.
  46. #
  47. #
  48. # Similar to PKG_CHECK_MODULES, make sure that the first instance of
  49. # this or PKG_CHECK_MODULES is called, or make sure to call
  50. # PKG_CHECK_EXISTS manually
  51. # --------------------------------------------------------------
  52. AC_DEFUN([PKG_CHECK_EXISTS],
  53. [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
  54. if test -n "$PKG_CONFIG" && 
  55.     AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
  56.   m4_ifval([$2], [$2], [:])
  57. m4_ifvaln([$3], [else
  58.   $3])dnl
  59. fi])
  60. # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
  61. # ---------------------------------------------
  62. m4_define([_PKG_CONFIG],
  63. [if test -n "$PKG_CONFIG"; then
  64.     if test -n "$$1"; then
  65.         pkg_cv_[]$1="$$1"
  66.     else
  67.         PKG_CHECK_EXISTS([$3],
  68.                          [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
  69.  [pkg_failed=yes])
  70.     fi
  71. else
  72. pkg_failed=untried
  73. fi[]dnl
  74. ])# _PKG_CONFIG
  75. # _PKG_SHORT_ERRORS_SUPPORTED
  76. # -----------------------------
  77. AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
  78. [AC_REQUIRE([PKG_PROG_PKG_CONFIG])
  79. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  80.         _pkg_short_errors_supported=yes
  81. else
  82.         _pkg_short_errors_supported=no
  83. fi[]dnl
  84. ])# _PKG_SHORT_ERRORS_SUPPORTED
  85. # PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
  86. # [ACTION-IF-NOT-FOUND])
  87. #
  88. #
  89. # Note that if there is a possibility the first call to
  90. # PKG_CHECK_MODULES might not happen, you should be sure to include an
  91. # explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
  92. #
  93. #
  94. # --------------------------------------------------------------
  95. AC_DEFUN([PKG_CHECK_MODULES],
  96. [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
  97. AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
  98. AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
  99. pkg_failed=no
  100. AC_MSG_CHECKING([for $1])
  101. _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
  102. _PKG_CONFIG([$1][_LIBS], [libs], [$2])
  103. m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
  104. and $1[]_LIBS to avoid the need to call pkg-config.
  105. See the pkg-config man page for more details.])
  106. if test $pkg_failed = yes; then
  107.         _PKG_SHORT_ERRORS_SUPPORTED
  108.         if test $_pkg_short_errors_supported = yes; then
  109.         $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$2"`
  110.         else 
  111.         $1[]_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"`
  112.         fi
  113. # Put the nasty error message in config.log where it belongs
  114. echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
  115. ifelse([$4], , [AC_MSG_ERROR(dnl
  116. [Package requirements ($2) were not met:
  117. $$1_PKG_ERRORS
  118. Consider adjusting the PKG_CONFIG_PATH environment variable if you
  119. installed software in a non-standard prefix.
  120. _PKG_TEXT
  121. ])],
  122. [AC_MSG_RESULT([no])
  123.                 $4])
  124. elif test $pkg_failed = untried; then
  125. ifelse([$4], , [AC_MSG_FAILURE(dnl
  126. [The pkg-config script could not be found or is too old.  Make sure it
  127. is in your PATH or set the PKG_CONFIG environment variable to the full
  128. path to pkg-config.
  129. _PKG_TEXT
  130. To get pkg-config, see <http://pkg-config.freedesktop.org/>.])],
  131. [$4])
  132. else
  133. $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
  134. $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
  135.         AC_MSG_RESULT([yes])
  136. ifelse([$3], , :, [$3])
  137. fi[]dnl
  138. ])# PKG_CHECK_MODULES