diff options
author | LAN-TW <lantw44@gmail.com> | 2012-10-15 12:01:14 +0800 |
---|---|---|
committer | LAN-TW <lantw44@gmail.com> | 2012-10-15 12:01:14 +0800 |
commit | 77fd25c1a01c3a905e0ad1d27b6254d970380fe8 (patch) | |
tree | 575b0e134784c078dd791ca93b4cd25c59e54767 /configure.ac | |
parent | 38b2850dcfca042c2ed37296bc845cbb263ea4fe (diff) | |
download | sctjudge-77fd25c1a01c3a905e0ad1d27b6254d970380fe8.tar.gz sctjudge-77fd25c1a01c3a905e0ad1d27b6254d970380fe8.tar.zst sctjudge-77fd25c1a01c3a905e0ad1d27b6254d970380fe8.zip |
加入顯示「編譯時啟用功能列表」的功能 (-version 會顯示)
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index c51735a..44f4b18 100644 --- a/configure.ac +++ b/configure.ac @@ -43,7 +43,7 @@ AM_CONDITIONAL([STATIC_EXEC], [test x"${opt_static}" = xyes]) # 有些功能是選用的...... AC_ARG_ENABLE([procmon], [AS_HELP_STRING([--enable-procmon], - [enable process monitor using Linux /proc filesystem])], + [enable process monitor using Linux proc filesystem])], [opt_procmon=$enableval], [opt_procmon=no]) test x"${opt_procmon}" = xyes && \ @@ -135,7 +135,7 @@ confmsgsave="config.msg" echo "" | tee "$confmsgsave" echo "Optional Features:" | tee -a "$confmsgsave" echo "(1) Conversion between user or group ID and name .... $opt_ugidname" | tee -a "$confmsgsave" -echo "(2) Process monitor using Linux /proc filesystem .... $opt_procmon" | tee -a "$confmsgsave" +echo "(2) Process monitor using Linux proc filesystem ..... $opt_procmon" | tee -a "$confmsgsave" echo "(3) Linux capabilities support ...................... $opt_cap" | tee -a "$confmsgsave" echo "-------------------------------------------------------------" | tee -a "$confmsgsave" echo "Compiling and Linking Options:" | tee -a "$confmsgsave" |