nginx原始碼編譯安裝的時候看到./configure --help有些不太明白
--with-http_ssl_module enable ngx_http_ssl_module
--with-http_v2_module enable ngx_http_v2_module
--with-http_realip_module enable ngx_http_realip_module
--with-http_addition_module enable ngx_http_addition_module
--with-http_xslt_module enable ngx_http_xslt_module
--with-http_xslt_module=dynamic enable dynamic ngx_http_xslt_module
--with-http_image_filter_module enable ngx_http_image_filter_module
--with-http_image_filter_module=dynamic
--with-select_module enable select module
--without-select_module disable select module
--with-poll_module enable poll module
--without-poll_module disable poll module
以上的 http_ssl模組,http_v2模組 都需要指定在 ./configure 後才能新增使用功能嗎?
如果所有的--with 都是需要指定在 ./configure 後面編譯才能使用,那麼 --without還有什麼意義?
例如上面的select_module,如果需要 ./configure --with-select_module指定才能編譯使用,那麼--without-select_module 這個編譯配置選項有什麼意義?
一部分模組是預設就會編譯的,一部分是不會編譯的,對於預設編譯的,如果不想使用,可以使用without,對於預設不編譯的,如果想使用,就用with.
官方文件中是這樣描述
select_module
的對於既有with,又有without的,例如
select_module
模組,這個模組會根據系統的支援情況決定預設情況下該模組是否自動編譯到nginx。因此就有了兩個選項,可以手動的控制這種行為。其它模組,如果只提供了
with
,那不就说明默认是不编译的,而只提供了without
,則說明是預設編譯的