>>8 前スレの986です。
https://github.com/yama-natuki/JD/tree/test にあるjd-2.8.9-171003をインストールしようとしたのは
CentOS 6 64bit JD Ver 2.8.9-150226で 2chproxy.pl v1.2 https://pastebin.com/53GmdasL
を使用すると「設定ーネットワークープロキシ」でその他のサーバ用もチェックしないとスレの更新で読めなくなった。
だけどhttpsな画像リンクが取得できなくなる、チェック外すと画像を読み込む、と言う状態を改善できるかもと考えたからです。
jd-2.8.9-171003をインストール出来た結果、その他のサーバ用のチェックを入れないでもスレが更新できるようになり、
httpsな画像リンクも読めるようになりました。
>>10,12
c++11の代わりにc++0xを使用してみると
$ make CXXFLAGS+="-std=c++0x"
loader.cpp:571: error: call of overloaded ‘to_string(long int&)’ is ambiguous
のようになってしまった。それで
centos c++11で検索して
CentOS 6でC/C++開発環境を整える
http://goldilocks-engineering.blogspot.jp/2014/05/centos-64c.html

# cd /etc/yum.repos.d/
# wget http://people.centos.org/tru/devtools-2/devtools-2.repo
# yum install devtoolset-2-gcc devtoolset-2-binutils devtoolset-2-gcc-c++ devtoolset-2-gcc-gfortran

$ scl enable devtoolset-2 bash
$ g++ --version
g++ (GCC) 4.8.2 20140120 (Red Hat 4.8.2-15) g++が4.7以上なのを確認して

$ git clone -b test --depth 1 https://github.com/yama-natuki/JD.git jd
$ cd jd
$ autoreconf -i
$ ./configure
$ make CXXFLAGS+="-std=c++11"
のコンパイルが通りました。

レスくれた皆さんありがとうございます。