1. "Problem" SuSE has installed Libsodium and the following error occurred while installing ZEROMQ?
Checking for libsodium ... noconfigure:error:Package requirements (libsodium >= 0.0.0) were not met:no package ' LIBSO Dium ' found consider adjusting the PKG_CONFIG_PATH environment variable if youinstalled software in a non-standard prefix. Alternatively, you could set the environment variables Libsodium_cflagsand libsodium_libs to avoid the need-call Pkg-con Fig. See the Pkg-config Mans page for more details.
Workaround:
Due to the use of the normal user, and is a 64-bit system.
So files for 64-bit operating systems are usually placed in/usr/lib64 instead of/usr/lib.
So you need this:
A. Installing the Libsodium
Use the 64-bit GCC compiler with CC variables.
sudo tar zxf libsodium-1.0. 2. tar. gz; CD libsodium-1.0. 2 ; sudo ./configure cc="gcc-m64"sudomakesudo Make Install
B. Installing ZEROMQ
Using the 64-bit GCC compiler with CC variables
sudo tar zxf zeromq-4.1. 3. tar. gz; CD zeromq-4.1. 3 ; sudo ./configure--prefix=/usr cc="gcc-m64" pkg_config_path= " /usr/lib64/pkgconfig " sudo Make sudo Make Install
The Pkg_config_path parameter is a search directory that adds a pkgconfig file.
"Problem" SuSE has installed Libsodium and the following error occurred while installing ZEROMQ?