適当に翻訳する。
[user09@localhost git-2.9.5]$ git clone https://github.com/TASEmulators/desmume
Cloning into 'desmume'...
fatal: Unable to find remote helper for 'https'
[user09@localhost git-2.9.5]$
curlが入ってないと上記のエラーが出るとのこと。
curl のソースコードをダウンロードしようとして goo.ne.jpで検索したら、一番上にgithubのcurlのページが出てきた。
gitが使えなくて困っているのだが…。
curlのサイトの「daily snapshots」からダウンロード。
openssl-1.1.1qをインストールしてある環境で、
$ cd git-2.9.5
$ export PKG_CONFIG_PATH="/usr/local/lib64/pkgconfig:/usr/local/lib/pkgconfig:/usr/local/share/pkgconfig"
$ export LD_LIBRARY_PATH="/usr/local/lib64:/usr/local/lib"
$ export CFLAGS="-I/usr/local/include"
(自分なりの環境変数を設定)
$ make clean
$ cd ..
$ tar -xf curl-7.88.1-20230220.tar.xz
$ cd curl-7.88.1-20230220
$ ./configure --with-openssl=/usr/local
(人によっては --with-openssl=/usr/local/ssl かもしれない。)
$ make
$ sudo make install
$ cd ../git-2.9.5
$ ./configure
...
...
checking for curl_global_init in -lcurl... yes
checking for Curl_ssl_init in -lcurl... no
checking for curl-config... curl-config
...
...
$ ./configure --with-curl=/usr/local
...
...
checking for curl_global_init in -lcurl... yes
checking for Curl_ssl_init in -lcurl... no
checking for curl-config... curl-config
...
...
$ make
$ sudo make install
「checking for Curl_ssl_init in -lcurl... no」のままだが、「git clone https://〜〜」は成功した。
/usr/local/libexec/git-coreの中に「git-remote-https」ができている。
カレンダー
カテゴリー
最新コメント
最新記事
ブログ内検索
広告