ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
20 lines
608 B
Markdown
20 lines
608 B
Markdown
# pkg-config overrides for RHEL 7 and CentOS 7
|
|
|
|
RHEL 7 and CentOS 7 do not provide pkg-config `.pc` files for Tcl/Tk. The
|
|
OpenSSL 1.1.1 pkg-config file is named `openssl11.pc` and not picked up
|
|
by Python's `configure` script.
|
|
|
|
To build Python with system Tcl/Tk libs and OpenSSL 1.1 package, first
|
|
install the developer packages and the `pkgconfig` package with `pkg-config`
|
|
command.
|
|
|
|
```shell
|
|
sudo yum install pkgconfig 'tcl-devel >= 8.5.12' 'tk-devel >= 8.5.12' openssl11-devel
|
|
```
|
|
|
|
The run `configure` with `PKG_CONFIG_PATH` environment variable.
|
|
|
|
```shell
|
|
PKG_CONFIG_PATH=Misc/rhel7 ./configure -C
|
|
```
|