pkg.m4 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
  2. # serial 1 (pkg-config-0.24)
  3. #
  4. # Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
  5. #
  6. # This program is free software; you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation; either version 2 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful, but
  12. # WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. # General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program; if not, write to the Free Software
  18. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  19. #
  20. # As a special exception to the GNU General Public License, if you
  21. # distribute this file as part of a program that contains a
  22. # configuration script generated by Autoconf, you may include it under
  23. # the same distribution terms that you use for the rest of that program.
  24. # PKG_PROG_PKG_CONFIG([MIN-VERSION])
  25. # ----------------------------------
  26. AC_DEFUN([PKG_PROG_PKG_CONFIG],
  27. [m4_pattern_forbid([^_?PKG_[A-Z_]+$])
  28. m4_pattern_allow([^PKG_CONFIG(_PATH)?$])
  29. AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
  30. AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
  31. AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
  32. if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
  33. AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
  34. fi
  35. if test -n "$PKG_CONFIG"; then
  36. _pkg_min_version=m4_default([$1], [0.9.0])
  37. AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
  38. if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
  39. AC_MSG_RESULT([yes])
  40. else
  41. AC_MSG_RESULT([no])
  42. PKG_CONFIG=""
  43. fi
  44. fi[]dnl
  45. ])# PKG_PROG_PKG_CONFIG
  46. # PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
  47. #
  48. # Check to see whether a particular set of modules exists. Similar
  49. # to PKG_CHECK_MODULES(), but does not set variables or print errors.
  50. #
  51. # Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
  52. # only at the first occurence in configure.ac, so if the first place
  53. # it's called might be skipped (such as if it is within an "if", you
  54. # have to call PKG_CHECK_EXISTS manually
  55. # --------------------------------------------------------------
  56. AC_DEFUN([PKG_CHECK_EXISTS],
  57. [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
  58. if test -n "$PKG_CONFIG" && \
  59. AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
  60. m4_default([$2], [:])
  61. m4_ifvaln([$3], [else
  62. $3])dnl
  63. fi])
  64. # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
  65. # ---------------------------------------------
  66. m4_define([_PKG_CONFIG],
  67. [if test -n "$$1"; then
  68. pkg_cv_[]$1="$$1"
  69. elif test -n "$PKG_CONFIG"; then
  70. PKG_CHECK_EXISTS([$3],
  71. [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
  72. [pkg_failed=yes])
  73. else
  74. pkg_failed=untried
  75. fi[]dnl
  76. ])# _PKG_CONFIG
  77. # _PKG_SHORT_ERRORS_SUPPORTED
  78. # -----------------------------
  79. AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
  80. [AC_REQUIRE([PKG_PROG_PKG_CONFIG])
  81. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  82. _pkg_short_errors_supported=yes
  83. else
  84. _pkg_short_errors_supported=no
  85. fi[]dnl
  86. ])# _PKG_SHORT_ERRORS_SUPPORTED
  87. # PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
  88. # [ACTION-IF-NOT-FOUND])
  89. #
  90. #
  91. # Note that if there is a possibility the first call to
  92. # PKG_CHECK_MODULES might not happen, you should be sure to include an
  93. # explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
  94. #
  95. #
  96. # --------------------------------------------------------------
  97. AC_DEFUN([PKG_CHECK_MODULES],
  98. [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
  99. AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
  100. AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
  101. pkg_failed=no
  102. AC_MSG_CHECKING([for $1])
  103. _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
  104. _PKG_CONFIG([$1][_LIBS], [libs], [$2])
  105. m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
  106. and $1[]_LIBS to avoid the need to call pkg-config.
  107. See the pkg-config man page for more details.])
  108. if test $pkg_failed = yes; then
  109. AC_MSG_RESULT([no])
  110. _PKG_SHORT_ERRORS_SUPPORTED
  111. if test $_pkg_short_errors_supported = yes; then
  112. $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1`
  113. else
  114. $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1`
  115. fi
  116. # Put the nasty error message in config.log where it belongs
  117. echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
  118. m4_default([$4], [AC_MSG_ERROR(
  119. [Package requirements ($2) were not met:
  120. $$1_PKG_ERRORS
  121. Consider adjusting the PKG_CONFIG_PATH environment variable if you
  122. installed software in a non-standard prefix.
  123. _PKG_TEXT])
  124. ])
  125. elif test $pkg_failed = untried; then
  126. AC_MSG_RESULT([no])
  127. m4_default([$4], [AC_MSG_FAILURE(
  128. [The pkg-config script could not be found or is too old. Make sure it
  129. is in your PATH or set the PKG_CONFIG environment variable to the full
  130. path to pkg-config.
  131. _PKG_TEXT
  132. To get pkg-config, see <http://pkg-config.freedesktop.org/>.])
  133. ])
  134. else
  135. $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
  136. $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
  137. AC_MSG_RESULT([yes])
  138. $3
  139. fi[]dnl
  140. ])# PKG_CHECK_MODULES