35

尝试根据安装 Git博客上的说明在 Unix 和 Linux 机器上安装 git,但失败并出现以下错误

make prefix=/usr/local all
GIT_VERSION = 1.8.3.4
    * new build flags
    CC credential-store.o
In file included from cache.h:4,
                 from credential-store.c:1:
git-compat-util.h:221:25: warning: openssl/ssl.h: No such file or directory
git-compat-util.h:222:25: warning: openssl/err.h: No such file or directory
In file included from credential-store.c:1:
cache.h:11:21: warning: openssl/sha.h: No such file or directory
cache.h:19:18: warning: zlib.h: No such file or directory
In file included from credential-store.c:1:
cache.h:21: syntax error before "z_stream"
cache.h:21: warning: no semicolon at end of struct or union
cache.h:28: syntax error before '}' token
cache.h:28: warning: type defaults to `int' in declaration of `git_zstream'
cache.h:28: warning: data definition has no type or storage class
cache.h:30: syntax error before '*' token
cache.h:31: syntax error before '*' token
cache.h:32: syntax error before '*' token
cache.h:33: syntax error before '*' token
cache.h:35: syntax error before '*' token
cache.h:36: syntax error before '*' token
cache.h:37: syntax error before '*' token
cache.h:38: syntax error before '*' token
cache.h:39: syntax error before '*' token
cache.h:40: syntax error before '*' token
cache.h:41: syntax error before '*' token
cache.h:42: syntax error before '*' token
cache.h:769: syntax error before '*' token
make: *** [credential-store.o] Error 1

我知道这是因为缺少 openssl 库,但我无法获取这些库。

我的机器上没有 yum/apt-get 来按照建议运行以下命令:

$ yum install curl-devel expat-devel gettext-devel \
  openssl-devel zlib-devel

$ apt-get install libcurl4-gnutls-dev libexpat1-dev gettext \
  libz-dev libssl-dev

我该怎么做才能在这些机器上获取这些库。这些机器无法访问互联网,如果需要,我可以做一个 scp。有什么建议么。

4

7 回答 7

47

这个答案对我来说很好

https://stackoverflow.com/a/3016986/5837509

做就是了sudo apt-get install libssl-dev

于 2017-10-04T20:27:38.540 回答
23

对于像 CentOS 系统这样的 RHEL 和 RHEL 衍生产品,安装将解决这个问题。

$ yum install -y openssl-devel
于 2018-10-25T02:57:48.293 回答
7

对于ubuntu ,我安装了openssllibssl-dev

sudo apt install openssl libssl-dev

检查配置文件代码后,我发现它正在预定义路径中搜索“include/openssl/ssl.h”

您可以在您的系统上找到它,并可以使用 --with-openssl 运行配置

例如,如果您在 /usr/include/openssl/ssl.h 中找到 ssl.h,那么您可以运行以下命令

./configure --with-openssl=/usr/

于 2019-06-30T08:43:42.097 回答
5

如果无法访问 yum、apt-get 等(例如在没有 sudo 访问的集群机器上),请在本地手动安装新版本的 openssl,如下所示:

获取源码,解压,进入目录,制作一个构建目录(重要):

wget https://www.openssl.org/source/openssl-1.0.2r.tar.gz
tar -xvzf openssl-1.0.2r.tar.gz
cd openssl-1.0.2r
mkdir builddir

配置到您的本地构建目标(确保它与您的源目录不同,不要只使用 /home/yourdir/openssl-1.0.2r/),制作并安装:

./config --prefix=/home/yourdir/openssl-1.0.2r/builddir --openssldir=/home/yourdir/openssl-1.0.2r/builddir
make
make install

将构建目录中的 bin 和库路径添加到您的 shell 配置文件(即 ~/.bashrc)中的适当变量中,并获取它:

export PATH=/home/yourdir/openssl-1.0.2r/builddir/bin:$PATH
LD_LIBRARY_PATH="/your/other/dirs/libs:/home/yourdir/openssl-1.0.2r/builddir/lib:"
source ~/.bashrc

默认情况下,OpenSSL 现在应该在您的新目录中:

which openssl
> /home/yourdir/openssl-1.0.2r/builddir/bin/openssl

现在尝试重新安装 git,也许使用 make distclean。

于 2019-05-28T13:01:53.823 回答
2

如果您无法访问所需库的预构建包,则必须求助于包管理器之前的古老做法:在本地构建库,以及它们所依赖的库,以及它们所依赖的库,等等。

换句话说,您可能会陷入巨大而复杂的依赖追逐迷宫,如果源代码没有开箱即用地编译,这可能包括为您的平台修复可移植性错误。

Debian PTS 具有许多软件包的上游项目的链接,因此您可能无需猜测从“openssl 源”的 Google 结果中选择哪个结果。参见http://packages.qa.debian.org/o/openssl.html(“浏览源代码”链接是一个好的开始;每个包的 Debian 版权文件也应该包含一个上游 URL,尽管它可能是历史)。

还:

如果您在本地有一个包管理器(在 Debian 上,这将是基本的dpkg),那么您可以避免查找和编译泥潭,只需从连接 Internet 的主机复制所需的依赖包层次结构;但同样,请确保您获得完整的递归依赖项(您所依赖的包反过来依赖于递归的任何内容)。例如https://packages.debian.org/stable/openssl显示opensslDebian 软件包依赖于哪些软件包;其中一些将依次拥有类似的依赖项列表。

于 2014-02-28T08:11:00.053 回答
1

以下修复了使用 ssl 编译 python 3.8.1

   locate ssl.h
    /usr/include/openssl/ssl.h

   $ pwd
    /var/opt/python381/Python-3.8.1
    $ ln -s /usr/include/openssl

结果

./configure

~~

checking whether compiling and linking against OpenSSL works... yes
checking for X509_VERIFY_PARAM_set1_host in libssl... yes
于 2020-02-01T04:39:39.267 回答
0

自 2013 年(此页面上的问题年份)以来,请确保使用足够新的curl.

在 Git 2.34(2021 年第四季度)中,围绕 libcURL 版本的条件编译已被理顺。

请参阅提交 32da6e6提交 e4ff3b6提交 905a028提交 2a7f646提交 7ce3dcd提交 2d4032c提交 59a399e(2021 年 9 月 13 日)和提交 e54e502提交 5b95244(2021 年 9 月 11 日),作者: Ævar Arnfjörð Bjarmaavar
(由Junio C Hamano 合并 -- gitster--8f79fb6 提交中,2021 年 9 月 23 日)

http: 不要硬编码CURL_SOCKOPT_OK

签字人:Ævar Arnfjörð Bjarmason

如果我们使用的是没有它的旧 curl 版本,请使用新git-curl-compat.h标头定义其已知值。 它被硬编码在a15d069 中 “ :在 TCP 套接字上启用 keepalive”,2013-10-12,Git v1.8.5-rc0 -- merge)。CURL_SOCKOPT_OK
http.chttp

于 2021-10-10T12:32:46.523 回答