-
Notifications
You must be signed in to change notification settings - Fork 4
Build_jpn
Takeshi Nakatani edited this page Dec 9, 2016
·
4 revisions
K2HTPDTORおよびK2HTPDTORSVRをビルドする方法を説明します。
- 事前環境
- Debian / Ubuntu
aptitude update
aptitude install git autoconf autotools-dev gcc g++ make gdb dh-make fakeroot dpkg-dev devscripts libtool pkg-config libssl-dev libyaml-dev
- Fedora / CentOS
yum install git autoconf automake gcc libstdc++-devel gcc-c++ make libtool openssl-devel libyaml-devel
- clone
$ git clone [email protected]:yahoojapan/chmpx.gif
$ git submodlue update --init --recursive
$ git clone --recursive git://github.com/yahoojapan/fullock
$ git clone --recursive git://github.com/yahoojapan/k2hash
$ git clone --recursive git://github.com/yahoojapan/chmpx
- ビルド、インストール:FULLOCK
$ cd fullock
$ ./autogen.sh
$ ./configure --prefix=/usr
$ make
$ sudo make install
- ビルド、インストール:K2HASH
$ cd k2hash
$ ./autogen.sh
$ ./configure --prefix=/usr
$ make
$ sudo make install
- ビルド、インストール:CHMPX
$ cd chmpx
$ ./autogen.sh
$ ./configure --prefix=/usr
$ make
$ sudo make install
- ビルド、インストール:K2HTPDTOR
$ ./autogen.sh
$ ./configure --prefix=/usr
$ make
$ sudo make install