From b7597efb48126e28dd0bbb12ef07a5e1066093fc Mon Sep 17 00:00:00 2001 From: knu Date: Tue, 11 Jun 2013 08:25:40 +0000 Subject: [PATCH] Update documentation for pkg_config(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41229 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- README.EXT.ja | 16 ++++++++++++---- lib/mkmf.rb | 18 ++++++++++++++---- 2 files changed, 26 insertions(+), 8 deletions(-) diff --git a/README.EXT.ja b/README.EXT.ja index 6f9cb41198..dfb0f5ec38 100644 --- a/README.EXT.ja +++ b/README.EXT.ja @@ -1594,11 +1594,19 @@ dir_config(target[, default_include, default_lib]) :: と等価である.追加された include ディレクトリと lib ディレ クトリの配列を返す. ([include_dir, lib_dir]) -pkg_config(pkg) :: +pkg_config(pkg, option=nil) :: - pkg-configコマンドからパッケージpkgの情報を得る. - pkg-configの実際のコマンド名は,--with-pkg-configコマンド - ラインオプションで指定可能. + pkg-configコマンドからパッケージpkgの情報を [cflags, ldflags, libs] + の配列として得る. + pkg-configの実際のコマンドは,以下の順で試される. + + 1. コマンドラインで--with-{pkg}-config={command}オプションが + 指定された場合: {command} {option} + 2. {pkg}-config {option} + 3. pkg-config {option} {pkg} + + optionが指定された場合は、上記の配列の代わりにそのオプションを + 指定して得られた出力をstripしたものを返す. /* * Local variables: diff --git a/lib/mkmf.rb b/lib/mkmf.rb index 672b97b7ec..f6637b493d 100644 --- a/lib/mkmf.rb +++ b/lib/mkmf.rb @@ -1717,11 +1717,21 @@ SRC # :stopdoc: - # Handles meta information about installed libraries. Uses your platform's - # pkg-config program if it has one. + # Returns compile/link information about an installed library in a + # tuple of [cflags, ldflags, libs], by using the + # command found first in the following commands: # - # The actual command name can be overridden by - # --with-pkg-config command line option. + # 1. If --with-{pkg}-config={command} is given via + # command line option: {command} {option} + # + # 2. {pkg}-config {option} + # + # 3. pkg-config {option} {pkg} + # + # Where {option} is, for instance, --cflags. + # + # If an option argument is given, the config command is + # invoked with the option and a stripped output string is returned. def pkg_config(pkg, option=nil) if pkgconfig = with_config("#{pkg}-config") and find_executable0(pkgconfig) # iff package specific config command is given