null+****@clear*****
null+****@clear*****
2012年 3月 29日 (木) 11:31:21 JST
Kouhei Sutou 2012-03-29 11:31:21 +0900 (Thu, 29 Mar 2012) New Revision: 8378adfdc3357df3f3fa10329a5ebed77ec811d0 Log: doc install: update MySQL version: 5.5.17 -> 5.5.22 Modified files: doc/locale/ja/LC_MESSAGES/install.po doc/source/install.rst Modified: doc/locale/ja/LC_MESSAGES/install.po (+10 -8) =================================================================== --- doc/locale/ja/LC_MESSAGES/install.po 2012-03-29 11:26:35 +0900 (e9087e6) +++ doc/locale/ja/LC_MESSAGES/install.po 2012-03-29 11:31:21 +0900 (80fa13d) @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: groonga storage engine 1.0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-03-29 11:05\n" -"PO-Revision-Date: 2012-03-29 11:26+0900\n" +"POT-Creation-Date: 2012-03-29 11:28\n" +"PO-Revision-Date: 2012-03-29 11:30+0900\n" "Last-Translator: Kouhei Sutou <kou****@clear*****>\n" "Language-Team: Japanese\n" "Language: ja\n" @@ -100,7 +100,9 @@ msgstr "インストール::" msgid "" "If you want to use `MeCab <http://mecab.sourceforge.net/>`_ as a tokenizer. " "please install groonga-tokenizer-mecab package." -msgstr "トークナイザーとして `MeCab <http://mecab.sourceforge.net/>`_ を利用したい場合はgroonga-tokenizer-mecabをインストールしてください。" +msgstr "" +"トークナイザーとして `MeCab <http://mecab.sourceforge.net/>`_ を利用したい場" +"合はgroonga-tokenizer-mecabをインストールしてください。" # e75688db23904eed9cb3e9b483786b63 # 276a6bbcec924e6090f99b4959c4d37b @@ -290,11 +292,9 @@ msgstr "" # ffc421e920ac4c479be6a13c90ff6da6 #: ../../../source/install.rst:250 msgid "" -"Here we assume that we use mysql-5.5.17 and its source code is extracted in " +"Here we assume that we use mysql-5.5.22 and its source code is extracted in " "the following directory. ::" -msgstr "" -"mysql-5.5.17を使用し、以下にソースディレクトリが展開されているものと仮定しま" -"す。 ::" +msgstr "mysql-5.5.22を使用し、以下にソースディレクトリが展開されているものと仮定します。 ::" # aa0cbc7b42594bb9a095979846735541 #: ../../../source/install.rst:254 @@ -385,7 +385,9 @@ msgstr "" msgid "" "If \"mroonga\" is displayed in \"SHOW ENGINES\" command result like below, " "mroonga is well installed. ::" -msgstr "以下のように\"SHOW ENGINES\"コマンドで\"mroonga\"が表示されればmroongaのインストールは完了です。 ::" +msgstr "" +"以下のように\"SHOW ENGINES\"コマンドで\"mroonga\"が表示されればmroongaのイン" +"ストールは完了です。 ::" # 42345ab063fc4290b4b136b1cbbf50b8 #: ../../../source/install.rst:313 Modified: doc/source/install.rst (+4 -4) =================================================================== --- doc/source/install.rst 2012-03-29 11:26:35 +0900 (e587480) +++ doc/source/install.rst 2012-03-29 11:31:21 +0900 (0224bed) @@ -247,9 +247,9 @@ Download the latest MySQL 5.5 source code, then build and install it. http://dev.mysql.com/downloads/mysql/ -Here we assume that we use mysql-5.5.17 and its source code is extracted in the following directory. :: +Here we assume that we use mysql-5.5.22 and its source code is extracted in the following directory. :: - /usr/local/src/mysql-5.5.17 + /usr/local/src/mysql-5.5.22 And we assume that MySQL is installed in the following directory. :: @@ -270,14 +270,14 @@ Build mroonga Run configure script by specifying the location of MySQL source code with ``--with-mysql-source`` and the path of mysql_config command with ``--with-mysql-config``. :: ./configure \ - --with-mysql-source=/usr/local/src/mysql-5.5.17 \ + --with-mysql-source=/usr/local/src/mysql-5.5.22 \ --with-mysql-config=/usr/local/mysql/bin/mysql_config If groonga is not installed in the standard location like /usr/lib, you need to specify its location by PKG_CONFIG_PATH. For example, if groonga is installed with ``--prefix=$HOME/local``, do like the following :: ./configure \ PKG_CONFIG_PATH=$HOME/local/lib/pkgconfig \ - --with-mysql-source=/usr/local/src/mysql-5.5.17 \ + --with-mysql-source=/usr/local/src/mysql-5.5.22 \ --with-mysql-config=/usr/local/mysql/bin/mysql_config Then invoke "make". ::