web-dev-qa-db-ja.com

エラー:依存関係「マウント」が見つかりません。glib-2.60.0をインストールしようとしたときにpkgconfigとcmake Linuxを試行しました

端末から次のコマンドを実行します。

Sudo python3 meson _build

**The Meson build system**
Version: 0.50.0
....
Checking for function "ngettext" : YES
Checking for function "bind_textdomain_codeset" : YES
Dependency mount found: NO (tried pkgconfig and cmake)   

meson.build:1807:2: ERROR: Dependency "mount" not found, tried pkgconfig and cmake

A full log can be found at ~/glib-2.60.0/_build/meson-logs/meson-log.txt

meson-log.txtエラー:

Checking for function "bind_textdomain_codeset" : YES
Pkg-config binary for MachineChoice.Host is cached.
Determining dependency 'mount' with pkg-config executable '/usr/local/bin/pkg-config'
Called `/usr/local/bin/pkg-config --modversion mount` -> 1

CMake binary for MachineChoice.Host is cached.
Dependency mount found: NO (tried pkgconfig and cmake)

meson.build:1807:2: ERROR: Dependency "mount" not found, tried pkgconfig and cmake

「mount.pc」ファイルを検索しました。しかし、それは存在しないようです。このエラーを修正するにはどうすればよいですか?

3
cam zilla

CentOSボックスでのこのようなエラーを次のように修正しました:yum install libmount-devel

4
Antinomial