source: Main/trunk/Document/input/building/linux.md@ 409

Last change on this file since 409 was 350, checked in by Nishi, on Oct 16, 2024 at 5:44:15 AM

add docs and stuff

File size: 1.6 KB
Line 
1\language ^en$
2# Build for Linux {Build}
3
4Tewi HTTPd has the Linux support, which is checked working on Debian.
5
6## Steps
7
8### 1. Install packages
9
10It 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
16You can get the source codes using several VCS. ([Official Repository List](repos.html))
17
18### 3. Create config.h
19
20Copy config.h.tmpl to config.h. Edit it if needed.
21
22### 4. Run make
23
24Run `make PLATFORM=linux PREFIX=prefix`. PREFIX is set to `/usr/local` by default.
25
26### 5. Install
27
28Run `make PLATFORM=linux PREFIX=prefix install` as **root user**.
29
30\language ^jp$
31# Linux向けにビルドする {ビルド}
32
33Tewi HTTPdにはDebianで動作確認がされているLinuxサポートがあります。
34
35## ステップ
36
37### 1. パッケージを入れる
38
39Debianの場合、以下のものがあれば動くはずです:
40 - `build-essential`
41 - `libssl-dev` (TLS/SSL機能が必要なら)
42
43### 2. ソースコードを持って来る
44
45ソースコードは色々なVCSを使って取得することができます。 ([公認リポジトリリスト](repos.html))
46
47### 3. config.hを作成する
48
49config.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**ユーザーで実行してください。
Note: See TracBrowser for help on using the repository browser.