Skip to content

Build_jpn

Takeshi Nakatani edited this page Dec 9, 2016 · 4 revisions

ビルド方法 To English

K2HTPDTORおよびK2HTPDTORSVRをビルドする方法を説明します。

  1. 事前環境
  • 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
  1. 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
  1. ビルド、インストール:FULLOCK
$ cd fullock
$ ./autogen.sh
$ ./configure --prefix=/usr
$ make
$ sudo make install
  1. ビルド、インストール:K2HASH
$ cd k2hash
$ ./autogen.sh
$ ./configure --prefix=/usr
$ make
$ sudo make install
  1. ビルド、インストール:CHMPX
$ cd chmpx
$ ./autogen.sh
$ ./configure --prefix=/usr
$ make
$ sudo make install
  1. ビルド、インストール:K2HTPDTOR
$ ./autogen.sh
$ ./configure --prefix=/usr
$ make
$ sudo make install
Clone this wiki locally