Subversion Repositories Tewi

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
350 nishi 1
\language ^en$
2
# Build for Linux {Build}
3
 
4
Tewi HTTPd has the Linux support, which is checked working on Debian.
5
 
6
## Steps
7
 
8
### 1. Install packages
9
 
10
It should work on Debian if below packages are installed:
11
 - `build-essential`
12
 - `libssl-dev` (If you want TLS/SSL)
13
 
14
### 2. Get the source code
15
 
16
You can get the source codes using several VCS. ([Official Repository List](repos.html))
17
 
18
### 3. Create config.h
19
 
20
Copy config.h.tmpl to config.h. Edit it if needed.
21
 
22
### 4. Run make
23
 
24
Run `make PLATFORM=linux PREFIX=prefix`. PREFIX is set to `/usr/local` by default.
25
 
26
### 5. Install
27
 
28
Run `make PLATFORM=linux PREFIX=prefix install` as **root user**.
29
 
30
\language ^jp$
31
# Linux向けにビルドする {ビルド}
32
 
33
Tewi HTTPdにはDebianで動作確認がされているLinuxサポートがあります。
34
 
35
## ステップ
36
 
37
### 1. パッケージを入れる
38
 
39
Debianの場合、以下のものがあれば動くはずです:
40
 - `build-essential`
41
 - `libssl-dev` (TLS/SSL機能が必要なら)
42
 
43
### 2. ソースコードを持って来る
44
 
45
ソースコードは色々なVCSを使って取得することができます。 ([公認リポジトリリスト](repos.html))
46
 
47
### 3. config.hを作成する
48
 
49
config.h.tmplをconfig.hにコピーしてください。必要があれば編集してください。
50
 
51
### 4. makeを実行する
52
 
53
`make PLATFORM=linux PREFIX=おすきなプレフィックス`を実行してください。PREFIXの指定が無い場合は`/usr/local`になります。
54
 
55
### 5. インストールする
56
 
57
`make PLATFORM=linux PREFIX=おすきなプレフィックス install`を**root**ユーザーで実行してください。