Apache httpd 2.4 翻訳 configure - ソースツリーの構成 (d216)

セラ (perlackline)

2022年01月23日 21:48

目次 - Perl Index


Theme



Perl について、復習を兼ねて断片的な情報を掲載して行く連載その d216 回。

今回は、Web サーバを構築するにあたって長らくスタンダードとなっている Apache httpd の configure について、APACHE HTTP SERVER PROJECT より「configure - Configure the source tree 」(configure - ソースツリーを構成する) を確認します。

正確な内容は 原文 を確認してください。誤解や誤訳がある場合はご指摘ください。



configure - ソースツリーを構成する (Configure the source tree)



The configure script configures the source tree for compiling and installing the Apache HTTP Server on your particular platform. Various options allow the compilation of a server corresponding to your personal requirements.

configure スクリプトはあなたの特定のプラットフォームで Apache HTTP サーバをコンパイルしてインストールするためにそのソースツリーを構成します. さまざまなオプションはあなたの個人的な要求に対応するサーバのコンパイルを可能にします.
This script, included in the root directory of the source distribution, is for compilation on Unix and Unix-like systems only. For other platforms, see the platform documentation.

ソースのディストリビューション (# 配布物) のルートディレクトリに含まれる, このスクリプトは, Unix と Unix ライクのシステムのみコンパイルします. 他のプラットフォームでは, platform ドキュメントを参照してください.


概要 (Synopsis)



You should call the configure script from within the root directory of the distribution.

あなたはそのディストリビューションのルートディレクトリ内から configure スクリプトをコールしなければなりません.

./configure [OPTION]... [VAR=VALUE]...

To assign environment variables (e.g. CC, CFLAGS ...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables.

環境変数 (e.g. CC, CFLAGS ...) をアサインするためには, VAR=VALUE としてそれらを指定します. 便利な変数のいくつかの説明のために以下を参照してください.


オプション (Options)






構成オプション (Configuration options)



The following options influence the behavior of configure itself.

次のオプションは configure 自体の振る舞いに影響します.



インストール先ディレクトリ (Installation directories)



These options define the installation directory. The installation tree depends on the selected layout.

これらのオプションはインストールディレクトリを定義します. そのインストールツリーはセレクトされたレイアウトに依存します.

By default, make install will install all the files in /usr/local/apache2/bin, /usr/local/apache2/lib etc. You can specify an installation prefix other than /usr/local/apache2 using --prefix, for instance --prefix=$HOME.

デフォルトで, make install は /usr/local/apache2/bin, /usr/local/apache2/lib etc にすべてのファイルをインストールします. あなたは例えば --prefix=$HOME のように, --prefix を使って /usr/local/apache2 以外のインストールプレフィクスを指定できます.


ディレクトリレイアウトを定義する (Define a directory layout)






インストールディレクトリの微調整 (Fine tuning of the installation directories)



For better control of the installation directories, use the options below. Please note that the directory defaults are set by autoconf and are overwritten by the corresponding layout setting.

インストールディレクトリのベターなコントロールのためには, 以下のオプションを使います. デフォルトのディレクトリは autoconf によってセットされ対応するレイアウトセッティングによって上書きされることに注意してください.



システムタイプ (System types)



These options are used to cross-compile the Apache HTTP Server to run on another system. In normal cases, when building and running the server on the same system, these options are not used.

これらのオプションは Apache HTTP Server を他のシステムで実行するためのクロスコンパイルに使われます. 普通のケースでは, サーバを同じシステム上で構築して実行し, これらのオプションは使われません.



オプショナル機能 (Optional features)



These options are used to fine tune the features your HTTP server will have.

これらのオプションはあなたの HTTP サーバが持つことになる機能の微調整につかわれます.


一般的なシンタックス (General syntax)



Generally you can use the following syntax to enable or disable a feature:

一般的にあなたは機能を有効化 or 無効化するために次のシンタックスを使うことができます:


Note
configure will not complain about --enable-foo even if foo doesn't exist, so you need to type carefully.

ノート
configure は foo がなかったとしても --enable-foo について文句をいいません, ですからあなたは慎重にタイピングする必要があります.


コンパイルするモジュールを選択する (Choosing modules to compile)



Most modules are compiled by default and have to be disabled explicitly or by using the keyword few (see --enable-modules, --enable-mods-shared and --enable-mods-static below for further explanation) or --enable-modules=none to be removed as a group.

ほとんどのモジュールはデフォルトでコンパイルされ明示的に無効化するかキーワード few (さらなる説明は以下の --enable-modules, --enablemods-shared それから --enable-mods-static を参照してください) や --enable-modules=none でグループとして削除する必要があります.
Other modules are not compiled by default and have to be enabled explicitly or by using the keywords all or reallyall to be available.

他のモジュールはデフォルトではコンパイルされず明示的に有効化するかキーワード all や reallyall を使って有効化する必要があります.
To find out which modules are compiled by default, run ./configure -h or ./configure --help and look under Optional Features. Suppose you are interested in mod_example1 and mod_example2, and you see this:

どのモジュールがデフォルトでコンパイルされるかをみつけるためには, ./configure -h か ./configure --help を実行して Optional Features の下を確認します. あなたが mod_example1 と mod_example2 に興味があるとして, あなたはこれを見ます:

Optional Features:
...
--disable-example1 example module1
--enable-example2 example module2
...

Then mod_example1 is enabled by default, and you would use --disable-example1 to not compile it. mod_example2 is disabled by default, and you would use --enable-example2 to compile it.

そして mod_example1 はデフォルトで有効化されていて, あなたはそれをコンパイルしないために --disable-example1 を使うことができます. mod_example2 はデフォルトで無効化されていて, あなたはそれをコンパイルするために --enable-example2 を使うことができます.


マルチプロセスモジュール (Multi-Processing Modules)



Multi-Processing Modules, or MPMs, implement the basic behavior of the server. A single MPM must be active in order for the server to function. The list of available MPMs appears on the module index page.

Multi-Processing Modules, MPM は, サーバの基本的な振る舞いを実装します. サーバが機能するためにひとつの MPM はアクティブになる必要があります. 利用可能な MPM のリストは Module index page で見れます.
MPMs can be built as DSOs for dynamic loading or statically linked with the server, and are enabled using the following options:

MPM はダイナミックローディングのための DSO として構築するまたはサーバーとのスタティックリンクとすることができ, 次のオプションを使って有効化します.



サードパーティモジュール (Third-party modules)



To add additional third-party modules use the following options:

追加のサードパーティモジュールを加えるには次のオプションを使います:



累積的および他のオプション (Cumulative and other options)






オプショナルパッケージ (Optional packages)



These options are used to define optional packages.

これらのオプションはオプショナルのパッケージを定義するために使われます.


一般的なシンタックス (General syntax)



Generally you can use the following syntax to define an optional package:

一般的にはオプショナルのパッケージを定義するためにあなたは次のシンタックスを使えます:



固有のパッケージ (Specific packages)




Several features of the Apache HTTP Server, including mod_authn_dbm and mod_rewrite's DBM RewriteMap use simple key/value databases for quick lookups of information. SDBM is included in the APU, so this database is always available. If you would like to use other database types, use the following options to enable them:

mod_authn_dbmmod_rewrite の DBM RewriteMap を含む, Apache HTTP Server のいくつかの機能は情報の迅速な検索のためにシンプルな keu/value データベースを使います. SDBM は APU に含まれているので, このデータベースは常に利用可能です. もしあなたが他のデータベースタイプを使いたい場合は, それらを有効にするために次のオプションを使います:



サポートプログラムのオプション (Options for support programs)




It is possible to create a statically linked binary of a single support program by using the following options:

次のオプションを使うことによって単一のサポートプログラムのスタティックにリンクされたバイナリを作成することを可能にします:



suexec 構成オプション (configuration options)



The following options are used to fine tune the behavior of suexec. See Configuring and installing suEXEC for further information.

次のオプションは suexec の振る舞いを微調整するために使われます. さらなる情報のために Configuring and installing suEXEC を参照してください.



環境変数 (Environment variables)



There are some useful environment variables to override the choices made by configure or to help it to find libraries and programs with nonstandard names or locations.

configure によって選択されたもののオーバライドや非標準の名前 or 場所のライブラリやプログラムを見つけることを助けるための便利な環境変数がいくつかあります.



コメント (Comments)



Notice:
This is not a Q&A section. Comments placed here should be pointed towards suggestions on improving the documentation or server, and may be removed by our moderators if they are either implemented or considered invalid/off-topic. Questions on how to manage the Apache HTTP Server should be directed at either our IRC channel, #httpd, on Libera.chat, or sent to our mailing lists.

お知らせ
これは Q&A セクションではありません. ここにおかれるコメントはドキュメントやサーバの改善の提案に向けられなければならず, もし無効/オフトピック (# の条件) を満たしたり (# そうであると) 見做された場合は私たちのモデレータによって削除されるかもしれません. Apache HTTP Server をどのように管理するかの質問は私たちの Libera.chat 上の IRC チェンネル, #httpd か私たちのメーリングリストいずれかの方に送られるべきです.



NEXT



次回は、「 Documentation / Tutorials 」を確認する前に、本文中で言及のあった More Tuning Advice "Stas Bekman's Performance Guide" のリンク先「 Documentation / 1.0 / mod_perl 1.0 User Guide / Performance Tuning 」を「 mod_perl 」公式サイト (https://perl.apache.org/index.html) より確認する予定です。


参考情報は書籍「 続・初めての Perl 改訂版 」, 「 Effective Perl 第 2 版 」を中心に perldoc, Wikipedia および各 Web サイト。それと詳しい先輩。

目次 - Perl Index






















関連記事