configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
New commits: commit 18f49e8c314c12761fe3d2413c050311b63d7c0b Author: Patrick Luby <[email protected]> AuthorDate: Wed Apr 23 09:06:43 2025 -0400 Commit: Patrick Luby <[email protected]> CommitDate: Wed May 14 15:08:58 2025 +0200 Correct comments about pkgconf and harfbuzz on macOS Some of the comments copied from Windows to macOS are only applicable to Windows so remove those. Change-Id: I58293db76578f14459d6568639ace04c09dd206c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/184508 Reviewed-by: Patrick Luby <[email protected]> Tested-by: Jenkins diff --git a/configure.ac b/configure.ac index 49d46418f947..bc7383d6d0d3 100644 --- a/configure.ac +++ b/configure.ac @@ -703,13 +703,13 @@ if test "$build_os" = "cygwin" -o -n "$WSL_ONLY_AS_HELPER"; then else case "$build_os" in darwin*) - # convenience check for a custom pkgconf used by meson - needs to be a version that uses macOS - # style paths. Needs to be checked before the configure-switches that use PKG_CHECK_MODULES as + # convenience check for LODE's custom pkgconf used by meson + # Needs to be checked before the configure-switches that use PKG_CHECK_MODULES as # that would already set the PKG_CONFIG var and then bypass/skip this autoselection AC_PATH_PROG(PKG_CONFIG,pkgconf,,[$PATH:$LODE_HOME/opt/bin]) if test -z "$PKG_CONFIG"; then AC_MSG_WARN([pkgconf not found - pkgconf is required to build harfbuzz]) - add_warning "please add PKG_CONFIG=/path/to/pkgconf to autogen.input or put it in PATH, a macOS version of pkgconf is required to build harfbuzz" + add_warning "please add PKG_CONFIG=/path/to/pkgconf to autogen.input or put it in PATH, pkgconf is required to build harfbuzz" fi ;; esac
