侧边栏壁纸
博主头像
我的学习心得 博主等级

行动起来,活在当下

  • 累计撰写 223 篇文章
  • 累计创建 60 个标签
  • 累计收到 4 条评论

目 录CONTENT

文章目录

编译安装最新版本的 git 报 CURLOPT_LOGIN_OPTIONS 错误

Administrator
2022-03-31 / 0 评论 / 1 点赞 / 1730 阅读 / 0 字

服务器安装最新版的 git 遇错:

imap-send.c: In function ‘setup_curl’:
imap-send.c:1420:26: error: ‘CURLOPT_LOGIN_OPTIONS’ undeclared (first use in this function)
   curl_easy_setopt(curl, CURLOPT_LOGIN_OPTIONS, auth.buf);
                          ^
imap-send.c:1420:26: note: each undeclared identifier is reported only once for each function it appears in
make: *** [imap-send.o] Error 1

fix: 用 --with-curl 指定 curl 的位置即可。

$ whereis curl
$ make configure
$ ./configure --prefix=/usr/local/git --with-curl=/usr/bin/curl
$ make
$ make install
$ echo "export PATH=$PATH:/usr/local/git/bin" >> /etc/bashrc
$ source /etc/bashrc
1
Git

评论区