Freebsd 12.0-RELEASE-p10.
There was a warning, when i run the command "pkg check -d -a"
Код:
apache24 is missing a required shared library: libcrypto.so.9
I found that command "portupgrade -r libarchive" might help.
But when it reached reinstall of samba 4.10.13, it dropped out with following:
Код:
Checking for system tdb >= 1.3.18 : yes
ERROR: Python module pytdb of version 1.3.18 not found, and bundling disabled
I was trying to solve this for quite a long time, and at last made this:
1)in /etc/make.conf add "DEFAULT_VERSIONS=python=2.7 python2=2.7 python3=3.8"
2)
Код:
portsnap fetch update
cd /usr/ports/textproc/p5-XML-Parser
make reinstall
pkg remove -f samba48
cd /usr/ports/lang/python
make reinstall
cd /usr/ports/databases/tdb
make reinstall
cd /usr/ports/devel/tevent
make reinstall
and then
Код:
cd /usr/ports/net/samba410
make reinstall
worked perfectly and command
Код:
samba --version
shows "Version 4.10.13"
By the way,
Код:
cd /usr/ports/www/apache24
make reinstall
leads to "libcrypto.so.9" warning disappear.