美文网首页
Jauns-gateway 报错【No package 'lib

Jauns-gateway 报错【No package 'lib

作者: 弗拉德x | 来源:发表于2020-11-03 21:08 被阅读0次

    No package 'libssl' found
    No package 'libcrypto' found

    文章首发地址
    在Mac下配置janus-gateway服务器的时候遇到了找不到libssllibcrypto错误,
    详情如下:

    ./configure
    ...
    checking for
                        glib-2.0 >= 2.34
                        libconfig
                        nice
                        jansson >= 2.5
                        libssl >= 1.0.1
                        libcrypto
                        zlib
                      ... no
    configure: error: Package requirements (
                        glib-2.0 >= 2.34
                        libconfig
                        nice
                        jansson >= 2.5
                        libssl >= 1.0.1
                        libcrypto
                        zlib
                      ) were not met:
    
    No package 'libssl' found
    No package 'libcrypto' found
    
    Consider adjusting the PKG_CONFIG_PATH environment variable if you
    installed software in a non-standard prefix
    

    只需要自定义PKG_CONFIG_PATH即可
    在执行

    ./configure --prefix=/usr/local/janus PKG_CONFIG_PATH=/usr/local/opt/openssl/lib/pkgconfig
    

    之前在命令行内执行一下

    export PKG_CONFIG_PATH=/usr/local/opt/openssl/lib/pkgconfig:/usr/local/opt/libffi/lib/pkgconfig
    

    如果没有安装libffi,可以使用 Home brew安装一下就可以了。

    相关文章

      网友评论

          本文标题:Jauns-gateway 报错【No package 'lib

          本文链接:https://www.haomeiwen.com/subject/vaiivktx.html