Done
Details
Assignee
aibek.bukabayevaibek.bukabayevReporter
Michael ChoMichael ChoRegression Issue
YesPlanned Version/s
Needs QA
YesComponents
Sprint
NoneFix versions
Priority
Medium
Details
Details
Assignee
aibek.bukabayev
aibek.bukabayevReporter
Michael Cho
Michael ChoRegression Issue
Yes
Planned Version/s
Needs QA
Yes
Components
Sprint
None
Fix versions
Priority
Smart Checklist
Smart Checklist
Smart Checklist
Created December 14, 2023 at 3:17 PM
Updated June 24, 2024 at 6:38 AM
Resolved December 28, 2023 at 7:08 AM
Due to changes in https://github.com/percona/percona-xtrabackup/commit/6038a7934cbd4e6c01389fdc9b8ffabf8c3e006a, PXB fails to build on macOS since 8.0.33-28 with error:
See:
https://github.com/Homebrew/homebrew-core/pull/137048
https://github.com/Homebrew/homebrew-core/pull/155356#issuecomment-1832757855
The problem is
FIND_PROCPS()
will always fail on systems that don't use procps. A hack would be to set-DPROCPS_INCLUDE_DIR=/dev/null
or some other fake value.For correct behavior, the build should eith
Only run
FIND_PROCPS()
insideIF(NOT APPLE)
sectionMake
FIND_PROCPS()
into no-op for APPLE