]> Nishi Git Mirror - tewi.git/commitdiff
add hurd files
authorNishi <nishi@nishi.boats>
Tue, 5 Nov 2024 02:04:25 +0000 (02:04 +0000)
committerNishi <nishi@nishi.boats>
Tue, 5 Nov 2024 02:04:25 +0000 (02:04 +0000)
git-svn-id: file:///raid/svn-personal/tewi/trunk@412 8739d7e6-ffea-ec47-b151-bdff447c6205

Document/input/building/hurd.md [new file with mode: 0644]
Platform/hurd.mk [new file with mode: 0644]

diff --git a/Document/input/building/hurd.md b/Document/input/building/hurd.md
new file mode 100644 (file)
index 0000000..9b1a078
--- /dev/null
@@ -0,0 +1,57 @@
+\language ^en$
+# Build for GNU/Hurd {Build}
+
+Tewi HTTPd has the GNU/Hurd support, which is checked working on Debian.
+
+## Steps
+
+### 1. Install packages
+
+It should work on Debian if below packages are installed:
+ - `build-essential`
+ - `libssl-dev` (If you want TLS/SSL)
+
+### 2. Get the source code
+
+You can get the source codes using several VCS. ([Official Repository List](repos.html))
+
+### 3. Create config.h
+
+Copy config.h.tmpl to config.h. Edit it if needed.
+
+### 4. Run make
+
+Run `make PLATFORM=hurd PREFIX=prefix`. PREFIX is set to `/usr/local` by default.
+
+### 5. Install
+
+Run `make PLATFORM=hurd PREFIX=prefix install` as **root user**.
+
+\language ^jp$
+# GNU/Hurd向けにビルドする {ビルド}
+
+Tewi HTTPdにはDebianで動作確認がされているGNU/Hurdサポートがあります。
+
+## ステップ
+
+### 1. パッケージを入れる
+
+Debianの場合、以下のものがあれば動くはずです:
+ - `build-essential`
+ - `libssl-dev` (TLS/SSL機能が必要なら)
+
+### 2. ソースコードを持って来る
+
+ソースコードは色々なVCSを使って取得することができます。 ([公認リポジトリリスト](repos.html))
+
+### 3. config.hを作成する
+
+config.h.tmplをconfig.hにコピーしてください。必要があれば編集してください。
+
+### 4. makeを実行する
+
+`make PLATFORM=hurd PREFIX=おすきなプレフィックス`を実行してください。PREFIXの指定が無い場合は`/usr/local`になります。
+
+### 5. インストールする
+
+`make PLATFORM=hurd PREFIX=おすきなプレフィックス install`を**root**ユーザーで実行してください。
diff --git a/Platform/hurd.mk b/Platform/hurd.mk
new file mode 100644 (file)
index 0000000..68f6ffb
--- /dev/null
@@ -0,0 +1,9 @@
+# $Id$
+
+CC = cc
+AR = ar
+CFLAGS = -g -std=c99 -DPREFIX=\"$(PREFIX)\" -I $(PWD)/Common -D_DEFAULT_SOURCE -fPIC -D_XOPEN_SOURCE=600
+LDFLAGS =
+LIBS = -ldl
+EXEC =
+LIBSUF = .so