From 292a4abc69a1c14702c49b6fb7bd3c6ccdeae177 Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Tue, 19 Nov 2024 17:33:03 -0500 Subject: [PATCH] doc: remove mention of the pkg-config gem from extconf warning Closes #358 --- CHANGELOG.md | 1 + ext/sqlite3/extconf.rb | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 23fe9f0c..02c9a38c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ ### Fixed - Fix `Database#encoding=` support for switching the database encoding to `UTF-16BE`, which has been broken since `Database#encoding=` was introduced in v1.3.12 in 2016. [#575] @miyucy +- Omit mention of the `pkg-config` gem when failing to build from source, since it is not used. [#358] @flavorjones ## 2.2.0 / 2024-10-30 diff --git a/ext/sqlite3/extconf.rb b/ext/sqlite3/extconf.rb index 88f86d14..931119f1 100644 --- a/ext/sqlite3/extconf.rb +++ b/ext/sqlite3/extconf.rb @@ -175,7 +175,7 @@ def abort_could_not_find(missing) end def abort_pkg_config(id) - abort("\nCould not configure the build properly (#{id}). Please install either the `pkg-config` utility or the `pkg-config` rubygem.\n\n") + abort("\nCould not configure the build properly (#{id}). Please install the `pkg-config` utility.\n\n") end def cross_build?