null+****@clear*****
null+****@clear*****
2012年 4月 13日 (金) 15:10:14 JST
Kouhei Sutou 2012-04-13 15:10:14 +0900 (Fri, 13 Apr 2012)
New Revision: 21508e38dfb935f77594fbf6099a7b105bc5c57d
Log:
Use correct project name
lzo -> LZO
mecab -> MeCab
Modified files:
configure.ac
Modified: configure.ac (+4 -4)
===================================================================
--- configure.ac 2012-04-13 15:09:29 +0900 (5ef6e0d)
+++ configure.ac 2012-04-13 15:10:14 +0900 (c4269e9)
@@ -766,10 +766,10 @@ if test "x$with_zlib" = "xyes"; then
AC_CHECK_LIB(z, compress, [ZLIB_LIBS="-lz"], [AC_MSG_ERROR("No libz found")])
fi
-# lzo
+# LZO
AC_ARG_WITH(lzo,
[AS_HELP_STRING([--with-lzo],
- [use lzo for data compression. [default=no]])],
+ [use LZO for data compression. [default=no]])],
[with_lzo="$withval"],
[with_lzo="no"])
if test "x$with_lzo" = "xyes"; then
@@ -777,11 +777,11 @@ if test "x$with_lzo" = "xyes"; then
AC_CHECK_LIB(lzo2, lzo1_compress, [LZO_LIBS="-llzo2"], [AC_MSG_ERROR("No liblzo2 found")])
fi
-# mecab
+# MeCab
# NOTE: MUST be checked last
AC_ARG_WITH(mecab,
[AS_HELP_STRING([--with-mecab],
- [use mecab for morphological analysis. [default=yes]])],
+ [use MeCab for morphological analysis. [default=yes]])],
[with_mecab="$withval"],
[with_mecab="yes"])
AC_MSG_CHECKING([whether enable MeCab])