From sumomo ¡÷ users.sourceforge.jp Wed Jul 18 18:42:39 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Wed, 18 Jul 2012 18:42:39 +0900 Subject: [Julius-cvs 724] CVS update: julius4/libsent/src/voca Message-ID: <1342604559.292962.21583.nullmailer@users.sourceforge.jp> Index: julius4/libsent/src/voca/voca_malloc.c diff -u julius4/libsent/src/voca/voca_malloc.c:1.4 julius4/libsent/src/voca/voca_malloc.c:1.5 --- julius4/libsent/src/voca/voca_malloc.c:1.4 Fri Apr 29 14:09:20 2011 +++ julius4/libsent/src/voca/voca_malloc.c Wed Jul 18 18:42:38 2012 @@ -12,7 +12,7 @@ * @author Akinobu LEE * @date Fri Feb 18 21:33:29 2005 * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * */ /* @@ -40,6 +40,15 @@ new->mroot = NULL; new->work = NULL; + winfo->wname = NULL; + winfo->woutput = NULL; + winfo->wlen = NULL; + winfo->wton = NULL; +#ifdef CLASS_NGRAM + winfo->cprob = NULL; +#endif + winfo->is_transparent = NULL; + return(new); } @@ -54,15 +63,14 @@ /* free each word info */ if (winfo->mroot != NULL) mybfree2(&(winfo->mroot)); /* free word info */ - free(winfo->wname); - free(winfo->woutput); - free(winfo->wseq); - free(winfo->wlen); - free(winfo->wton); + if (winfo->wname != NULL) free(winfo->wname); + if (winfo->woutput != NULL) free(winfo->woutput); + if (winfo->wlen != NULL) free(winfo->wlen); + if (winfo->wton != NULL) free(winfo->wton); #ifdef CLASS_NGRAM - free(winfo->cprob); + if (winfo->cprob != NULL) free(winfo->cprob); #endif - free(winfo->is_transparent); + if (winfo->is_transparent != NULL) free(winfo->is_transparent); /* free whole */ free(winfo); } From sumomo ¡÷ users.sourceforge.jp Thu Jul 19 09:58:52 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Thu, 19 Jul 2012 09:58:52 +0900 Subject: [Julius-cvs 725] CVS update: julius4 Message-ID: <1342659532.513458.1159.nullmailer@users.sourceforge.jp> Index: julius4/Release-ja.txt diff -u julius4/Release-ja.txt:1.15 julius4/Release-ja.txt:1.16 --- julius4/Release-ja.txt:1.15 Sun Dec 4 15:35:00 2011 +++ julius4/Release-ja.txt Thu Jul 19 09:58:51 2012 @@ -1,3 +1,17 @@ +4.2.1.1 + + +Fix error on reading binary N-gram when compiled with "--enable-words-int" + +Fix occasional segfault caused by a memory leak in search handling. + +Fix incorrect handling of backslash character in Win32 file path. + +Fix segfault when reading an errorous word dictionary. + + + + 4.2.1 (2011.12.25) =================== From sumomo ¡÷ users.sourceforge.jp Thu Jul 19 09:58:52 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Thu, 19 Jul 2012 09:58:52 +0900 Subject: [Julius-cvs 726] CVS update: julius4/libsent/src/voca Message-ID: <1342659532.675180.1170.nullmailer@users.sourceforge.jp> Index: julius4/libsent/src/voca/voca_malloc.c diff -u julius4/libsent/src/voca/voca_malloc.c:1.5 julius4/libsent/src/voca/voca_malloc.c:1.6 --- julius4/libsent/src/voca/voca_malloc.c:1.5 Wed Jul 18 18:42:38 2012 +++ julius4/libsent/src/voca/voca_malloc.c Thu Jul 19 09:58:52 2012 @@ -12,7 +12,7 @@ * @author Akinobu LEE * @date Fri Feb 18 21:33:29 2005 * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * */ /* @@ -40,14 +40,14 @@ new->mroot = NULL; new->work = NULL; - winfo->wname = NULL; - winfo->woutput = NULL; - winfo->wlen = NULL; - winfo->wton = NULL; + new->wname = NULL; + new->woutput = NULL; + new->wlen = NULL; + new->wton = NULL; #ifdef CLASS_NGRAM - winfo->cprob = NULL; + new->cprob = NULL; #endif - winfo->is_transparent = NULL; + new->is_transparent = NULL; return(new); } From sumomo ¡÷ users.sourceforge.jp Thu Jul 19 10:48:49 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Thu, 19 Jul 2012 10:48:49 +0900 Subject: [Julius-cvs 727] CVS update: julius4 Message-ID: <1342662529.070353.10633.nullmailer@users.sourceforge.jp> Index: julius4/Release-ja.txt diff -u julius4/Release-ja.txt:1.16 julius4/Release-ja.txt:1.17 --- julius4/Release-ja.txt:1.16 Thu Jul 19 09:58:51 2012 +++ julius4/Release-ja.txt Thu Jul 19 10:48:48 2012 @@ -1,15 +1,13 @@ -4.2.1.1 - - -Fix error on reading binary N-gram when compiled with "--enable-words-int" - -Fix occasional segfault caused by a memory leak in search handling. - -Fix incorrect handling of backslash character in Win32 file path. - -Fix segfault when reading an errorous word dictionary. +4.2.2 (2012.08.01) +================== +???_ +- Flex ?????????????????????? +- "--enable-words-int" ???????o??? N-gram ???????????+- Windows ???? jconf ??????????????????????????+- ????????Ž«????????segfault ????????+- ?????? segfault ???????? 4.2.1 (2011.12.25) Index: julius4/Release.txt diff -u julius4/Release.txt:1.15 julius4/Release.txt:1.16 --- julius4/Release.txt:1.15 Sun Dec 4 15:35:00 2011 +++ julius4/Release.txt Thu Jul 19 10:48:48 2012 @@ -1,3 +1,14 @@ +4.2.2 (2012.08.01) +================== + +Fixes: +- Now can be compiled without flex library +- Fix failure of reading binary N-gram when compiled with "--enable-words-int" +- Fix incorrect handling of file paths with backslash in jconf file at Windows +- Fix segfault when reading an errorous word dictionary. +- Fix occasional segfault which may occur while search. + + 4.2.1 (2011.12.25) =================== From sumomo ¡÷ users.sourceforge.jp Thu Jul 19 10:48:49 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Thu, 19 Jul 2012 10:48:49 +0900 Subject: [Julius-cvs 728] CVS update: julius4/gramtools Message-ID: <1342662529.145479.10644.nullmailer@users.sourceforge.jp> Index: julius4/gramtools/configure diff -u julius4/gramtools/configure:1.3 julius4/gramtools/configure:1.4 --- julius4/gramtools/configure:1.3 Fri Apr 29 11:01:55 2011 +++ julius4/gramtools/configure Thu Jul 19 10:48:49 2012 @@ -1130,58 +1130,10 @@ { echo "configure: error: perl not found! installation terminated" 1>&2; exit 1; } fi -echo $ac_n "checking for yywrap in -lfl""... $ac_c" 1>&6 -echo "configure:1135: checking for yywrap in -lfl" >&5 -ac_lib_var=`echo fl'_'yywrap | sed 'y%./+-%__p_%'` -if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 -else - ac_save_LIBS="$LIBS" -LIBS="-lfl $LIBS" -cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then - rm -rf conftest* - eval "ac_cv_lib_$ac_lib_var=yes" -else - echo "configure: failed program was:" >&5 - cat conftest.$ac_ext >&5 - rm -rf conftest* - eval "ac_cv_lib_$ac_lib_var=no" -fi -rm -f conftest* -LIBS="$ac_save_LIBS" - -fi -if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then - echo "$ac_t""yes" 1>&6 - ac_tr_lib=HAVE_LIB`echo fl | sed -e 's/[^a-zA-Z0-9_]/_/g' \ - -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'` - cat >> confdefs.h <&6 -{ echo "configure: error: flex library not found! installation terminated" 1>&2; exit 1; } -fi - # Extract the first word of "iconv", so it can be a program name with args. set dummy iconv; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1185: checking for $ac_word" >&5 +echo "configure:1137: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_ICONV'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1217,7 +1169,7 @@ echo "configure: warning: no iconv, gram2sapixml.pl may not work" 1>&2 else echo $ac_n "checking for Jcode module in perl""... $ac_c" 1>&6 -echo "configure:1221: checking for Jcode module in perl" >&5 +echo "configure:1173: checking for Jcode module in perl" >&5 if $PERL -mJcode -e "print;"; then echo "$ac_t""yes" 1>&6 else @@ -1228,17 +1180,17 @@ READLINE_LIBS="" ac_safe=`echo "readline/readline.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for readline/readline.h""... $ac_c" 1>&6 -echo "configure:1232: checking for readline/readline.h" >&5 +echo "configure:1184: checking for readline/readline.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1242: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1194: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -1255,7 +1207,7 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 echo $ac_n "checking for readline in -lreadline""... $ac_c" 1>&6 -echo "configure:1259: checking for readline in -lreadline" >&5 +echo "configure:1211: checking for readline in -lreadline" >&5 ac_lib_var=`echo readline'_'readline | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -1263,7 +1215,7 @@ ac_save_LIBS="$LIBS" LIBS="-lreadline $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1230: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -1294,11 +1246,11 @@ else echo "$ac_t""no" 1>&6 echo $ac_n "checking for readline in -lreadline with -ltermcap""... $ac_c" 1>&6 -echo "configure:1298: checking for readline in -lreadline with -ltermcap" >&5 +echo "configure:1250: checking for readline in -lreadline with -ltermcap" >&5 ac_save_LIBS="$LIBS" LIBS="$ac_save_LIBS -lreadline -ltermcap" cat > conftest.$ac_ext < #include @@ -1306,7 +1258,7 @@ readline(""); ; return 0; } EOF -if { (eval echo configure:1310: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1262: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* echo "$ac_t""yes" 1>&6 READLINE_LIBS="-lreadline -ltermcap" @@ -1318,10 +1270,10 @@ rm -rf conftest* echo "$ac_t""no" 1>&6 echo $ac_n "checking for readline in -lreadline with -lncurses""... $ac_c" 1>&6 -echo "configure:1322: checking for readline in -lreadline with -lncurses" >&5 +echo "configure:1274: checking for readline in -lreadline with -lncurses" >&5 LIBS="$ac_save_LIBS -lreadline -lncurses" cat > conftest.$ac_ext < #include @@ -1329,7 +1281,7 @@ readline(""); ; return 0; } EOF -if { (eval echo configure:1333: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1285: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* echo "$ac_t""yes" 1>&6 READLINE_LIBS="-lreadline -lncurses" @@ -1362,9 +1314,9 @@ EOF echo $ac_n "checking for readline verion > 4.1""... $ac_c" 1>&6 -echo "configure:1366: checking for readline verion > 4.1" >&5 +echo "configure:1318: checking for readline verion > 4.1" >&5 cat > conftest.$ac_ext < EOF @@ -1390,17 +1342,17 @@ do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:1394: checking for $ac_hdr" >&5 +echo "configure:1346: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1404: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1356: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* Index: julius4/gramtools/configure.in diff -u julius4/gramtools/configure.in:1.4 julius4/gramtools/configure.in:1.5 --- julius4/gramtools/configure.in:1.4 Fri Apr 29 10:57:19 2011 +++ julius4/gramtools/configure.in Thu Jul 19 10:48:49 2012 @@ -57,7 +57,6 @@ dnl if test -z "$FLEX"; then dnl AC_MSG_ERROR([flex not found! installation terminated]) dnl fi -AC_CHECK_LIB(fl, yywrap,,AC_MSG_ERROR([flex library not found! installation terminated])) AC_PATH_PROG(ICONV,iconv) if test -z "$ICONV"; then AC_MSG_WARN([no iconv, gram2sapixml.pl may not work]) From sumomo ¡÷ users.sourceforge.jp Thu Jul 19 10:48:49 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Thu, 19 Jul 2012 10:48:49 +0900 Subject: [Julius-cvs 729] CVS update: julius4/gramtools/mkdfa/mkfa-1.44-flex Message-ID: <1342662529.224781.10653.nullmailer@users.sourceforge.jp> Index: julius4/gramtools/mkdfa/mkfa-1.44-flex/lex.yy.c diff -u julius4/gramtools/mkdfa/mkfa-1.44-flex/lex.yy.c:1.4 julius4/gramtools/mkdfa/mkfa-1.44-flex/lex.yy.c:1.5 --- julius4/gramtools/mkdfa/mkfa-1.44-flex/lex.yy.c:1.4 Fri Apr 29 14:09:13 2011 +++ julius4/gramtools/mkdfa/mkfa-1.44-flex/lex.yy.c Thu Jul 19 10:48:49 2012 @@ -8,7 +8,7 @@ /* A lexical scanner generated by flex */ /* Scanner skeleton version: - * $Header: /cvsroot/julius/julius4/gramtools/mkdfa/mkfa-1.44-flex/lex.yy.c,v 1.4 2011/04/29 05:09:13 sumomo Exp $ + * $Header: /cvsroot/julius/julius4/gramtools/mkdfa/mkfa-1.44-flex/lex.yy.c,v 1.5 2012/07/19 01:48:49 sumomo Exp $ */ #define FLEX_SCANNER @@ -77,6 +77,10 @@ #define YY_PROTO(proto) () #endif + +#define YY_SKIP_YYWRAP +int yywrap(void){ return 1; } + /* Returned upon end-of-file. */ #define YY_NULL 0 From sumomo ¡÷ users.sourceforge.jp Thu Jul 19 11:22:56 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Thu, 19 Jul 2012 11:22:56 +0900 Subject: [Julius-cvs 730] CVS update: julius4 Message-ID: <1342664576.142993.26196.nullmailer@users.sourceforge.jp> Index: julius4/00readme-ja.txt diff -u julius4/00readme-ja.txt:1.15 julius4/00readme-ja.txt:1.16 --- julius4/00readme-ja.txt:1.15 Sat Dec 24 09:39:20 2011 +++ julius4/00readme-ja.txt Thu Jul 19 11:22:55 2012 @@ -4,6 +4,7 @@ Julius + (Rev 4.2.2 2012/08/01) (Rev 4.2.1 2011/12/25) (Rev 4.2 2011/05/01) (Rev 4.1.5 2010/06/04) @@ -35,12 +36,14 @@ http://julius.sourceforge.jp/ -Julius-4.2.1 +Julius-4.2.2 ============= -????? 4.2.1 ??????????[????C0 ? CMN ?????? -???A????????????????B?????????????? -????????????????? +????? 4.2.2 ??????????[???? +????????????????B +?????????? (mkfa) ? flex ??????????????? +??????????????flex ????????????????? +????????????????? ??????????Release-ja.txt ???????? Index: julius4/00readme.txt diff -u julius4/00readme.txt:1.13 julius4/00readme.txt:1.14 --- julius4/00readme.txt:1.13 Sun Dec 4 15:35:00 2011 +++ julius4/00readme.txt Thu Jul 19 11:22:55 2012 @@ -4,6 +4,7 @@ Julius + (Rev 4.2.2 2012/08/01) (Rev 4.2.1 2011/12/25) (Rev 4.2 2011/05/01) (Rev 4.1.5 2010/06/04) @@ -47,17 +48,17 @@ together with source codes. -What's new in Julius-4.2.1 +What's new in Julius-4.2.2 =========================== -Version 4.2.1 is a bug fix release. Many bugs has been fixed, -especially the C0 handling with CMN. Additionary, per-word insertion -penalty at grammar is newly supported. +Version 4.2.2 is a bug fix release. Several bugs has been fixed. The +grammar compiler (mkfa) now does not link flex library, so you can +compile without flex. See the "Release.txt" file for the full list of updates. -Contents of Julius-4.2.1 +Contents of Julius-4.2.2 ========================= (Documents with suffix "ja" are written in Japanese) From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 12:17:19 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 12:17:19 +0900 Subject: [Julius-cvs 731] CVS update: julius4 Message-ID: <1343359039.963976.11764.nullmailer@users.sourceforge.jp> Index: julius4/LICENSE.txt diff -u julius4/LICENSE.txt:1.7 julius4/LICENSE.txt:1.8 --- julius4/LICENSE.txt:1.7 Sat Apr 30 01:49:49 2011 +++ julius4/LICENSE.txt Fri Jul 27 12:17:19 2012 @@ -57,12 +57,12 @@ ??????????????A???????????????????? ??????????????ŽÒ???????????????????? ?????????????????????X????ŽÒŽ©??????? -??????????????????R???????????????? -?????????????????????????????????? -?????????????????????????????ŽÒ????? -??Q??????????????????????????Ž¸?????? -???????????????????àê??????????????? -??????????????????????????B +??????????????????????`???????????? +???????s?????????????????????????? +??????????????????????????????????ŽÒ +???????Q??????????????????????????Ž¸ +?????????????????????????àê????????? +????????????????????????????????B 5. ?????????????????????????@??????? ??????R????????????B @@ -151,9 +151,9 @@ other user of the Software hereby acknowledge that the Software is licensed without any warranty or guaranty, and assume all risks arising out of the absence of any warranty or guaranty. In the event -the terms and conditions of this license are inconsistent with the -obligations imposed upon you by judgment of a court or for any other -reason, you may not use the Software. +that obligations imposed upon you by judgment of a court would make it +impossible for you to comply with the conditions of this license, you +may not use the Software. The Licensers shall not have any liability to you or to any third party for damages or liabilities of any nature whatsoever arising out From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:48 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:48 +0900 Subject: [Julius-cvs 732] CVS update: julius4 Message-ID: <1343378688.156273.23552.nullmailer@users.sourceforge.jp> Index: julius4/00readme-ja.txt diff -u julius4/00readme-ja.txt:1.16 julius4/00readme-ja.txt:1.17 --- julius4/00readme-ja.txt:1.16 Thu Jul 19 11:22:55 2012 +++ julius4/00readme-ja.txt Fri Jul 27 17:44:47 2012 @@ -16,10 +16,10 @@ (Rev 2.0 1999/02/20) (Rev 1.0 1998/02/20) - Copyright (c) 1991-2011 ???? ????Žº + Copyright (c) 1991-2012 ???? ????Žº Copyright (c) 1997-2000 ????U?????(IPA) Copyright (c) 2000-2005 ?????????w??? Ž­???Žº - Copyright (c) 2005-2011 ??????? Julius????? + Copyright (c) 2005-2012 ??????? Julius????? All rights reserved ====================================================================== Index: julius4/00readme.txt diff -u julius4/00readme.txt:1.14 julius4/00readme.txt:1.15 --- julius4/00readme.txt:1.14 Thu Jul 19 11:22:55 2012 +++ julius4/00readme.txt Fri Jul 27 17:44:47 2012 @@ -16,10 +16,10 @@ (Rev 2.0 1999/02/20) (Rev 1.0 1998/02/20) - Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + Copyright (c) 1991-2012 Kawahara Lab., Kyoto University Copyright (c) 1997-2000 Information-technology Promotion Agency, Japan Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology All rights reserved ====================================================================== Index: julius4/LICENSE.txt diff -u julius4/LICENSE.txt:1.8 julius4/LICENSE.txt:1.9 --- julius4/LICENSE.txt:1.8 Fri Jul 27 12:17:19 2012 +++ julius4/LICENSE.txt Fri Jul 27 17:44:47 2012 @@ -3,10 +3,10 @@ ?????????Ž¯???? Julius? ????? - Copyright (c) 1991-2011 ???? ????Žº + Copyright (c) 1991-2012 ???? ????Žº Copyright (c) 1997-2000 ????U?????(IPA) Copyright (c) 2000-2005 ?????????w??? Ž­???Žº - Copyright (c) 2005-2011 ??????? Julius????? + Copyright (c) 2005-2012 ??????? Julius????? ---------------------------------------------------------------------------- @@ -40,10 +40,10 @@ ???????Ž¦?????????????? ? - Copyright (c) 1991-2011 ???? ????Žº + Copyright (c) 1991-2012 ???? ????Žº Copyright (c) 1997-2000 ????U?????(IPA) Copyright (c) 2000-2005 ?????????w??? Ž­???Žº - Copyright (c) 2005-2011 ??????? Julius????? + Copyright (c) 2005-2012 ??????? Julius????? 3. ???????????????????????????????? ?????????Ž¯???? Julius????????????????? @@ -79,10 +79,10 @@ Large Vocabulary Continuous Speech Recognition Engine Julius - Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + Copyright (c) 1991-2012 Kawahara Lab., Kyoto University Copyright (c) 1997-2000 Information-technology Promotion Agency, Japan Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology "Large Vocabulary Continuous Speech Recognition Engine Julius", including Julian, is being developed at Kawahara Lab., Kyoto @@ -129,10 +129,10 @@ Form of copyright notice: - Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + Copyright (c) 1991-2012 Kawahara Lab., Kyoto University Copyright (c) 1997-2000 Information-technology Promotion Agency, Japan Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology 3. When you publish or present any results by using the Software, you must explicitly mention your use of "Large Vocabulary Continuous Index: julius4/Makefile.in diff -u julius4/Makefile.in:1.4 julius4/Makefile.in:1.5 --- julius4/Makefile.in:1.4 Fri Apr 29 14:09:12 2011 +++ julius4/Makefile.in Fri Jul 27 17:44:47 2012 @@ -1,11 +1,11 @@ -# Copyright (c) 1991-2011 Kawahara Lab., Kyoto University +# Copyright (c) 1991-2012 Kawahara Lab., Kyoto University # Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology -# Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +# Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology # All rights reserved # # Makefile.in --- Makefile Template for configure # -# $Id: Makefile.in,v 1.4 2011/04/29 05:09:12 sumomo Exp $ +# $Id: Makefile.in,v 1.5 2012/07/27 08:44:47 sumomo Exp $ # SHELL=/bin/sh Index: julius4/configure.in diff -u julius4/configure.in:1.5 julius4/configure.in:1.6 --- julius4/configure.in:1.5 Fri Apr 29 10:57:19 2011 +++ julius4/configure.in Fri Jul 27 17:44:47 2012 @@ -1,9 +1,9 @@ -dnl Copyright (c) 1991-2011 Kawahara Lab., Kyoto University +dnl Copyright (c) 1991-2012 Kawahara Lab., Kyoto University dnl Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology -dnl Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +dnl Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology dnl All rights reserved dnl -dnl $Id: configure.in,v 1.5 2011/04/29 01:57:19 sumomo Exp $ +dnl $Id: configure.in,v 1.6 2012/07/27 08:44:47 sumomo Exp $ dnl AC_INIT(Sample.jconf) AC_CONFIG_AUX_DIR(support) From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:48 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:48 +0900 Subject: [Julius-cvs 733] CVS update: julius4/gramtools/generate Message-ID: <1343378688.805802.23645.nullmailer@users.sourceforge.jp> Index: julius4/gramtools/generate/Makefile.in diff -u julius4/gramtools/generate/Makefile.in:1.6 julius4/gramtools/generate/Makefile.in:1.7 --- julius4/gramtools/generate/Makefile.in:1.6 Fri Apr 29 14:09:13 2011 +++ julius4/gramtools/generate/Makefile.in Fri Jul 27 17:44:48 2012 @@ -1,6 +1,6 @@ -# Copyright (c) 1991-2011 Kawahara Lab., Kyoto University +# Copyright (c) 1991-2012 Kawahara Lab., Kyoto University # Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology -# Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +# Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology # All rights reserved SHELL=/bin/sh Index: julius4/gramtools/generate/common.h diff -u julius4/gramtools/generate/common.h:1.3 julius4/gramtools/generate/common.h:1.4 --- julius4/gramtools/generate/common.h:1.3 Fri Apr 29 14:09:13 2011 +++ julius4/gramtools/generate/common.h Fri Jul 27 17:44:48 2012 @@ -1,7 +1,7 @@ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/gramtools/generate/gen_next.c diff -u julius4/gramtools/generate/gen_next.c:1.3 julius4/gramtools/generate/gen_next.c:1.4 --- julius4/gramtools/generate/gen_next.c:1.3 Fri Apr 29 14:09:13 2011 +++ julius4/gramtools/generate/gen_next.c Fri Jul 27 17:44:48 2012 @@ -1,7 +1,7 @@ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/gramtools/generate/gen_next.h diff -u julius4/gramtools/generate/gen_next.h:1.3 julius4/gramtools/generate/gen_next.h:1.4 --- julius4/gramtools/generate/gen_next.h:1.3 Fri Apr 29 14:09:13 2011 +++ julius4/gramtools/generate/gen_next.h Fri Jul 27 17:44:48 2012 @@ -1,7 +1,7 @@ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/gramtools/generate/generate.c diff -u julius4/gramtools/generate/generate.c:1.4 julius4/gramtools/generate/generate.c:1.5 --- julius4/gramtools/generate/generate.c:1.4 Fri Apr 29 14:09:13 2011 +++ julius4/gramtools/generate/generate.c Fri Jul 27 17:44:48 2012 @@ -1,7 +1,7 @@ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/gramtools/generate/rdterm.c diff -u julius4/gramtools/generate/rdterm.c:1.3 julius4/gramtools/generate/rdterm.c:1.4 --- julius4/gramtools/generate/rdterm.c:1.3 Fri Apr 29 14:09:13 2011 +++ julius4/gramtools/generate/rdterm.c Fri Jul 27 17:44:48 2012 @@ -1,7 +1,7 @@ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:49 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:49 +0900 Subject: [Julius-cvs 734] CVS update: julius4/gramtools/mkdfa/mkfa-1.44-flex Message-ID: <1343378689.049558.23693.nullmailer@users.sourceforge.jp> Index: julius4/gramtools/mkdfa/mkfa-1.44-flex/Makefile.in diff -u julius4/gramtools/mkdfa/mkfa-1.44-flex/Makefile.in:1.4 julius4/gramtools/mkdfa/mkfa-1.44-flex/Makefile.in:1.5 --- julius4/gramtools/mkdfa/mkfa-1.44-flex/Makefile.in:1.4 Fri Apr 29 14:09:13 2011 +++ julius4/gramtools/mkdfa/mkfa-1.44-flex/Makefile.in Fri Jul 27 17:44:48 2012 @@ -1,6 +1,6 @@ -# Copyright (c) 1991-2011 Kawahara Lab., Kyoto University +# Copyright (c) 1991-2012 Kawahara Lab., Kyoto University # Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology -# Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +# Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology # All rights reserved ## Makefile for mkfa, DFA compiler Index: julius4/gramtools/mkdfa/mkfa-1.44-flex/dfa.c diff -u julius4/gramtools/mkdfa/mkfa-1.44-flex/dfa.c:1.4 julius4/gramtools/mkdfa/mkfa-1.44-flex/dfa.c:1.5 --- julius4/gramtools/mkdfa/mkfa-1.44-flex/dfa.c:1.4 Fri Apr 29 14:09:13 2011 +++ julius4/gramtools/mkdfa/mkfa-1.44-flex/dfa.c Fri Jul 27 17:44:48 2012 @@ -1,7 +1,7 @@ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ #include "mkfa.h" Index: julius4/gramtools/mkdfa/mkfa-1.44-flex/dfa.h diff -u julius4/gramtools/mkdfa/mkfa-1.44-flex/dfa.h:1.3 julius4/gramtools/mkdfa/mkfa-1.44-flex/dfa.h:1.4 --- julius4/gramtools/mkdfa/mkfa-1.44-flex/dfa.h:1.3 Fri Apr 29 14:09:13 2011 +++ julius4/gramtools/mkdfa/mkfa-1.44-flex/dfa.h Fri Jul 27 17:44:48 2012 @@ -1,7 +1,7 @@ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/gramtools/mkdfa/mkfa-1.44-flex/gram.y diff -u julius4/gramtools/mkdfa/mkfa-1.44-flex/gram.y:1.2 julius4/gramtools/mkdfa/mkfa-1.44-flex/gram.y:1.3 --- julius4/gramtools/mkdfa/mkfa-1.44-flex/gram.y:1.2 Fri Apr 29 10:57:20 2011 +++ julius4/gramtools/mkdfa/mkfa-1.44-flex/gram.y Fri Jul 27 17:44:48 2012 @@ -1,8 +1,8 @@ %{ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ #include "mkfa.h" Index: julius4/gramtools/mkdfa/mkfa-1.44-flex/lex.yy.c diff -u julius4/gramtools/mkdfa/mkfa-1.44-flex/lex.yy.c:1.5 julius4/gramtools/mkdfa/mkfa-1.44-flex/lex.yy.c:1.6 --- julius4/gramtools/mkdfa/mkfa-1.44-flex/lex.yy.c:1.5 Thu Jul 19 10:48:49 2012 +++ julius4/gramtools/mkdfa/mkfa-1.44-flex/lex.yy.c Fri Jul 27 17:44:48 2012 @@ -1,14 +1,14 @@ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ /* A lexical scanner generated by flex */ /* Scanner skeleton version: - * $Header: /cvsroot/julius/julius4/gramtools/mkdfa/mkfa-1.44-flex/lex.yy.c,v 1.5 2012/07/19 01:48:49 sumomo Exp $ + * $Header: /cvsroot/julius/julius4/gramtools/mkdfa/mkfa-1.44-flex/lex.yy.c,v 1.6 2012/07/27 08:44:48 sumomo Exp $ */ #define FLEX_SCANNER Index: julius4/gramtools/mkdfa/mkfa-1.44-flex/main.c diff -u julius4/gramtools/mkdfa/mkfa-1.44-flex/main.c:1.3 julius4/gramtools/mkdfa/mkfa-1.44-flex/main.c:1.4 --- julius4/gramtools/mkdfa/mkfa-1.44-flex/main.c:1.3 Fri Apr 29 14:09:13 2011 +++ julius4/gramtools/mkdfa/mkfa-1.44-flex/main.c Fri Jul 27 17:44:48 2012 @@ -1,7 +1,7 @@ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ #include "mkfa.h" Index: julius4/gramtools/mkdfa/mkfa-1.44-flex/mkfa.h diff -u julius4/gramtools/mkdfa/mkfa-1.44-flex/mkfa.h:1.3 julius4/gramtools/mkdfa/mkfa-1.44-flex/mkfa.h:1.4 --- julius4/gramtools/mkdfa/mkfa-1.44-flex/mkfa.h:1.3 Fri Apr 29 14:09:13 2011 +++ julius4/gramtools/mkdfa/mkfa-1.44-flex/mkfa.h Fri Jul 27 17:44:48 2012 @@ -1,7 +1,7 @@ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ #include Index: julius4/gramtools/mkdfa/mkfa-1.44-flex/nfa.c diff -u julius4/gramtools/mkdfa/mkfa-1.44-flex/nfa.c:1.3 julius4/gramtools/mkdfa/mkfa-1.44-flex/nfa.c:1.4 --- julius4/gramtools/mkdfa/mkfa-1.44-flex/nfa.c:1.3 Fri Apr 29 14:09:13 2011 +++ julius4/gramtools/mkdfa/mkfa-1.44-flex/nfa.c Fri Jul 27 17:44:48 2012 @@ -1,7 +1,7 @@ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ #include "mkfa.h" Index: julius4/gramtools/mkdfa/mkfa-1.44-flex/nfa.h diff -u julius4/gramtools/mkdfa/mkfa-1.44-flex/nfa.h:1.3 julius4/gramtools/mkdfa/mkfa-1.44-flex/nfa.h:1.4 --- julius4/gramtools/mkdfa/mkfa-1.44-flex/nfa.h:1.3 Fri Apr 29 14:09:13 2011 +++ julius4/gramtools/mkdfa/mkfa-1.44-flex/nfa.h Fri Jul 27 17:44:48 2012 @@ -1,7 +1,7 @@ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ void makeNFA( void ); Index: julius4/gramtools/mkdfa/mkfa-1.44-flex/triplet.c diff -u julius4/gramtools/mkdfa/mkfa-1.44-flex/triplet.c:1.4 julius4/gramtools/mkdfa/mkfa-1.44-flex/triplet.c:1.5 --- julius4/gramtools/mkdfa/mkfa-1.44-flex/triplet.c:1.4 Fri Apr 29 14:09:13 2011 +++ julius4/gramtools/mkdfa/mkfa-1.44-flex/triplet.c Fri Jul 27 17:44:48 2012 @@ -1,7 +1,7 @@ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ #include "mkfa.h" Index: julius4/gramtools/mkdfa/mkfa-1.44-flex/triplet.h diff -u julius4/gramtools/mkdfa/mkfa-1.44-flex/triplet.h:1.3 julius4/gramtools/mkdfa/mkfa-1.44-flex/triplet.h:1.4 --- julius4/gramtools/mkdfa/mkfa-1.44-flex/triplet.h:1.3 Fri Apr 29 14:09:13 2011 +++ julius4/gramtools/mkdfa/mkfa-1.44-flex/triplet.h Fri Jul 27 17:44:48 2012 @@ -1,7 +1,7 @@ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ void makeTriplet( void ); Index: julius4/gramtools/mkdfa/mkfa-1.44-flex/voca.c diff -u julius4/gramtools/mkdfa/mkfa-1.44-flex/voca.c:1.3 julius4/gramtools/mkdfa/mkfa-1.44-flex/voca.c:1.4 --- julius4/gramtools/mkdfa/mkfa-1.44-flex/voca.c:1.3 Fri Apr 29 14:09:13 2011 +++ julius4/gramtools/mkdfa/mkfa-1.44-flex/voca.c Fri Jul 27 17:44:48 2012 @@ -1,7 +1,7 @@ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ #include "mkfa.h" From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:49 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:49 +0900 Subject: [Julius-cvs 735] CVS update: julius4/gramtools/yomi2voca Message-ID: <1343378689.212158.23726.nullmailer@users.sourceforge.jp> Index: julius4/gramtools/yomi2voca/Makefile.in diff -u julius4/gramtools/yomi2voca/Makefile.in:1.3 julius4/gramtools/yomi2voca/Makefile.in:1.4 --- julius4/gramtools/yomi2voca/Makefile.in:1.3 Fri Apr 29 14:09:14 2011 +++ julius4/gramtools/yomi2voca/Makefile.in Fri Jul 27 17:44:49 2012 @@ -1,6 +1,6 @@ -# Copyright (c) 1991-2011 Kawahara Lab., Kyoto University +# Copyright (c) 1991-2012 Kawahara Lab., Kyoto University # Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology -# Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +# Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology # All rights reserved SHELL=/bin/sh Index: julius4/gramtools/yomi2voca/yomi2voca.pl.in diff -u julius4/gramtools/yomi2voca/yomi2voca.pl.in:1.4 julius4/gramtools/yomi2voca/yomi2voca.pl.in:1.5 --- julius4/gramtools/yomi2voca/yomi2voca.pl.in:1.4 Fri Apr 29 10:57:20 2011 +++ julius4/gramtools/yomi2voca/yomi2voca.pl.in Fri Jul 27 17:44:49 2012 @@ -1,7 +1,7 @@ #!@PERL@ -# Copyright (c) 1991-2011 Kawahara Lab., Kyoto University +# Copyright (c) 1991-2012 Kawahara Lab., Kyoto University # Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology -# Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +# Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology # All rights reserved # # @configure_input@ From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:58 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:58 +0900 Subject: [Julius-cvs 736] CVS update: julius4/msvc/SampleApp Message-ID: <1343378698.088618.24333.nullmailer@users.sourceforge.jp> Index: julius4/msvc/SampleApp/Julius.cpp diff -u julius4/msvc/SampleApp/Julius.cpp:1.8 julius4/msvc/SampleApp/Julius.cpp:1.9 --- julius4/msvc/SampleApp/Julius.cpp:1.8 Fri Apr 29 10:57:20 2011 +++ julius4/msvc/SampleApp/Julius.cpp Fri Jul 27 17:44:57 2012 @@ -2,7 +2,7 @@ * * cJulius: JuliusLib wrapper class for C++ * - * Copyright (c) 2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2011-2012 Julius project team, Nagoya Institute of Technology * All rights reserved * * This is a part of the Julius software. Index: julius4/msvc/SampleApp/Julius.h diff -u julius4/msvc/SampleApp/Julius.h:1.6 julius4/msvc/SampleApp/Julius.h:1.7 --- julius4/msvc/SampleApp/Julius.h:1.6 Sat Apr 30 01:49:49 2011 +++ julius4/msvc/SampleApp/Julius.h Fri Jul 27 17:44:58 2012 @@ -2,7 +2,7 @@ * * cJulius: JuliusLib wrapper class for C++ * - * Copyright (c) 2009-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2009-2012 Julius project team, Nagoya Institute of Technology * All rights reserved * * This is a part of the Julius software. From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:57 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:57 +0900 Subject: [Julius-cvs 737] CVS update: julius4/libsent/src/phmm Message-ID: <1343378697.353098.24208.nullmailer@users.sourceforge.jp> Index: julius4/libsent/src/phmm/addlog.c diff -u julius4/libsent/src/phmm/addlog.c:1.3 julius4/libsent/src/phmm/addlog.c:1.4 --- julius4/libsent/src/phmm/addlog.c:1.3 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/phmm/addlog.c Fri Jul 27 17:44:57 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Thu Feb 17 13:23:50 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/phmm/calc_mix.c diff -u julius4/libsent/src/phmm/calc_mix.c:1.5 julius4/libsent/src/phmm/calc_mix.c:1.6 --- julius4/libsent/src/phmm/calc_mix.c:1.5 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/phmm/calc_mix.c Fri Jul 27 17:44:57 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Thu Feb 17 14:18:52 2005 * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/phmm/calc_tied_mix.c diff -u julius4/libsent/src/phmm/calc_tied_mix.c:1.6 julius4/libsent/src/phmm/calc_tied_mix.c:1.7 --- julius4/libsent/src/phmm/calc_tied_mix.c:1.6 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/phmm/calc_tied_mix.c Fri Jul 27 17:44:57 2012 @@ -22,13 +22,13 @@ * @author Akinobu LEE * @date Thu Feb 17 14:22:44 2005 * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/phmm/gms.c diff -u julius4/libsent/src/phmm/gms.c:1.3 julius4/libsent/src/phmm/gms.c:1.4 --- julius4/libsent/src/phmm/gms.c:1.3 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/phmm/gms.c Fri Jul 27 17:44:57 2012 @@ -16,13 +16,13 @@ * @author Akinobu LEE * @date Thu Feb 17 14:52:18 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/phmm/gms_gprune.c diff -u julius4/libsent/src/phmm/gms_gprune.c:1.5 julius4/libsent/src/phmm/gms_gprune.c:1.6 --- julius4/libsent/src/phmm/gms_gprune.c:1.5 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/phmm/gms_gprune.c Fri Jul 27 17:44:57 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Thu Feb 17 15:05:08 2005 * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/phmm/gprune_beam.c diff -u julius4/libsent/src/phmm/gprune_beam.c:1.5 julius4/libsent/src/phmm/gprune_beam.c:1.6 --- julius4/libsent/src/phmm/gprune_beam.c:1.5 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/phmm/gprune_beam.c Fri Jul 27 17:44:57 2012 @@ -40,13 +40,13 @@ * @author Akinobu LEE * @date Thu Feb 17 03:27:53 2005 * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/phmm/gprune_common.c diff -u julius4/libsent/src/phmm/gprune_common.c:1.3 julius4/libsent/src/phmm/gprune_common.c:1.4 --- julius4/libsent/src/phmm/gprune_common.c:1.3 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/phmm/gprune_common.c Fri Jul 27 17:44:57 2012 @@ -19,13 +19,13 @@ * @author Akinobu LEE * @date Fri Feb 18 18:10:58 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/phmm/gprune_heu.c diff -u julius4/libsent/src/phmm/gprune_heu.c:1.5 julius4/libsent/src/phmm/gprune_heu.c:1.6 --- julius4/libsent/src/phmm/gprune_heu.c:1.5 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/phmm/gprune_heu.c Fri Jul 27 17:44:57 2012 @@ -38,13 +38,13 @@ * @author Akinobu LEE * @date Thu Feb 17 05:44:52 2005 * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/phmm/gprune_none.c diff -u julius4/libsent/src/phmm/gprune_none.c:1.5 julius4/libsent/src/phmm/gprune_none.c:1.6 --- julius4/libsent/src/phmm/gprune_none.c:1.5 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/phmm/gprune_none.c Fri Jul 27 17:44:57 2012 @@ -30,13 +30,13 @@ * @author Akinobu LEE * @date Thu Feb 17 05:09:46 2005 * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/phmm/gprune_safe.c diff -u julius4/libsent/src/phmm/gprune_safe.c:1.5 julius4/libsent/src/phmm/gprune_safe.c:1.6 --- julius4/libsent/src/phmm/gprune_safe.c:1.5 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/phmm/gprune_safe.c Fri Jul 27 17:44:57 2012 @@ -39,20 +39,20 @@ * @author Akinobu LEE * @date Thu Feb 17 05:28:12 2005 * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ /* gprune_safe.c --- calculate probability of Gaussian densities */ /* with Gaussian pruning (safe) */ -/* $Id: gprune_safe.c,v 1.5 2011/04/29 05:09:17 sumomo Exp $ */ +/* $Id: gprune_safe.c,v 1.6 2012/07/27 08:44:57 sumomo Exp $ */ #include #include Index: julius4/libsent/src/phmm/mkwhmm.c diff -u julius4/libsent/src/phmm/mkwhmm.c:1.4 julius4/libsent/src/phmm/mkwhmm.c:1.5 --- julius4/libsent/src/phmm/mkwhmm.c:1.4 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/phmm/mkwhmm.c Fri Jul 27 17:44:57 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Fri Feb 18 18:31:40 2005 * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/phmm/outprob.c diff -u julius4/libsent/src/phmm/outprob.c:1.4 julius4/libsent/src/phmm/outprob.c:1.5 --- julius4/libsent/src/phmm/outprob.c:1.4 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/phmm/outprob.c Fri Jul 27 17:44:57 2012 @@ -46,13 +46,13 @@ * @author Akinobu LEE * @date Fri Feb 18 18:45:21 2005 * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/phmm/outprob_init.c diff -u julius4/libsent/src/phmm/outprob_init.c:1.5 julius4/libsent/src/phmm/outprob_init.c:1.6 --- julius4/libsent/src/phmm/outprob_init.c:1.5 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/phmm/outprob_init.c Fri Jul 27 17:44:57 2012 @@ -34,13 +34,13 @@ * @author Akinobu LEE * @date Thu Feb 17 13:35:37 2005 * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/phmm/vsegment.c diff -u julius4/libsent/src/phmm/vsegment.c:1.3 julius4/libsent/src/phmm/vsegment.c:1.4 --- julius4/libsent/src/phmm/vsegment.c:1.3 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/phmm/vsegment.c Fri Jul 27 17:44:57 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Fri Feb 18 19:29:22 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:48 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:48 +0900 Subject: [Julius-cvs 738] CVS update: julius4/gramtools/dfa_minimize Message-ID: <1343378688.721378.23627.nullmailer@users.sourceforge.jp> Index: julius4/gramtools/dfa_minimize/Makefile.in diff -u julius4/gramtools/dfa_minimize/Makefile.in:1.6 julius4/gramtools/dfa_minimize/Makefile.in:1.7 --- julius4/gramtools/dfa_minimize/Makefile.in:1.6 Fri Apr 29 14:09:13 2011 +++ julius4/gramtools/dfa_minimize/Makefile.in Fri Jul 27 17:44:48 2012 @@ -1,6 +1,6 @@ -# Copyright (c) 1991-2011 Kawahara Lab., Kyoto University +# Copyright (c) 1991-2012 Kawahara Lab., Kyoto University # Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology -# Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +# Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology # All rights reserved SHELL=/bin/sh Index: julius4/gramtools/dfa_minimize/dfa_minimize.c diff -u julius4/gramtools/dfa_minimize/dfa_minimize.c:1.3 julius4/gramtools/dfa_minimize/dfa_minimize.c:1.4 --- julius4/gramtools/dfa_minimize/dfa_minimize.c:1.3 Fri Apr 29 14:09:13 2011 +++ julius4/gramtools/dfa_minimize/dfa_minimize.c Fri Jul 27 17:44:48 2012 @@ -6,12 +6,12 @@ * @author Akinobu Lee * @date Wed Oct 4 17:42:16 2006 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 2006-2011 Kawahara Lab., Kyoto University - * Copyright (c) 2006-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2006-2012 Kawahara Lab., Kyoto University + * Copyright (c) 2006-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:49 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:49 +0900 Subject: [Julius-cvs 739] CVS update: julius4/julius Message-ID: <1343378689.495100.23791.nullmailer@users.sourceforge.jp> Index: julius4/julius/Makefile.in diff -u julius4/julius/Makefile.in:1.9 julius4/julius/Makefile.in:1.10 --- julius4/julius/Makefile.in:1.9 Fri Apr 29 14:09:14 2011 +++ julius4/julius/Makefile.in Fri Jul 27 17:44:49 2012 @@ -1,11 +1,11 @@ -# Copyright (c) 1991-2011 Kawahara Lab., Kyoto University +# Copyright (c) 1991-2012 Kawahara Lab., Kyoto University # Copyright (c) 1997-2000 Information-technology Promotion Agency, Japan # Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology -# Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +# Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology # All rights reserved # -# $Id: Makefile.in,v 1.9 2011/04/29 05:09:14 sumomo Exp $ +# $Id: Makefile.in,v 1.10 2012/07/27 08:44:49 sumomo Exp $ # SHELL=/bin/sh .SUFFIXES: Index: julius4/julius/charconv.c diff -u julius4/julius/charconv.c:1.3 julius4/julius/charconv.c:1.4 --- julius4/julius/charconv.c:1.3 Fri Apr 29 14:09:14 2011 +++ julius4/julius/charconv.c Fri Jul 27 17:44:49 2012 @@ -19,13 +19,13 @@ * @author Akinobu LEE * @date Thu Feb 17 16:02:41 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/julius/charconv_iconv.c diff -u julius4/julius/charconv_iconv.c:1.4 julius4/julius/charconv_iconv.c:1.5 --- julius4/julius/charconv_iconv.c:1.4 Fri Apr 29 14:09:14 2011 +++ julius4/julius/charconv_iconv.c Fri Jul 27 17:44:49 2012 @@ -14,13 +14,13 @@ * @author Akinobu LEE * @date Thu Feb 17 16:02:41 2005 * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/julius/charconv_libjcode.c diff -u julius4/julius/charconv_libjcode.c:1.3 julius4/julius/charconv_libjcode.c:1.4 --- julius4/julius/charconv_libjcode.c:1.3 Fri Apr 29 14:09:14 2011 +++ julius4/julius/charconv_libjcode.c Fri Jul 27 17:44:49 2012 @@ -19,13 +19,13 @@ * @author Akinobu LEE * @date Thu Feb 17 16:02:41 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/julius/charconv_win32.c diff -u julius4/julius/charconv_win32.c:1.4 julius4/julius/charconv_win32.c:1.5 --- julius4/julius/charconv_win32.c:1.4 Fri Apr 29 14:09:14 2011 +++ julius4/julius/charconv_win32.c Fri Jul 27 17:44:49 2012 @@ -29,13 +29,13 @@ * @author Akinobu LEE * @date Thu Feb 17 16:02:41 2005 * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/julius/configure.in diff -u julius4/julius/configure.in:1.6 julius4/julius/configure.in:1.7 --- julius4/julius/configure.in:1.6 Fri Apr 29 10:57:20 2011 +++ julius4/julius/configure.in Fri Jul 27 17:44:49 2012 @@ -1,10 +1,10 @@ -dnl Copyright (c) 1991-2011 Kawahara Lab., Kyoto University +dnl Copyright (c) 1991-2012 Kawahara Lab., Kyoto University dnl Copyright (c) 1997-2000 Information-technology Promotion Agency, Japan dnl Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology -dnl Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +dnl Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology dnl All rights reserved dnl -dnl $Id: configure.in,v 1.6 2011/04/29 01:57:20 sumomo Exp $ +dnl $Id: configure.in,v 1.7 2012/07/27 08:44:49 sumomo Exp $ dnl AC_INIT(main.c) Index: julius4/julius/main.c diff -u julius4/julius/main.c:1.4 julius4/julius/main.c:1.5 --- julius4/julius/main.c:1.4 Fri Apr 29 14:09:14 2011 +++ julius4/julius/main.c Fri Jul 27 17:44:49 2012 @@ -12,14 +12,14 @@ * @author Akinobu Lee * @date Wed May 18 15:02:55 2005 * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 1997-2000 Information-technology Promotion Agency, Japan * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/julius/output_file.c diff -u julius4/julius/output_file.c:1.3 julius4/julius/output_file.c:1.4 --- julius4/julius/output_file.c:1.3 Fri Apr 29 14:09:14 2011 +++ julius4/julius/output_file.c Fri Jul 27 17:44:49 2012 @@ -12,13 +12,13 @@ * @author Akinobu Lee * @date Wed Dec 12 11:07:46 2007 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/julius/output_module.c diff -u julius4/julius/output_module.c:1.7 julius4/julius/output_module.c:1.8 --- julius4/julius/output_module.c:1.7 Fri Apr 29 14:09:14 2011 +++ julius4/julius/output_module.c Fri Jul 27 17:44:49 2012 @@ -12,13 +12,13 @@ * @author Akinobu Lee * @date Tue Sep 06 14:46:49 2005 * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/julius/output_stdout.c diff -u julius4/julius/output_stdout.c:1.9 julius4/julius/output_stdout.c:1.10 --- julius4/julius/output_stdout.c:1.9 Thu Jul 28 16:11:35 2011 +++ julius4/julius/output_stdout.c Fri Jul 27 17:44:49 2012 @@ -12,13 +12,13 @@ * @author Akinobu Lee * @date Tue Sep 06 17:18:46 2005 * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/julius/recogloop.c diff -u julius4/julius/recogloop.c:1.4 julius4/julius/recogloop.c:1.5 --- julius4/julius/recogloop.c:1.4 Fri Apr 29 14:09:14 2011 +++ julius4/julius/recogloop.c Fri Jul 27 17:44:49 2012 @@ -12,14 +12,14 @@ * @author Akinobu Lee * @date Sun Sep 02 21:12:52 2007 * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 1997-2000 Information-technology Promotion Agency, Japan * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/julius/record.c diff -u julius4/julius/record.c:1.5 julius4/julius/record.c:1.6 --- julius4/julius/record.c:1.5 Fri Apr 29 14:09:14 2011 +++ julius4/julius/record.c Fri Jul 27 17:44:49 2012 @@ -29,13 +29,13 @@ * @author Akinobu Lee * @date Tue Sep 06 14:13:54 2005 * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/julius/visual.c diff -u julius4/julius/visual.c:1.3 julius4/julius/visual.c:1.4 --- julius4/julius/visual.c:1.3 Fri Apr 29 14:09:14 2011 +++ julius4/julius/visual.c Fri Jul 27 17:44:49 2012 @@ -21,12 +21,12 @@ * @author Akinobu Lee * @date Mon Sep 12 01:49:44 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* * Copyright (c) 2003-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:48 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:48 +0900 Subject: [Julius-cvs 740] CVS update: julius4/gramtools/dfa_determinize Message-ID: <1343378688.652453.23617.nullmailer@users.sourceforge.jp> Index: julius4/gramtools/dfa_determinize/Makefile.in diff -u julius4/gramtools/dfa_determinize/Makefile.in:1.6 julius4/gramtools/dfa_determinize/Makefile.in:1.7 --- julius4/gramtools/dfa_determinize/Makefile.in:1.6 Fri Apr 29 14:09:13 2011 +++ julius4/gramtools/dfa_determinize/Makefile.in Fri Jul 27 17:44:48 2012 @@ -1,6 +1,6 @@ -# Copyright (c) 1991-2011 Kawahara Lab., Kyoto University +# Copyright (c) 1991-2012 Kawahara Lab., Kyoto University # Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology -# Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +# Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology # All rights reserved SHELL=/bin/sh Index: julius4/gramtools/dfa_determinize/dfa_determinize.c diff -u julius4/gramtools/dfa_determinize/dfa_determinize.c:1.3 julius4/gramtools/dfa_determinize/dfa_determinize.c:1.4 --- julius4/gramtools/dfa_determinize/dfa_determinize.c:1.3 Fri Apr 29 14:09:13 2011 +++ julius4/gramtools/dfa_determinize/dfa_determinize.c Fri Jul 27 17:44:48 2012 @@ -6,12 +6,12 @@ * @author Akinobu Lee * @date Wed Oct 4 17:42:16 2006 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 2006-2011 Kawahara Lab., Kyoto University - * Copyright (c) 2006-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2006-2012 Kawahara Lab., Kyoto University + * Copyright (c) 2006-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ #include From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:48 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:48 +0900 Subject: [Julius-cvs 741] CVS update: julius4/gramtools Message-ID: <1343378688.494409.23592.nullmailer@users.sourceforge.jp> Index: julius4/gramtools/Makefile.in diff -u julius4/gramtools/Makefile.in:1.4 julius4/gramtools/Makefile.in:1.5 --- julius4/gramtools/Makefile.in:1.4 Fri Apr 29 14:09:13 2011 +++ julius4/gramtools/Makefile.in Fri Jul 27 17:44:48 2012 @@ -1,10 +1,10 @@ -# Copyright (c) 1991-2011 Kawahara Lab., Kyoto University +# Copyright (c) 1991-2012 Kawahara Lab., Kyoto University # Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology -# Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +# Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology # All rights reserved # -# $Id: Makefile.in,v 1.4 2011/04/29 05:09:13 sumomo Exp $ +# $Id: Makefile.in,v 1.5 2012/07/27 08:44:48 sumomo Exp $ # SHELL=/bin/sh RM=@RM@ -f Index: julius4/gramtools/configure.in diff -u julius4/gramtools/configure.in:1.5 julius4/gramtools/configure.in:1.6 --- julius4/gramtools/configure.in:1.5 Thu Jul 19 10:48:49 2012 +++ julius4/gramtools/configure.in Fri Jul 27 17:44:48 2012 @@ -1,6 +1,6 @@ -dnl Copyright (c) 1991-2011 Kawahara Lab., Kyoto University +dnl Copyright (c) 1991-2012 Kawahara Lab., Kyoto University dnl Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology -dnl Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +dnl Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology dnl All rights reserved AC_INIT(00readme.txt) From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:48 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:48 +0900 Subject: [Julius-cvs 742] CVS update: julius4/adintool Message-ID: <1343378688.351310.23574.nullmailer@users.sourceforge.jp> Index: julius4/adintool/Makefile.in diff -u julius4/adintool/Makefile.in:1.6 julius4/adintool/Makefile.in:1.7 --- julius4/adintool/Makefile.in:1.6 Fri Apr 29 14:09:13 2011 +++ julius4/adintool/Makefile.in Fri Jul 27 17:44:48 2012 @@ -1,9 +1,9 @@ -# Copyright (c) 1991-2011 Kawahara Lab., Kyoto University +# Copyright (c) 1991-2012 Kawahara Lab., Kyoto University # Copyright (c) 2001-2005 Shikano Lab., Nara Institute of Science and Technology -# Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +# Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology # All rights reserved # -# $Id: Makefile.in,v 1.6 2011/04/29 05:09:13 sumomo Exp $ +# $Id: Makefile.in,v 1.7 2012/07/27 08:44:48 sumomo Exp $ # SHELL=/bin/sh .SUFFIXES: Index: julius4/adintool/adintool.c diff -u julius4/adintool/adintool.c:1.14 julius4/adintool/adintool.c:1.15 --- julius4/adintool/adintool.c:1.14 Fri May 13 17:43:23 2011 +++ julius4/adintool/adintool.c Fri Jul 27 17:44:48 2012 @@ -35,13 +35,13 @@ * @author Akinobu LEE * @date Wed Mar 23 20:43:32 2005 * - * $Revision: 1.14 $ + * $Revision: 1.15 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2001-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:58 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:58 +0900 Subject: [Julius-cvs 743] CVS update: julius4/msvc/config Message-ID: <1343378698.152591.24341.nullmailer@users.sourceforge.jp> Index: julius4/msvc/config/version.c diff -u julius4/msvc/config/version.c:1.3 julius4/msvc/config/version.c:1.4 --- julius4/msvc/config/version.c:1.3 Fri Apr 29 14:09:20 2011 +++ julius4/msvc/config/version.c Fri Jul 27 17:44:58 2012 @@ -14,13 +14,13 @@ * @author Akinobu Lee * @date Mon Sep 12 01:34:15 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ @@ -66,10 +66,10 @@ if (strm == NULL) return; fprintf(strm,"\n%s rev.%s (%s) built for %s\n\n", JULIUS_PRODUCTNAME, JULIUS_VERSION, JULIUS_SETUP, JULIUS_HOSTINFO); - fprintf(strm,"Copyright (c) 1991-2011 Kawahara Lab., Kyoto University\n"); + fprintf(strm,"Copyright (c) 1991-2012 Kawahara Lab., Kyoto University\n"); fprintf(strm,"Copyright (c) 1997-2000 Information-technology Promotion Agency, Japan\n"); fprintf(strm,"Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology\n"); - fprintf(strm,"Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology\n\n"); + fprintf(strm,"Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology\n\n"); } /** From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:49 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:49 +0900 Subject: [Julius-cvs 744] CVS update: julius4/jclient-perl Message-ID: <1343378689.276398.23734.nullmailer@users.sourceforge.jp> Index: julius4/jclient-perl/Makefile.in diff -u julius4/jclient-perl/Makefile.in:1.2 julius4/jclient-perl/Makefile.in:1.3 --- julius4/jclient-perl/Makefile.in:1.2 Fri Apr 29 14:09:14 2011 +++ julius4/jclient-perl/Makefile.in Fri Jul 27 17:44:49 2012 @@ -1,6 +1,6 @@ -# Copyright (c) 1991-2011 Kawahara Lab., Kyoto University +# Copyright (c) 1991-2012 Kawahara Lab., Kyoto University # Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology -# Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +# Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology # All rights reserved SHELL=/bin/sh From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:50 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:50 +0900 Subject: [Julius-cvs 745] CVS update: julius4/libsent/include/sent Message-ID: <1343378690.234821.23969.nullmailer@users.sourceforge.jp> Index: julius4/libsent/include/sent/adin.h diff -u julius4/libsent/include/sent/adin.h:1.11 julius4/libsent/include/sent/adin.h:1.12 --- julius4/libsent/include/sent/adin.h:1.11 Fri May 13 17:38:34 2011 +++ julius4/libsent/include/sent/adin.h Fri Jul 27 17:44:50 2012 @@ -19,12 +19,12 @@ * @author Akinobu LEE * @date Thu Feb 10 17:22:36 2005 * - * $Revision: 1.11 $ + * $Revision: 1.12 $ */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/include/sent/dfa.h diff -u julius4/libsent/include/sent/dfa.h:1.6 julius4/libsent/include/sent/dfa.h:1.7 --- julius4/libsent/include/sent/dfa.h:1.6 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/include/sent/dfa.h Fri Jul 27 17:44:50 2012 @@ -29,13 +29,13 @@ * @author Akinobu LEE * @date Thu Feb 10 18:21:27 2005 * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/include/sent/hmm.h diff -u julius4/libsent/include/sent/hmm.h:1.4 julius4/libsent/include/sent/hmm.h:1.5 --- julius4/libsent/include/sent/hmm.h:1.4 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/include/sent/hmm.h Fri Jul 27 17:44:50 2012 @@ -21,13 +21,13 @@ * @author Akinobu LEE * @date Thu Feb 10 14:54:06 2005 * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/include/sent/hmm_calc.h diff -u julius4/libsent/include/sent/hmm_calc.h:1.8 julius4/libsent/include/sent/hmm_calc.h:1.9 --- julius4/libsent/include/sent/hmm_calc.h:1.8 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/include/sent/hmm_calc.h Fri Jul 27 17:44:50 2012 @@ -13,13 +13,13 @@ * @author Akinobu LEE * @date Thu Feb 10 14:54:06 2005 * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/include/sent/htk_defs.h diff -u julius4/libsent/include/sent/htk_defs.h:1.4 julius4/libsent/include/sent/htk_defs.h:1.5 --- julius4/libsent/include/sent/htk_defs.h:1.4 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/include/sent/htk_defs.h Fri Jul 27 17:44:50 2012 @@ -24,13 +24,13 @@ * @author Akinobu LEE * @date Thu Feb 10 19:36:47 2005 * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/include/sent/htk_hmm.h diff -u julius4/libsent/include/sent/htk_hmm.h:1.9 julius4/libsent/include/sent/htk_hmm.h:1.10 --- julius4/libsent/include/sent/htk_hmm.h:1.9 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/include/sent/htk_hmm.h Fri Jul 27 17:44:50 2012 @@ -16,13 +16,13 @@ * @author Akinobu LEE * @date Thu Feb 10 19:36:47 2005 * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/include/sent/htk_param.h diff -u julius4/libsent/include/sent/htk_param.h:1.4 julius4/libsent/include/sent/htk_param.h:1.5 --- julius4/libsent/include/sent/htk_param.h:1.4 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/include/sent/htk_param.h Fri Jul 27 17:44:50 2012 @@ -48,13 +48,13 @@ * @author Akinobu LEE * @date Fri Feb 11 02:52:52 2005 * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/include/sent/machines.h diff -u julius4/libsent/include/sent/machines.h:1.4 julius4/libsent/include/sent/machines.h:1.5 --- julius4/libsent/include/sent/machines.h:1.4 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/include/sent/machines.h Fri Jul 27 17:44:50 2012 @@ -21,13 +21,13 @@ * @author Akinobu LEE * @date Fri Feb 11 03:38:31 2005 * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/include/sent/ngram2.h diff -u julius4/libsent/include/sent/ngram2.h:1.11 julius4/libsent/include/sent/ngram2.h:1.12 --- julius4/libsent/include/sent/ngram2.h:1.11 Fri Jun 24 14:07:56 2011 +++ julius4/libsent/include/sent/ngram2.h Fri Jul 27 17:44:50 2012 @@ -95,13 +95,13 @@ * @author Akinobu LEE * @date Fri Feb 11 15:04:02 2005 * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/include/sent/ptree.h diff -u julius4/libsent/include/sent/ptree.h:1.7 julius4/libsent/include/sent/ptree.h:1.8 --- julius4/libsent/include/sent/ptree.h:1.7 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/include/sent/ptree.h Fri Jul 27 17:44:50 2012 @@ -17,13 +17,13 @@ * @author Akinobu LEE * @date Fri Feb 11 17:27:24 2005 * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/include/sent/speech.h diff -u julius4/libsent/include/sent/speech.h:1.4 julius4/libsent/include/sent/speech.h:1.5 --- julius4/libsent/include/sent/speech.h:1.4 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/include/sent/speech.h Fri Jul 27 17:44:50 2012 @@ -23,13 +23,13 @@ * @author Akinobu LEE * @date Sat Feb 12 11:16:41 2005 * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/include/sent/stddefs.h diff -u julius4/libsent/include/sent/stddefs.h:1.7 julius4/libsent/include/sent/stddefs.h:1.8 --- julius4/libsent/include/sent/stddefs.h:1.7 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/include/sent/stddefs.h Fri Jul 27 17:44:50 2012 @@ -29,13 +29,13 @@ * @author Akinobu LEE * @date Sat Feb 12 11:49:37 2005 * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/include/sent/tcpip.h diff -u julius4/libsent/include/sent/tcpip.h:1.4 julius4/libsent/include/sent/tcpip.h:1.5 --- julius4/libsent/include/sent/tcpip.h:1.4 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/include/sent/tcpip.h Fri Jul 27 17:44:50 2012 @@ -11,13 +11,13 @@ * @author Akinobu LEE * @date Sat Feb 12 12:26:15 2005 * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/include/sent/util.h diff -u julius4/libsent/include/sent/util.h:1.8 julius4/libsent/include/sent/util.h:1.9 --- julius4/libsent/include/sent/util.h:1.8 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/include/sent/util.h Fri Jul 27 17:44:50 2012 @@ -21,13 +21,13 @@ * @author Akinobu LEE * @date Sat Feb 12 12:30:40 2005 * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/include/sent/vocabulary.h diff -u julius4/libsent/include/sent/vocabulary.h:1.8 julius4/libsent/include/sent/vocabulary.h:1.9 --- julius4/libsent/include/sent/vocabulary.h:1.8 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/include/sent/vocabulary.h Fri Jul 27 17:44:50 2012 @@ -30,13 +30,13 @@ * @author Akinobu LEE * @date Sat Feb 12 12:38:13 2005 * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:58 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:58 +0900 Subject: [Julius-cvs 746] CVS update: julius4/plugin Message-ID: <1343378698.216052.24349.nullmailer@users.sourceforge.jp> Index: julius4/plugin/plugin_defs.h diff -u julius4/plugin/plugin_defs.h:1.2 julius4/plugin/plugin_defs.h:1.3 --- julius4/plugin/plugin_defs.h:1.2 Fri Apr 29 14:09:20 2011 +++ julius4/plugin/plugin_defs.h Fri Jul 27 17:44:58 2012 @@ -12,13 +12,13 @@ * @author Akinobu Lee * @date Sat Aug 9 23:46:32 2008 * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology, Nagoya Institute of Technology * All rights reserved */ From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:48 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:48 +0900 Subject: [Julius-cvs 747] CVS update: julius4/generate-ngram Message-ID: <1343378688.415289.23582.nullmailer@users.sourceforge.jp> Index: julius4/generate-ngram/Makefile.in diff -u julius4/generate-ngram/Makefile.in:1.9 julius4/generate-ngram/Makefile.in:1.10 --- julius4/generate-ngram/Makefile.in:1.9 Fri Apr 29 14:09:13 2011 +++ julius4/generate-ngram/Makefile.in Fri Jul 27 17:44:48 2012 @@ -1,9 +1,9 @@ -# Copyright (c) 1991-2011 Kawahara Lab., Kyoto University +# Copyright (c) 1991-2012 Kawahara Lab., Kyoto University # Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology -# Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +# Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology # All rights reserved # -# $Id: Makefile.in,v 1.9 2011/04/29 05:09:13 sumomo Exp $ +# $Id: Makefile.in,v 1.10 2012/07/27 08:44:48 sumomo Exp $ # SHELL=/bin/sh .SUFFIXES: From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:57 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:57 +0900 Subject: [Julius-cvs 748] CVS update: julius4/libsent/src/ngram Message-ID: <1343378697.218612.24174.nullmailer@users.sourceforge.jp> Index: julius4/libsent/src/ngram/init_ngram.c diff -u julius4/libsent/src/ngram/init_ngram.c:1.8 julius4/libsent/src/ngram/init_ngram.c:1.9 --- julius4/libsent/src/ngram/init_ngram.c:1.8 Fri Jun 24 14:07:56 2011 +++ julius4/libsent/src/ngram/init_ngram.c Fri Jul 27 17:44:57 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Wed Feb 16 07:40:53 2005 * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/ngram/ngram_access.c diff -u julius4/libsent/src/ngram/ngram_access.c:1.6 julius4/libsent/src/ngram/ngram_access.c:1.7 --- julius4/libsent/src/ngram/ngram_access.c:1.6 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/ngram/ngram_access.c Fri Jul 27 17:44:57 2012 @@ -13,13 +13,13 @@ * @author Akinobu LEE * @date Wed Feb 16 07:46:18 2005 * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/ngram/ngram_compact_context.c diff -u julius4/libsent/src/ngram/ngram_compact_context.c:1.8 julius4/libsent/src/ngram/ngram_compact_context.c:1.9 --- julius4/libsent/src/ngram/ngram_compact_context.c:1.8 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/ngram/ngram_compact_context.c Fri Jul 27 17:44:57 2012 @@ -12,13 +12,13 @@ * @author Akinobu Lee * @date Sat Aug 11 11:50:58 2007 * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/ngram/ngram_lookup.c diff -u julius4/libsent/src/ngram/ngram_lookup.c:1.5 julius4/libsent/src/ngram/ngram_lookup.c:1.6 --- julius4/libsent/src/ngram/ngram_lookup.c:1.5 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/ngram/ngram_lookup.c Fri Jul 27 17:44:57 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Wed Feb 16 16:42:38 2005 * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/ngram/ngram_malloc.c diff -u julius4/libsent/src/ngram/ngram_malloc.c:1.6 julius4/libsent/src/ngram/ngram_malloc.c:1.7 --- julius4/libsent/src/ngram/ngram_malloc.c:1.6 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/ngram/ngram_malloc.c Fri Jul 27 17:44:57 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Wed Feb 16 16:48:56 2005 * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/ngram/ngram_read_arpa.c diff -u julius4/libsent/src/ngram/ngram_read_arpa.c:1.18 julius4/libsent/src/ngram/ngram_read_arpa.c:1.19 --- julius4/libsent/src/ngram/ngram_read_arpa.c:1.18 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/ngram/ngram_read_arpa.c Fri Jul 27 17:44:57 2012 @@ -20,17 +20,17 @@ * @author Akinobu LEE * @date Wed Feb 16 16:52:24 2005 * - * $Revision: 1.18 $ + * $Revision: 1.19 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ -/* $Id: ngram_read_arpa.c,v 1.18 2011/04/29 05:09:17 sumomo Exp $ */ +/* $Id: ngram_read_arpa.c,v 1.19 2012/07/27 08:44:57 sumomo Exp $ */ /* words should be alphabetically sorted */ Index: julius4/libsent/src/ngram/ngram_read_bin.c diff -u julius4/libsent/src/ngram/ngram_read_bin.c:1.9 julius4/libsent/src/ngram/ngram_read_bin.c:1.10 --- julius4/libsent/src/ngram/ngram_read_bin.c:1.9 Mon Mar 5 12:50:05 2012 +++ julius4/libsent/src/ngram/ngram_read_bin.c Fri Jul 27 17:44:57 2012 @@ -48,13 +48,13 @@ * @author Akinobu LEE * @date Wed Feb 16 17:12:08 2005 * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/ngram/ngram_util.c diff -u julius4/libsent/src/ngram/ngram_util.c:1.8 julius4/libsent/src/ngram/ngram_util.c:1.9 --- julius4/libsent/src/ngram/ngram_util.c:1.8 Mon Dec 5 14:07:17 2011 +++ julius4/libsent/src/ngram/ngram_util.c Fri Jul 27 17:44:57 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Wed Feb 16 17:18:55 2005 * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/ngram/ngram_write_bin.c diff -u julius4/libsent/src/ngram/ngram_write_bin.c:1.5 julius4/libsent/src/ngram/ngram_write_bin.c:1.6 --- julius4/libsent/src/ngram/ngram_write_bin.c:1.5 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/ngram/ngram_write_bin.c Fri Jul 27 17:44:57 2012 @@ -40,13 +40,13 @@ * @author Akinobu LEE * @date Wed Feb 16 17:23:16 2005 * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:57 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:57 +0900 Subject: [Julius-cvs 749] CVS update: julius4/libsent/src/net Message-ID: <1343378697.098879.24150.nullmailer@users.sourceforge.jp> Index: julius4/libsent/src/net/rdwt.c diff -u julius4/libsent/src/net/rdwt.c:1.4 julius4/libsent/src/net/rdwt.c:1.5 --- julius4/libsent/src/net/rdwt.c:1.4 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/net/rdwt.c Fri Jul 27 17:44:56 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Wed Feb 16 07:09:25 2005 * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/net/server-client.c diff -u julius4/libsent/src/net/server-client.c:1.4 julius4/libsent/src/net/server-client.c:1.5 --- julius4/libsent/src/net/server-client.c:1.4 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/net/server-client.c Fri Jul 27 17:44:56 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Wed Feb 16 07:18:13 2005 * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:57 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:57 +0900 Subject: [Julius-cvs 750] CVS update: julius4/mkbinhmm Message-ID: <1343378697.835539.24301.nullmailer@users.sourceforge.jp> Index: julius4/mkbinhmm/Makefile.in diff -u julius4/mkbinhmm/Makefile.in:1.7 julius4/mkbinhmm/Makefile.in:1.8 --- julius4/mkbinhmm/Makefile.in:1.7 Fri Apr 29 14:09:20 2011 +++ julius4/mkbinhmm/Makefile.in Fri Jul 27 17:44:57 2012 @@ -1,9 +1,9 @@ -# Copyright (c) 2003-2011 Kawahara Lab., Kyoto University +# Copyright (c) 2003-2012 Kawahara Lab., Kyoto University # Copyright (c) 2003-2005 Shikano Lab., Nara Institute of Science and Technology -# Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +# Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology # All rights reserved # -# $Id: Makefile.in,v 1.7 2011/04/29 05:09:20 sumomo Exp $ +# $Id: Makefile.in,v 1.8 2012/07/27 08:44:57 sumomo Exp $ # SHELL=/bin/sh .SUFFIXES: Index: julius4/mkbinhmm/mkbinhmm.c diff -u julius4/mkbinhmm/mkbinhmm.c:1.5 julius4/mkbinhmm/mkbinhmm.c:1.6 --- julius4/mkbinhmm/mkbinhmm.c:1.5 Fri Apr 29 14:09:20 2011 +++ julius4/mkbinhmm/mkbinhmm.c Fri Jul 27 17:44:57 2012 @@ -1,13 +1,13 @@ /* - * Copyright (c) 2003-2011 Kawahara Lab., Kyoto University + * Copyright (c) 2003-2012 Kawahara Lab., Kyoto University * Copyright (c) 2003-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ /* mkbinhmm --- read in ascii hmmdefs file and write in binary format */ -/* $Id: mkbinhmm.c,v 1.5 2011/04/29 05:09:20 sumomo Exp $ */ +/* $Id: mkbinhmm.c,v 1.6 2012/07/27 08:44:57 sumomo Exp $ */ #include #include Index: julius4/mkbinhmm/mkbinhmmlist.c diff -u julius4/mkbinhmm/mkbinhmmlist.c:1.3 julius4/mkbinhmm/mkbinhmmlist.c:1.4 --- julius4/mkbinhmm/mkbinhmmlist.c:1.3 Fri Apr 29 14:09:20 2011 +++ julius4/mkbinhmm/mkbinhmmlist.c Fri Jul 27 17:44:57 2012 @@ -1,13 +1,13 @@ /* - * Copyright (c) 2003-2011 Kawahara Lab., Kyoto University + * Copyright (c) 2003-2012 Kawahara Lab., Kyoto University * Copyright (c) 2003-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ /* mkbinhmmlist --- read in ascii hmmlist file and write in binary format */ -/* $Id: mkbinhmmlist.c,v 1.3 2011/04/29 05:09:20 sumomo Exp $ */ +/* $Id: mkbinhmmlist.c,v 1.4 2012/07/27 08:44:57 sumomo Exp $ */ #include #include From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:49 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:49 +0900 Subject: [Julius-cvs 751] CVS update: julius4/gramtools/nextword Message-ID: <1343378689.143278.23716.nullmailer@users.sourceforge.jp> Index: julius4/gramtools/nextword/Makefile.in diff -u julius4/gramtools/nextword/Makefile.in:1.6 julius4/gramtools/nextword/Makefile.in:1.7 --- julius4/gramtools/nextword/Makefile.in:1.6 Fri Apr 29 14:09:14 2011 +++ julius4/gramtools/nextword/Makefile.in Fri Jul 27 17:44:49 2012 @@ -1,6 +1,6 @@ -# Copyright (c) 1991-2011 Kawahara Lab., Kyoto University +# Copyright (c) 1991-2012 Kawahara Lab., Kyoto University # Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology -# Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +# Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology # All rights reserved SHELL=/bin/sh Index: julius4/gramtools/nextword/common.h diff -u julius4/gramtools/nextword/common.h:1.3 julius4/gramtools/nextword/common.h:1.4 --- julius4/gramtools/nextword/common.h:1.3 Fri Apr 29 14:09:14 2011 +++ julius4/gramtools/nextword/common.h Fri Jul 27 17:44:49 2012 @@ -1,7 +1,7 @@ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/gramtools/nextword/get_next.c diff -u julius4/gramtools/nextword/get_next.c:1.3 julius4/gramtools/nextword/get_next.c:1.4 --- julius4/gramtools/nextword/get_next.c:1.3 Fri Apr 29 14:09:14 2011 +++ julius4/gramtools/nextword/get_next.c Fri Jul 27 17:44:49 2012 @@ -1,7 +1,7 @@ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/gramtools/nextword/nextword.c diff -u julius4/gramtools/nextword/nextword.c:1.3 julius4/gramtools/nextword/nextword.c:1.4 --- julius4/gramtools/nextword/nextword.c:1.3 Fri Apr 29 14:09:14 2011 +++ julius4/gramtools/nextword/nextword.c Fri Jul 27 17:44:49 2012 @@ -1,7 +1,7 @@ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/gramtools/nextword/nextword.h diff -u julius4/gramtools/nextword/nextword.h:1.3 julius4/gramtools/nextword/nextword.h:1.4 --- julius4/gramtools/nextword/nextword.h:1.3 Fri Apr 29 14:09:14 2011 +++ julius4/gramtools/nextword/nextword.h Fri Jul 27 17:44:49 2012 @@ -1,7 +1,7 @@ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/gramtools/nextword/rdterm.c diff -u julius4/gramtools/nextword/rdterm.c:1.3 julius4/gramtools/nextword/rdterm.c:1.4 --- julius4/gramtools/nextword/rdterm.c:1.3 Fri Apr 29 14:09:14 2011 +++ julius4/gramtools/nextword/rdterm.c Fri Jul 27 17:44:49 2012 @@ -1,7 +1,7 @@ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/gramtools/nextword/readline.c diff -u julius4/gramtools/nextword/readline.c:1.3 julius4/gramtools/nextword/readline.c:1.4 --- julius4/gramtools/nextword/readline.c:1.3 Fri Apr 29 14:09:14 2011 +++ julius4/gramtools/nextword/readline.c Fri Jul 27 17:44:49 2012 @@ -1,7 +1,7 @@ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/gramtools/nextword/wtoken.c diff -u julius4/gramtools/nextword/wtoken.c:1.3 julius4/gramtools/nextword/wtoken.c:1.4 --- julius4/gramtools/nextword/wtoken.c:1.3 Fri Apr 29 14:09:14 2011 +++ julius4/gramtools/nextword/wtoken.c Fri Jul 27 17:44:49 2012 @@ -1,7 +1,7 @@ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:57 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:57 +0900 Subject: [Julius-cvs 752] CVS update: julius4/mkss Message-ID: <1343378697.976057.24323.nullmailer@users.sourceforge.jp> Index: julius4/mkss/Makefile.in diff -u julius4/mkss/Makefile.in:1.6 julius4/mkss/Makefile.in:1.7 --- julius4/mkss/Makefile.in:1.6 Fri Apr 29 14:09:20 2011 +++ julius4/mkss/Makefile.in Fri Jul 27 17:44:57 2012 @@ -1,9 +1,9 @@ -# Copyright (c) 1991-2011 Kawahara Lab., Kyoto University +# Copyright (c) 1991-2012 Kawahara Lab., Kyoto University # Copyright (c) 2001-2005 Shikano Lab., Nara Institute of Science and Technology -# Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +# Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology # All rights reserved # -# $Id: Makefile.in,v 1.6 2011/04/29 05:09:20 sumomo Exp $ +# $Id: Makefile.in,v 1.7 2012/07/27 08:44:57 sumomo Exp $ # SHELL=/bin/sh .SUFFIXES: Index: julius4/mkss/mkss.c diff -u julius4/mkss/mkss.c:1.5 julius4/mkss/mkss.c:1.6 --- julius4/mkss/mkss.c:1.5 Fri Apr 29 14:09:20 2011 +++ julius4/mkss/mkss.c Fri Jul 27 17:44:57 2012 @@ -1,14 +1,14 @@ /* - * Copyright (c) 2002-2011 Kawahara Lab., Kyoto University + * Copyright (c) 2002-2012 Kawahara Lab., Kyoto University * Copyright (c) 2002-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ /* * mkss --- compute average spectrum of mic input for SS in Julius * - * $Id: mkss.c,v 1.5 2011/04/29 05:09:20 sumomo Exp $ + * $Id: mkss.c,v 1.6 2012/07/27 08:44:57 sumomo Exp $ * */ From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:57 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:57 +0900 Subject: [Julius-cvs 753] CVS update: julius4/libsent/src/voca Message-ID: <1343378697.549935.24256.nullmailer@users.sourceforge.jp> Index: julius4/libsent/src/voca/init_voca.c diff -u julius4/libsent/src/voca/init_voca.c:1.3 julius4/libsent/src/voca/init_voca.c:1.4 --- julius4/libsent/src/voca/init_voca.c:1.3 Fri Apr 29 14:09:20 2011 +++ julius4/libsent/src/voca/init_voca.c Fri Jul 27 17:44:57 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Fri Feb 18 19:41:12 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/voca/voca_load_htkdict.c diff -u julius4/libsent/src/voca/voca_load_htkdict.c:1.11 julius4/libsent/src/voca/voca_load_htkdict.c:1.12 --- julius4/libsent/src/voca/voca_load_htkdict.c:1.11 Mon Jul 11 15:46:26 2011 +++ julius4/libsent/src/voca/voca_load_htkdict.c Fri Jul 27 17:44:57 2012 @@ -19,13 +19,13 @@ * @author Akinobu LEE * @date Fri Feb 18 19:43:06 2005 * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/voca/voca_load_wordlist.c diff -u julius4/libsent/src/voca/voca_load_wordlist.c:1.7 julius4/libsent/src/voca/voca_load_wordlist.c:1.8 --- julius4/libsent/src/voca/voca_load_wordlist.c:1.7 Mon Jul 11 15:46:26 2011 +++ julius4/libsent/src/voca/voca_load_wordlist.c Fri Jul 27 17:44:57 2012 @@ -13,13 +13,13 @@ * @author Akinobu LEE * @date Sun Jul 22 13:29:32 2007 * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/voca/voca_lookup.c diff -u julius4/libsent/src/voca/voca_lookup.c:1.3 julius4/libsent/src/voca/voca_lookup.c:1.4 --- julius4/libsent/src/voca/voca_lookup.c:1.3 Fri Apr 29 14:09:20 2011 +++ julius4/libsent/src/voca/voca_lookup.c Fri Jul 27 17:44:57 2012 @@ -18,13 +18,13 @@ * @author Akinobu LEE * @date Fri Feb 18 21:24:01 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/voca/voca_malloc.c diff -u julius4/libsent/src/voca/voca_malloc.c:1.6 julius4/libsent/src/voca/voca_malloc.c:1.7 --- julius4/libsent/src/voca/voca_malloc.c:1.6 Thu Jul 19 09:58:52 2012 +++ julius4/libsent/src/voca/voca_malloc.c Fri Jul 27 17:44:57 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Fri Feb 18 21:33:29 2005 * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/voca/voca_util.c diff -u julius4/libsent/src/voca/voca_util.c:1.3 julius4/libsent/src/voca/voca_util.c:1.4 --- julius4/libsent/src/voca/voca_util.c:1.3 Fri Apr 29 14:09:20 2011 +++ julius4/libsent/src/voca/voca_util.c Fri Jul 27 17:44:57 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Fri Feb 18 21:41:41 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:49 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:49 +0900 Subject: [Julius-cvs 754] CVS update: julius4/jcontrol Message-ID: <1343378689.370562.23756.nullmailer@users.sourceforge.jp> Index: julius4/jcontrol/Makefile.in diff -u julius4/jcontrol/Makefile.in:1.5 julius4/jcontrol/Makefile.in:1.6 --- julius4/jcontrol/Makefile.in:1.5 Fri Apr 29 14:09:14 2011 +++ julius4/jcontrol/Makefile.in Fri Jul 27 17:44:49 2012 @@ -1,9 +1,9 @@ -# Copyright (c) 2002-2011 Kawahara Lab., Kyoto University +# Copyright (c) 2002-2012 Kawahara Lab., Kyoto University # Copyright (c) 2002-2005 Shikano Lab., Nara Institute of Science and Technology -# Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +# Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology # All rights reserved # -# $Id: Makefile.in,v 1.5 2011/04/29 05:09:14 sumomo Exp $ +# $Id: Makefile.in,v 1.6 2012/07/27 08:44:49 sumomo Exp $ # SHELL=/bin/sh .SUFFIXES: Index: julius4/jcontrol/configure.in diff -u julius4/jcontrol/configure.in:1.6 julius4/jcontrol/configure.in:1.7 --- julius4/jcontrol/configure.in:1.6 Fri Apr 29 10:57:20 2011 +++ julius4/jcontrol/configure.in Fri Jul 27 17:44:49 2012 @@ -1,6 +1,6 @@ -dnl Copyright (c) 2002-2011 Kawahara Lab., Kyoto University +dnl Copyright (c) 2002-2012 Kawahara Lab., Kyoto University dnl Copyright (c) 2002-2005 Shikano Lab., Nara Institute of Science and Technology -dnl Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +dnl Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology dnl All rights reserved AC_INIT(jcontrol.c) AC_CANONICAL_HOST Index: julius4/jcontrol/japi.h diff -u julius4/jcontrol/japi.h:1.4 julius4/jcontrol/japi.h:1.5 --- julius4/jcontrol/japi.h:1.4 Fri Apr 29 14:09:14 2011 +++ julius4/jcontrol/japi.h Fri Jul 27 17:44:49 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Thu Mar 24 07:12:32 2005 * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * */ /* - * Copyright (c) 2002-2011 Kawahara Lab., Kyoto University + * Copyright (c) 2002-2012 Kawahara Lab., Kyoto University * Copyright (c) 2002-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/jcontrol/japi_grammar.c diff -u julius4/jcontrol/japi_grammar.c:1.5 julius4/jcontrol/japi_grammar.c:1.6 --- julius4/jcontrol/japi_grammar.c:1.5 Fri Apr 29 14:09:14 2011 +++ julius4/jcontrol/japi_grammar.c Fri Jul 27 17:44:49 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Thu Mar 24 07:13:41 2005 * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * */ /* - * Copyright (c) 2002-2011 Kawahara Lab., Kyoto University + * Copyright (c) 2002-2012 Kawahara Lab., Kyoto University * Copyright (c) 2002-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/jcontrol/japi_misc.c diff -u julius4/jcontrol/japi_misc.c:1.3 julius4/jcontrol/japi_misc.c:1.4 --- julius4/jcontrol/japi_misc.c:1.3 Fri Apr 29 14:09:14 2011 +++ julius4/jcontrol/japi_misc.c Fri Jul 27 17:44:49 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Thu Mar 24 11:24:18 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 2002-2011 Kawahara Lab., Kyoto University + * Copyright (c) 2002-2012 Kawahara Lab., Kyoto University * Copyright (c) 2002-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/jcontrol/japi_process.c diff -u julius4/jcontrol/japi_process.c:1.2 julius4/jcontrol/japi_process.c:1.3 --- julius4/jcontrol/japi_process.c:1.2 Fri Apr 29 14:09:14 2011 +++ julius4/jcontrol/japi_process.c Fri Jul 27 17:44:49 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Thu Mar 24 11:24:18 2005 * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * */ /* - * Copyright (c) 2002-2011 Kawahara Lab., Kyoto University + * Copyright (c) 2002-2012 Kawahara Lab., Kyoto University * Copyright (c) 2002-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/jcontrol/jcontrol.c diff -u julius4/jcontrol/jcontrol.c:1.5 julius4/jcontrol/jcontrol.c:1.6 --- julius4/jcontrol/jcontrol.c:1.5 Fri Apr 29 14:09:14 2011 +++ julius4/jcontrol/jcontrol.c Fri Jul 27 17:44:49 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Thu Mar 24 11:49:27 2005 * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * */ /* - * Copyright (c) 2002-2011 Kawahara Lab., Kyoto University + * Copyright (c) 2002-2012 Kawahara Lab., Kyoto University * Copyright (c) 2002-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ #include "japi.h" Index: julius4/jcontrol/server.c diff -u julius4/jcontrol/server.c:1.3 julius4/jcontrol/server.c:1.4 --- julius4/jcontrol/server.c:1.3 Fri Apr 29 14:09:14 2011 +++ julius4/jcontrol/server.c Fri Jul 27 17:44:49 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Thu Mar 24 12:07:24 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 2002-2011 Kawahara Lab., Kyoto University + * Copyright (c) 2002-2012 Kawahara Lab., Kyoto University * Copyright (c) 2002-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:57 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:57 +0900 Subject: [Julius-cvs 755] CVS update: julius4/libsent/src/util Message-ID: <1343378697.462475.24238.nullmailer@users.sourceforge.jp> Index: julius4/libsent/src/util/aptree.c diff -u julius4/libsent/src/util/aptree.c:1.4 julius4/libsent/src/util/aptree.c:1.5 --- julius4/libsent/src/util/aptree.c:1.4 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/util/aptree.c Fri Jul 27 17:44:57 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Thu Feb 17 15:21:53 2005 * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/util/confout.c diff -u julius4/libsent/src/util/confout.c:1.8 julius4/libsent/src/util/confout.c:1.9 --- julius4/libsent/src/util/confout.c:1.8 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/util/confout.c Fri Jul 27 17:44:57 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Thu Feb 17 15:34:39 2005 * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/util/endian.c diff -u julius4/libsent/src/util/endian.c:1.4 julius4/libsent/src/util/endian.c:1.5 --- julius4/libsent/src/util/endian.c:1.4 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/util/endian.c Fri Jul 27 17:44:57 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Thu Feb 17 15:43:46 2005 * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/util/gzfile.c diff -u julius4/libsent/src/util/gzfile.c:1.3 julius4/libsent/src/util/gzfile.c:1.4 --- julius4/libsent/src/util/gzfile.c:1.3 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/util/gzfile.c Fri Jul 27 17:44:57 2012 @@ -25,13 +25,13 @@ * @author Akinobu LEE * @date Thu Feb 17 15:46:00 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/util/jlog.c diff -u julius4/libsent/src/util/jlog.c:1.3 julius4/libsent/src/util/jlog.c:1.4 --- julius4/libsent/src/util/jlog.c:1.3 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/util/jlog.c Fri Jul 27 17:44:57 2012 @@ -22,13 +22,13 @@ * @author Akinobu LEE * @date Thu Feb 17 16:02:41 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/util/mybmalloc.c diff -u julius4/libsent/src/util/mybmalloc.c:1.4 julius4/libsent/src/util/mybmalloc.c:1.5 --- julius4/libsent/src/util/mybmalloc.c:1.4 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/util/mybmalloc.c Fri Jul 27 17:44:57 2012 @@ -25,13 +25,13 @@ * @author Akinobu LEE * @date Thu Feb 17 16:14:59 2005 * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/util/mymalloc.c diff -u julius4/libsent/src/util/mymalloc.c:1.6 julius4/libsent/src/util/mymalloc.c:1.7 --- julius4/libsent/src/util/mymalloc.c:1.6 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/util/mymalloc.c Fri Jul 27 17:44:57 2012 @@ -17,13 +17,13 @@ * @author Akinobu LEE * @date Thu Feb 17 16:27:03 2005 * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/util/mystrtok.c diff -u julius4/libsent/src/util/mystrtok.c:1.3 julius4/libsent/src/util/mystrtok.c:1.4 --- julius4/libsent/src/util/mystrtok.c:1.3 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/util/mystrtok.c Fri Jul 27 17:44:57 2012 @@ -18,13 +18,13 @@ * @author Akinobu LEE * @date Thu Feb 17 16:31:39 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/util/ptree.c diff -u julius4/libsent/src/util/ptree.c:1.6 julius4/libsent/src/util/ptree.c:1.7 --- julius4/libsent/src/util/ptree.c:1.6 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/util/ptree.c Fri Jul 27 17:44:57 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Thu Feb 17 15:34:39 2005 * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/util/readfile.c diff -u julius4/libsent/src/util/readfile.c:1.5 julius4/libsent/src/util/readfile.c:1.6 --- julius4/libsent/src/util/readfile.c:1.5 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/util/readfile.c Fri Jul 27 17:44:57 2012 @@ -21,13 +21,13 @@ * @author Akinobu LEE * @date Thu Feb 17 16:41:58 2005 * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/util/strcasecmp.c diff -u julius4/libsent/src/util/strcasecmp.c:1.3 julius4/libsent/src/util/strcasecmp.c:1.4 --- julius4/libsent/src/util/strcasecmp.c:1.3 Fri Apr 29 14:09:17 2011 +++ julius4/libsent/src/util/strcasecmp.c Fri Jul 27 17:44:57 2012 @@ -18,13 +18,13 @@ * @author Akinobu LEE * @date Thu Feb 17 17:02:09 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:50 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:50 +0900 Subject: [Julius-cvs 756] CVS update: julius4/libsent/src/adin Message-ID: <1343378690.377449.24011.nullmailer@users.sourceforge.jp> Index: julius4/libsent/src/adin/adin_esd.c diff -u julius4/libsent/src/adin/adin_esd.c:1.6 julius4/libsent/src/adin/adin_esd.c:1.7 --- julius4/libsent/src/adin/adin_esd.c:1.6 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/adin/adin_esd.c Fri Jul 27 17:44:50 2012 @@ -21,12 +21,12 @@ * @author Akinobu LEE * @date Sun Feb 13 16:18:26 2005 * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * */ /* * Copyright (c) 2004-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/adin/adin_file.c diff -u julius4/libsent/src/adin/adin_file.c:1.9 julius4/libsent/src/adin/adin_file.c:1.10 --- julius4/libsent/src/adin/adin_file.c:1.9 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/adin/adin_file.c Fri Jul 27 17:44:50 2012 @@ -56,13 +56,13 @@ * @author Akinobu LEE * @date Sun Feb 13 13:31:20 2005 * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/adin/adin_mic_freebsd.c diff -u julius4/libsent/src/adin/adin_mic_freebsd.c:1.7 julius4/libsent/src/adin/adin_mic_freebsd.c:1.8 --- julius4/libsent/src/adin/adin_mic_freebsd.c:1.7 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/adin/adin_mic_freebsd.c Fri Jul 27 17:44:50 2012 @@ -39,13 +39,13 @@ * @author Akinobu LEE * @date Sun Feb 13 16:18:26 2005 * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/adin/adin_mic_linux.c diff -u julius4/libsent/src/adin/adin_mic_linux.c:1.7 julius4/libsent/src/adin/adin_mic_linux.c:1.8 --- julius4/libsent/src/adin/adin_mic_linux.c:1.7 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/adin/adin_mic_linux.c Fri Jul 27 17:44:50 2012 @@ -23,13 +23,13 @@ * @author Akinobu LEE * @date Sun Feb 13 16:18:26 2005 * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/adin/adin_mic_linux_alsa.c diff -u julius4/libsent/src/adin/adin_mic_linux_alsa.c:1.12 julius4/libsent/src/adin/adin_mic_linux_alsa.c:1.13 --- julius4/libsent/src/adin/adin_mic_linux_alsa.c:1.12 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/adin/adin_mic_linux_alsa.c Fri Jul 27 17:44:50 2012 @@ -44,13 +44,13 @@ * @author Akinobu LEE * @date Sun Feb 13 16:18:26 2005 * - * $Revision: 1.12 $ + * $Revision: 1.13 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/adin/adin_mic_linux_oss.c diff -u julius4/libsent/src/adin/adin_mic_linux_oss.c:1.8 julius4/libsent/src/adin/adin_mic_linux_oss.c:1.9 --- julius4/libsent/src/adin/adin_mic_linux_oss.c:1.8 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/adin/adin_mic_linux_oss.c Fri Jul 27 17:44:50 2012 @@ -51,13 +51,13 @@ * @author Akinobu LEE * @date Sun Feb 13 16:18:26 2005 * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/adin/adin_mic_o2.c diff -u julius4/libsent/src/adin/adin_mic_o2.c:1.5 julius4/libsent/src/adin/adin_mic_o2.c:1.6 --- julius4/libsent/src/adin/adin_mic_o2.c:1.5 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/adin/adin_mic_o2.c Fri Jul 27 17:44:50 2012 @@ -29,13 +29,13 @@ * @author Akinobu LEE * @date Sun Feb 13 18:42:22 2005 * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/adin/adin_mic_sol2.c diff -u julius4/libsent/src/adin/adin_mic_sol2.c:1.5 julius4/libsent/src/adin/adin_mic_sol2.c:1.6 --- julius4/libsent/src/adin/adin_mic_sol2.c:1.5 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/adin/adin_mic_sol2.c Fri Jul 27 17:44:50 2012 @@ -38,13 +38,13 @@ * @author Akinobu LEE * @date Sun Feb 13 19:06:46 2005 * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/adin/adin_mic_sun4.c diff -u julius4/libsent/src/adin/adin_mic_sun4.c:1.5 julius4/libsent/src/adin/adin_mic_sun4.c:1.6 --- julius4/libsent/src/adin/adin_mic_sun4.c:1.5 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/adin/adin_mic_sun4.c Fri Jul 27 17:44:50 2012 @@ -34,13 +34,13 @@ * @author Akinobu LEE * @date Sun Feb 13 18:56:13 2005 * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/adin/adin_na.c diff -u julius4/libsent/src/adin/adin_na.c:1.3 julius4/libsent/src/adin/adin_na.c:1.4 --- julius4/libsent/src/adin/adin_na.c:1.3 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/adin/adin_na.c Fri Jul 27 17:44:50 2012 @@ -23,13 +23,13 @@ * @author Akinobu LEE * @date Sun Feb 13 19:40:56 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/adin/adin_netaudio.c diff -u julius4/libsent/src/adin/adin_netaudio.c:1.5 julius4/libsent/src/adin/adin_netaudio.c:1.6 --- julius4/libsent/src/adin/adin_netaudio.c:1.5 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/adin/adin_netaudio.c Fri Jul 27 17:44:50 2012 @@ -26,13 +26,13 @@ * @author Akinobu LEE * @date Sun Feb 13 19:50:55 2005 * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/adin/adin_portaudio.c diff -u julius4/libsent/src/adin/adin_portaudio.c:1.18 julius4/libsent/src/adin/adin_portaudio.c:1.19 --- julius4/libsent/src/adin/adin_portaudio.c:1.18 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/adin/adin_portaudio.c Fri Jul 27 17:44:50 2012 @@ -56,12 +56,12 @@ * @author Akinobu LEE * @date Mon Feb 14 12:03:48 2005 * - * $Revision: 1.18 $ + * $Revision: 1.19 $ * */ /* * Copyright (c) 2004-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/adin/adin_pulseaudio.c diff -u julius4/libsent/src/adin/adin_pulseaudio.c:1.1 julius4/libsent/src/adin/adin_pulseaudio.c:1.2 --- julius4/libsent/src/adin/adin_pulseaudio.c:1.1 Thu Feb 24 19:07:03 2011 +++ julius4/libsent/src/adin/adin_pulseaudio.c Fri Jul 27 17:44:50 2012 @@ -21,11 +21,11 @@ * @author Akinobu LEE * @date Thu Feb 24 00:18:22 2011 * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * */ /* - * Copyright (c) 2010-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2010-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/adin/adin_sndfile.c diff -u julius4/libsent/src/adin/adin_sndfile.c:1.5 julius4/libsent/src/adin/adin_sndfile.c:1.6 --- julius4/libsent/src/adin/adin_sndfile.c:1.5 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/adin/adin_sndfile.c Fri Jul 27 17:44:50 2012 @@ -61,13 +61,13 @@ * @author Akinobu LEE * @date Mon Feb 14 12:13:27 2005 * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/adin/adin_tcpip.c diff -u julius4/libsent/src/adin/adin_tcpip.c:1.6 julius4/libsent/src/adin/adin_tcpip.c:1.7 --- julius4/libsent/src/adin/adin_tcpip.c:1.6 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/adin/adin_tcpip.c Fri Jul 27 17:44:50 2012 @@ -45,13 +45,13 @@ * @author Akinobu LEE * @date Mon Feb 14 14:55:03 2005 * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/adin/ds48to16.c diff -u julius4/libsent/src/adin/ds48to16.c:1.3 julius4/libsent/src/adin/ds48to16.c:1.4 --- julius4/libsent/src/adin/ds48to16.c:1.3 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/adin/ds48to16.c Fri Jul 27 17:44:50 2012 @@ -13,13 +13,13 @@ * @author Akinobu LEE * @date Sun Feb 13 16:18:26 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/adin/zc-e.c diff -u julius4/libsent/src/adin/zc-e.c:1.3 julius4/libsent/src/adin/zc-e.c:1.4 --- julius4/libsent/src/adin/zc-e.c:1.3 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/adin/zc-e.c Fri Jul 27 17:44:50 2012 @@ -19,13 +19,13 @@ * @author Akinobu LEE * @date Mon Feb 14 19:11:34 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/adin/zmean.c diff -u julius4/libsent/src/adin/zmean.c:1.3 julius4/libsent/src/adin/zmean.c:1.4 --- julius4/libsent/src/adin/zmean.c:1.3 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/adin/zmean.c Fri Jul 27 17:44:50 2012 @@ -28,13 +28,13 @@ * @author Akinobu LEE * @date Sun Feb 13 20:31:23 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:48 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:48 +0900 Subject: [Julius-cvs 757] CVS update: julius4/gramtools/gram2sapixml Message-ID: <1343378688.869625.23653.nullmailer@users.sourceforge.jp> Index: julius4/gramtools/gram2sapixml/Makefile.in diff -u julius4/gramtools/gram2sapixml/Makefile.in:1.3 julius4/gramtools/gram2sapixml/Makefile.in:1.4 --- julius4/gramtools/gram2sapixml/Makefile.in:1.3 Fri Apr 29 14:09:13 2011 +++ julius4/gramtools/gram2sapixml/Makefile.in Fri Jul 27 17:44:48 2012 @@ -1,6 +1,6 @@ -# Copyright (c) 1991-2011 Kawahara Lab., Kyoto University +# Copyright (c) 1991-2012 Kawahara Lab., Kyoto University # Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology -# Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +# Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology # All rights reserved SHELL=/bin/sh From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:50 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:50 +0900 Subject: [Julius-cvs 758] CVS update: julius4/libsent/src/dfa Message-ID: <1343378690.601007.24057.nullmailer@users.sourceforge.jp> Index: julius4/libsent/src/dfa/cpair.c diff -u julius4/libsent/src/dfa/cpair.c:1.5 julius4/libsent/src/dfa/cpair.c:1.6 --- julius4/libsent/src/dfa/cpair.c:1.5 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/dfa/cpair.c Fri Jul 27 17:44:50 2012 @@ -18,13 +18,13 @@ * @author Akinobu LEE * @date Tue Feb 15 13:54:44 2005 * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/dfa/dfa_lookup.c diff -u julius4/libsent/src/dfa/dfa_lookup.c:1.3 julius4/libsent/src/dfa/dfa_lookup.c:1.4 --- julius4/libsent/src/dfa/dfa_lookup.c:1.3 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/dfa/dfa_lookup.c Fri Jul 27 17:44:50 2012 @@ -18,13 +18,13 @@ * @author Akinobu LEE * @date Tue Feb 15 14:11:41 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/dfa/dfa_malloc.c diff -u julius4/libsent/src/dfa/dfa_malloc.c:1.3 julius4/libsent/src/dfa/dfa_malloc.c:1.4 --- julius4/libsent/src/dfa/dfa_malloc.c:1.3 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/dfa/dfa_malloc.c Fri Jul 27 17:44:50 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Tue Feb 15 14:16:03 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/dfa/dfa_util.c diff -u julius4/libsent/src/dfa/dfa_util.c:1.5 julius4/libsent/src/dfa/dfa_util.c:1.6 --- julius4/libsent/src/dfa/dfa_util.c:1.5 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/dfa/dfa_util.c Fri Jul 27 17:44:50 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Tue Feb 15 14:18:36 2005 * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/dfa/init_dfa.c diff -u julius4/libsent/src/dfa/init_dfa.c:1.4 julius4/libsent/src/dfa/init_dfa.c:1.5 --- julius4/libsent/src/dfa/init_dfa.c:1.4 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/dfa/init_dfa.c Fri Jul 27 17:44:50 2012 @@ -20,13 +20,13 @@ * @author Akinobu LEE * @date Tue Feb 15 14:20:43 2005 * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/dfa/mkcpair.c diff -u julius4/libsent/src/dfa/mkcpair.c:1.5 julius4/libsent/src/dfa/mkcpair.c:1.6 --- julius4/libsent/src/dfa/mkcpair.c:1.5 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/dfa/mkcpair.c Fri Jul 27 17:44:50 2012 @@ -38,13 +38,13 @@ * @author Akinobu LEE * @date Tue Feb 15 14:35:33 2005 * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/dfa/mkterminfo.c diff -u julius4/libsent/src/dfa/mkterminfo.c:1.3 julius4/libsent/src/dfa/mkterminfo.c:1.4 --- julius4/libsent/src/dfa/mkterminfo.c:1.3 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/dfa/mkterminfo.c Fri Jul 27 17:44:50 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Tue Feb 15 14:47:27 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/dfa/rddfa.c diff -u julius4/libsent/src/dfa/rddfa.c:1.4 julius4/libsent/src/dfa/rddfa.c:1.5 --- julius4/libsent/src/dfa/rddfa.c:1.4 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/dfa/rddfa.c Fri Jul 27 17:44:50 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Tue Feb 15 14:54:40 2005 * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:48 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:48 +0900 Subject: [Julius-cvs 759] CVS update: julius4/gramtools/accept_check Message-ID: <1343378688.583430.23606.nullmailer@users.sourceforge.jp> Index: julius4/gramtools/accept_check/Makefile.in diff -u julius4/gramtools/accept_check/Makefile.in:1.6 julius4/gramtools/accept_check/Makefile.in:1.7 --- julius4/gramtools/accept_check/Makefile.in:1.6 Fri Apr 29 14:09:13 2011 +++ julius4/gramtools/accept_check/Makefile.in Fri Jul 27 17:44:48 2012 @@ -1,6 +1,6 @@ -# Copyright (c) 1991-2011 Kawahara Lab., Kyoto University +# Copyright (c) 1991-2012 Kawahara Lab., Kyoto University # Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology -# Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +# Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology # All rights reserved SHELL=/bin/sh Index: julius4/gramtools/accept_check/accept_check.c diff -u julius4/gramtools/accept_check/accept_check.c:1.3 julius4/gramtools/accept_check/accept_check.c:1.4 --- julius4/gramtools/accept_check/accept_check.c:1.3 Fri Apr 29 14:09:13 2011 +++ julius4/gramtools/accept_check/accept_check.c Fri Jul 27 17:44:48 2012 @@ -1,7 +1,7 @@ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/gramtools/accept_check/common.h diff -u julius4/gramtools/accept_check/common.h:1.3 julius4/gramtools/accept_check/common.h:1.4 --- julius4/gramtools/accept_check/common.h:1.3 Fri Apr 29 14:09:13 2011 +++ julius4/gramtools/accept_check/common.h Fri Jul 27 17:44:48 2012 @@ -1,7 +1,7 @@ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/gramtools/accept_check/rdterm.c diff -u julius4/gramtools/accept_check/rdterm.c:1.3 julius4/gramtools/accept_check/rdterm.c:1.4 --- julius4/gramtools/accept_check/rdterm.c:1.3 Fri Apr 29 14:09:13 2011 +++ julius4/gramtools/accept_check/rdterm.c Fri Jul 27 17:44:48 2012 @@ -1,7 +1,7 @@ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:49 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:49 +0900 Subject: [Julius-cvs 760] CVS update: julius4/libjulius Message-ID: <1343378689.564926.23801.nullmailer@users.sourceforge.jp> Index: julius4/libjulius/Makefile.in diff -u julius4/libjulius/Makefile.in:1.7 julius4/libjulius/Makefile.in:1.8 --- julius4/libjulius/Makefile.in:1.7 Fri Apr 29 14:09:14 2011 +++ julius4/libjulius/Makefile.in Fri Jul 27 17:44:49 2012 @@ -1,11 +1,11 @@ -# Copyright (c) 1991-2011 Kawahara Lab., Kyoto University +# Copyright (c) 1991-2012 Kawahara Lab., Kyoto University # Copyright (c) 1997-2000 Information-technology Promotion Agency, Japan # Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology -# Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +# Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology # All rights reserved # -# $Id: Makefile.in,v 1.7 2011/04/29 05:09:14 sumomo Exp $ +# $Id: Makefile.in,v 1.8 2012/07/27 08:44:49 sumomo Exp $ # SHELL=/bin/sh .SUFFIXES: Index: julius4/libjulius/configure.in diff -u julius4/libjulius/configure.in:1.15 julius4/libjulius/configure.in:1.16 --- julius4/libjulius/configure.in:1.15 Mon Dec 5 14:42:39 2011 +++ julius4/libjulius/configure.in Fri Jul 27 17:44:49 2012 @@ -1,10 +1,10 @@ -dnl Copyright (c) 1991-2011 Kawahara Lab., Kyoto University +dnl Copyright (c) 1991-2012 Kawahara Lab., Kyoto University dnl Copyright (c) 1997-2000 Information-technology Promotion Agency, Japan dnl Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology -dnl Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +dnl Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology dnl All rights reserved dnl -dnl $Id: configure.in,v 1.15 2011/12/05 05:42:39 sumomo Exp $ +dnl $Id: configure.in,v 1.16 2012/07/27 08:44:49 sumomo Exp $ dnl AC_INIT(src/search_bestfirst_main.c) From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:50 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:50 +0900 Subject: [Julius-cvs 761] CVS update: julius4/libsent Message-ID: <1343378690.109236.23933.nullmailer@users.sourceforge.jp> Index: julius4/libsent/Makefile.in diff -u julius4/libsent/Makefile.in:1.11 julius4/libsent/Makefile.in:1.12 --- julius4/libsent/Makefile.in:1.11 Fri Apr 29 14:09:15 2011 +++ julius4/libsent/Makefile.in Fri Jul 27 17:44:50 2012 @@ -1,9 +1,9 @@ -# Copyright (c) 1991-2011 Kawahara Lab., Kyoto University +# Copyright (c) 1991-2012 Kawahara Lab., Kyoto University # Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology -# Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +# Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology # All rights reserved # -# $Id: Makefile.in,v 1.11 2011/04/29 05:09:15 sumomo Exp $ +# $Id: Makefile.in,v 1.12 2012/07/27 08:44:50 sumomo Exp $ # SHELL=/bin/sh Index: julius4/libsent/configure.in diff -u julius4/libsent/configure.in:1.28 julius4/libsent/configure.in:1.29 --- julius4/libsent/configure.in:1.28 Mon Dec 5 14:42:39 2011 +++ julius4/libsent/configure.in Fri Jul 27 17:44:50 2012 @@ -1,9 +1,9 @@ -dnl Copyright (c) 1991-2011 Kawahara Lab., Kyoto University +dnl Copyright (c) 1991-2012 Kawahara Lab., Kyoto University dnl Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology -dnl Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +dnl Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology dnl All rights reserved dnl -dnl $Id: configure.in,v 1.28 2011/12/05 05:42:39 sumomo Exp $ +dnl $Id: configure.in,v 1.29 2012/07/27 08:44:50 sumomo Exp $ dnl dnl Process this file with autoconf to produce a configure script. From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:48 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:48 +0900 Subject: [Julius-cvs 762] CVS update: julius4/gramtools/mkdfa Message-ID: <1343378688.937243.23663.nullmailer@users.sourceforge.jp> Index: julius4/gramtools/mkdfa/Makefile.in diff -u julius4/gramtools/mkdfa/Makefile.in:1.3 julius4/gramtools/mkdfa/Makefile.in:1.4 --- julius4/gramtools/mkdfa/Makefile.in:1.3 Fri Apr 29 14:09:13 2011 +++ julius4/gramtools/mkdfa/Makefile.in Fri Jul 27 17:44:48 2012 @@ -1,6 +1,6 @@ -# Copyright (c) 1991-2011 Kawahara Lab., Kyoto University +# Copyright (c) 1991-2012 Kawahara Lab., Kyoto University # Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology -# Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +# Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology # All rights reserved SHELL=/bin/sh Index: julius4/gramtools/mkdfa/mkdfa.pl.in diff -u julius4/gramtools/mkdfa/mkdfa.pl.in:1.3 julius4/gramtools/mkdfa/mkdfa.pl.in:1.4 --- julius4/gramtools/mkdfa/mkdfa.pl.in:1.3 Fri Apr 29 10:57:19 2011 +++ julius4/gramtools/mkdfa/mkdfa.pl.in Fri Jul 27 17:44:48 2012 @@ -1,7 +1,7 @@ #!@PERL@ -# Copyright (c) 1991-2011 Kawahara Lab., Kyoto University +# Copyright (c) 1991-2012 Kawahara Lab., Kyoto University # Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology -# Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +# Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology # # @configure_input@ # From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:50 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:50 +0900 Subject: [Julius-cvs 763] CVS update: julius4/libsent/src/anlz Message-ID: <1343378690.505312.24033.nullmailer@users.sourceforge.jp> Index: julius4/libsent/src/anlz/param_malloc.c diff -u julius4/libsent/src/anlz/param_malloc.c:1.3 julius4/libsent/src/anlz/param_malloc.c:1.4 --- julius4/libsent/src/anlz/param_malloc.c:1.3 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/anlz/param_malloc.c Fri Jul 27 17:44:50 2012 @@ -12,14 +12,14 @@ * @author Akinobu Lee * @date Fri Aug 3 14:09:39 2007 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/anlz/paramselect.c diff -u julius4/libsent/src/anlz/paramselect.c:1.3 julius4/libsent/src/anlz/paramselect.c:1.4 --- julius4/libsent/src/anlz/paramselect.c:1.3 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/anlz/paramselect.c Fri Jul 27 17:44:50 2012 @@ -36,13 +36,13 @@ * @author Akinobu LEE * @date Sun Feb 13 20:46:39 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/anlz/paramtypes.c diff -u julius4/libsent/src/anlz/paramtypes.c:1.3 julius4/libsent/src/anlz/paramtypes.c:1.4 --- julius4/libsent/src/anlz/paramtypes.c:1.3 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/anlz/paramtypes.c Fri Jul 27 17:44:50 2012 @@ -17,13 +17,13 @@ * @author Akinobu LEE * @date Tue Feb 15 00:06:26 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/anlz/rdparam.c diff -u julius4/libsent/src/anlz/rdparam.c:1.4 julius4/libsent/src/anlz/rdparam.c:1.5 --- julius4/libsent/src/anlz/rdparam.c:1.4 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/anlz/rdparam.c Fri Jul 27 17:44:50 2012 @@ -25,13 +25,13 @@ * @author Akinobu LEE * @date Tue Feb 15 00:16:44 2005 * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/anlz/strip.c diff -u julius4/libsent/src/anlz/strip.c:1.4 julius4/libsent/src/anlz/strip.c:1.5 --- julius4/libsent/src/anlz/strip.c:1.4 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/anlz/strip.c Fri Jul 27 17:44:50 2012 @@ -11,13 +11,13 @@ * @author Akinobu LEE * @date Tue Feb 15 00:30:38 2005 * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/anlz/strip_mfcc.c diff -u julius4/libsent/src/anlz/strip_mfcc.c:1.4 julius4/libsent/src/anlz/strip_mfcc.c:1.5 --- julius4/libsent/src/anlz/strip_mfcc.c:1.4 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/anlz/strip_mfcc.c Fri Jul 27 17:44:50 2012 @@ -42,13 +42,13 @@ * @author Akinobu LEE * @date Tue Feb 15 00:38:57 2005 * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/anlz/wrsamp.c diff -u julius4/libsent/src/anlz/wrsamp.c:1.3 julius4/libsent/src/anlz/wrsamp.c:1.4 --- julius4/libsent/src/anlz/wrsamp.c:1.3 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/anlz/wrsamp.c Fri Jul 27 17:44:50 2012 @@ -11,13 +11,13 @@ * @author Akinobu LEE * @date Tue Feb 15 00:58:47 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/anlz/wrwav.c diff -u julius4/libsent/src/anlz/wrwav.c:1.3 julius4/libsent/src/anlz/wrwav.c:1.4 --- julius4/libsent/src/anlz/wrwav.c:1.3 Fri Apr 29 14:09:16 2011 +++ julius4/libsent/src/anlz/wrwav.c Fri Jul 27 17:44:50 2012 @@ -11,13 +11,13 @@ * @author Akinobu LEE * @date Tue Feb 15 01:02:18 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:48 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:48 +0900 Subject: [Julius-cvs 764] CVS update: julius4/adinrec Message-ID: <1343378688.280873.23564.nullmailer@users.sourceforge.jp> Index: julius4/adinrec/Makefile.in diff -u julius4/adinrec/Makefile.in:1.6 julius4/adinrec/Makefile.in:1.7 --- julius4/adinrec/Makefile.in:1.6 Fri Apr 29 14:09:13 2011 +++ julius4/adinrec/Makefile.in Fri Jul 27 17:44:48 2012 @@ -1,9 +1,9 @@ -# Copyright (c) 1991-2011 Kawahara Lab., Kyoto University +# Copyright (c) 1991-2012 Kawahara Lab., Kyoto University # Copyright (c) 2001-2005 Shikano Lab., Nara Institute of Science and Technology -# Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +# Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology # All rights reserved # -# $Id: Makefile.in,v 1.6 2011/04/29 05:09:13 sumomo Exp $ +# $Id: Makefile.in,v 1.7 2012/07/27 08:44:48 sumomo Exp $ # SHELL=/bin/sh .SUFFIXES: Index: julius4/adinrec/adinrec.c diff -u julius4/adinrec/adinrec.c:1.9 julius4/adinrec/adinrec.c:1.10 --- julius4/adinrec/adinrec.c:1.9 Fri May 13 17:43:23 2011 +++ julius4/adinrec/adinrec.c Fri Jul 27 17:44:48 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Wed Mar 23 20:33:01 2005 * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2001-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:57 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:57 +0900 Subject: [Julius-cvs 765] CVS update: julius4/man Message-ID: <1343378697.693923.24278.nullmailer@users.sourceforge.jp> Index: julius4/man/Makefile.in diff -u julius4/man/Makefile.in:1.4 julius4/man/Makefile.in:1.5 --- julius4/man/Makefile.in:1.4 Fri Apr 29 14:09:20 2011 +++ julius4/man/Makefile.in Fri Jul 27 17:44:57 2012 @@ -1,9 +1,9 @@ -# Copyright (c) 1991-2011 Kawahara Lab., Kyoto University +# Copyright (c) 1991-2012 Kawahara Lab., Kyoto University # Copyright (c) 2001-2005 Shikano Lab., Nara Institute of Science and Technology -# Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +# Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology # All rights reserved # -# $Id: Makefile.in,v 1.4 2011/04/29 05:09:20 sumomo Exp $ +# $Id: Makefile.in,v 1.5 2012/07/27 08:44:57 sumomo Exp $ # SHELL=/bin/sh RM=@RM@ -f From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:49 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:49 +0900 Subject: [Julius-cvs 766] CVS update: julius4/libjulius/include/julius Message-ID: <1343378689.762999.23841.nullmailer@users.sourceforge.jp> Index: julius4/libjulius/include/julius/beam.h diff -u julius4/libjulius/include/julius/beam.h:1.3 julius4/libjulius/include/julius/beam.h:1.4 --- julius4/libjulius/include/julius/beam.h:1.3 Fri Apr 29 14:09:14 2011 +++ julius4/libjulius/include/julius/beam.h Fri Jul 27 17:44:49 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Mon Mar 7 15:12:29 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libjulius/include/julius/callback.h diff -u julius4/libjulius/include/julius/callback.h:1.3 julius4/libjulius/include/julius/callback.h:1.4 --- julius4/libjulius/include/julius/callback.h:1.3 Fri Apr 29 14:09:14 2011 +++ julius4/libjulius/include/julius/callback.h Fri Jul 27 17:44:49 2012 @@ -12,13 +12,13 @@ * @author Akinobu Lee * @date Mon Nov 5 18:30:04 2007 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libjulius/include/julius/define.h diff -u julius4/libjulius/include/julius/define.h:1.7 julius4/libjulius/include/julius/define.h:1.8 --- julius4/libjulius/include/julius/define.h:1.7 Fri Apr 29 14:09:14 2011 +++ julius4/libjulius/include/julius/define.h Fri Jul 27 17:44:49 2012 @@ -27,13 +27,13 @@ * @author Akinobu LEE * @date Mon Mar 7 15:17:26 2005 * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libjulius/include/julius/extern.h diff -u julius4/libjulius/include/julius/extern.h:1.18 julius4/libjulius/include/julius/extern.h:1.19 --- julius4/libjulius/include/julius/extern.h:1.18 Fri Apr 29 14:09:15 2011 +++ julius4/libjulius/include/julius/extern.h Fri Jul 27 17:44:49 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Mon Mar 7 23:19:14 2005 * - * $Revision: 1.18 $ + * $Revision: 1.19 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libjulius/include/julius/global.h diff -u julius4/libjulius/include/julius/global.h:1.5 julius4/libjulius/include/julius/global.h:1.6 --- julius4/libjulius/include/julius/global.h:1.5 Fri Apr 29 14:09:15 2011 +++ julius4/libjulius/include/julius/global.h Fri Jul 27 17:44:49 2012 @@ -14,13 +14,13 @@ * @author Akinobu Lee * @date Sun Sep 18 23:53:17 2005 * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libjulius/include/julius/graph.h diff -u julius4/libjulius/include/julius/graph.h:1.3 julius4/libjulius/include/julius/graph.h:1.4 --- julius4/libjulius/include/julius/graph.h:1.3 Fri Apr 29 14:09:15 2011 +++ julius4/libjulius/include/julius/graph.h Fri Jul 27 17:44:49 2012 @@ -17,13 +17,13 @@ * @author Akinobu Lee * @date Thu Aug 16 00:30:54 2007 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libjulius/include/julius/jconf.h diff -u julius4/libjulius/include/julius/jconf.h:1.12 julius4/libjulius/include/julius/jconf.h:1.13 --- julius4/libjulius/include/julius/jconf.h:1.12 Fri May 13 17:38:33 2011 +++ julius4/libjulius/include/julius/jconf.h Fri Jul 27 17:44:49 2012 @@ -23,13 +23,13 @@ * @author Akinobu Lee * @date Fri Feb 16 13:42:28 2007 * - * $Revision: 1.12 $ + * $Revision: 1.13 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libjulius/include/julius/jfunc.h diff -u julius4/libjulius/include/julius/jfunc.h:1.9 julius4/libjulius/include/julius/jfunc.h:1.10 --- julius4/libjulius/include/julius/jfunc.h:1.9 Fri Apr 29 14:09:15 2011 +++ julius4/libjulius/include/julius/jfunc.h Fri Jul 27 17:44:49 2012 @@ -12,13 +12,13 @@ * @author Akinobu Lee * @date Tue Nov 6 22:41:00 2007 * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libjulius/include/julius/julius.h diff -u julius4/libjulius/include/julius/julius.h:1.7 julius4/libjulius/include/julius/julius.h:1.8 --- julius4/libjulius/include/julius/julius.h:1.7 Fri Apr 29 14:09:15 2011 +++ julius4/libjulius/include/julius/julius.h Fri Jul 27 17:44:49 2012 @@ -12,13 +12,13 @@ * @author Akinobu LEE * @date Thu Mar 17 21:08:21 2005 * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libjulius/include/julius/juliuslib.h diff -u julius4/libjulius/include/julius/juliuslib.h:1.3 julius4/libjulius/include/julius/juliuslib.h:1.4 --- julius4/libjulius/include/julius/juliuslib.h:1.3 Fri Apr 29 14:09:15 2011 +++ julius4/libjulius/include/julius/juliuslib.h Fri Jul 27 17:44:49 2012 @@ -12,13 +12,13 @@ * @author Akinobu Lee * @date Tue Nov 6 22:42:12 2007 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libjulius/include/julius/misc.h diff -u julius4/libjulius/include/julius/misc.h:1.3 julius4/libjulius/include/julius/misc.h:1.4 --- julius4/libjulius/include/julius/misc.h:1.3 Fri Apr 29 14:09:15 2011 +++ julius4/libjulius/include/julius/misc.h Fri Jul 27 17:44:49 2012 @@ -12,13 +12,13 @@ * @author Akinobu Lee * @date Mon May 30 15:58:16 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libjulius/include/julius/multi-gram.h diff -u julius4/libjulius/include/julius/multi-gram.h:1.3 julius4/libjulius/include/julius/multi-gram.h:1.4 --- julius4/libjulius/include/julius/multi-gram.h:1.3 Fri Apr 29 14:09:15 2011 +++ julius4/libjulius/include/julius/multi-gram.h Fri Jul 27 17:44:49 2012 @@ -12,13 +12,13 @@ * @author Akinobu Lee * @date Fri Jul 8 14:47:05 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libjulius/include/julius/plugin.h diff -u julius4/libjulius/include/julius/plugin.h:1.2 julius4/libjulius/include/julius/plugin.h:1.3 --- julius4/libjulius/include/julius/plugin.h:1.2 Fri Apr 29 14:09:15 2011 +++ julius4/libjulius/include/julius/plugin.h Fri Jul 27 17:44:49 2012 @@ -12,13 +12,13 @@ * @author Akinobu Lee * @date Sat Aug 2 13:04:15 2008 * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libjulius/include/julius/recog.h diff -u julius4/libjulius/include/julius/recog.h:1.15 julius4/libjulius/include/julius/recog.h:1.16 --- julius4/libjulius/include/julius/recog.h:1.15 Fri May 13 17:38:33 2011 +++ julius4/libjulius/include/julius/recog.h Fri Jul 27 17:44:49 2012 @@ -70,13 +70,13 @@ * @author Akinobu Lee * @date Fri Feb 16 13:42:28 2007 * - * $Revision: 1.15 $ + * $Revision: 1.16 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libjulius/include/julius/search.h diff -u julius4/libjulius/include/julius/search.h:1.3 julius4/libjulius/include/julius/search.h:1.4 --- julius4/libjulius/include/julius/search.h:1.3 Fri Apr 29 14:09:15 2011 +++ julius4/libjulius/include/julius/search.h Fri Jul 27 17:44:49 2012 @@ -29,13 +29,13 @@ * @author Akinobu Lee * @date Wed Sep 07 07:40:11 2005 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libjulius/include/julius/useropt.h diff -u julius4/libjulius/include/julius/useropt.h:1.3 julius4/libjulius/include/julius/useropt.h:1.4 --- julius4/libjulius/include/julius/useropt.h:1.3 Fri Apr 29 14:09:15 2011 +++ julius4/libjulius/include/julius/useropt.h Fri Jul 27 17:44:49 2012 @@ -12,13 +12,13 @@ * @author Akinobu Lee * @date Sun Sep 02 03:09:12 2007 * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libjulius/include/julius/wchmm.h diff -u julius4/libjulius/include/julius/wchmm.h:1.6 julius4/libjulius/include/julius/wchmm.h:1.7 --- julius4/libjulius/include/julius/wchmm.h:1.6 Fri Apr 29 14:09:15 2011 +++ julius4/libjulius/include/julius/wchmm.h Fri Jul 27 17:44:49 2012 @@ -28,13 +28,13 @@ * @author Akinobu Lee * @date Sun Sep 18 21:31:32 2005 * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:57 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:57 +0900 Subject: [Julius-cvs 767] CVS update: julius4/mkgshmm Message-ID: <1343378697.907295.24313.nullmailer@users.sourceforge.jp> Index: julius4/mkgshmm/Makefile.in diff -u julius4/mkgshmm/Makefile.in:1.4 julius4/mkgshmm/Makefile.in:1.5 --- julius4/mkgshmm/Makefile.in:1.4 Fri Apr 29 14:09:20 2011 +++ julius4/mkgshmm/Makefile.in Fri Jul 27 17:44:57 2012 @@ -1,6 +1,6 @@ -# Copyright (c) 2001-2011 Kawahara Lab., Kyoto University +# Copyright (c) 2001-2012 Kawahara Lab., Kyoto University # Copyright (c) 2001-2005 Shikano Lab., Nara Institute of Science and Technology -# Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +# Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology # All rights reserved SHELL=/bin/sh Index: julius4/mkgshmm/configure.in diff -u julius4/mkgshmm/configure.in:1.4 julius4/mkgshmm/configure.in:1.5 --- julius4/mkgshmm/configure.in:1.4 Fri Apr 29 11:01:55 2011 +++ julius4/mkgshmm/configure.in Fri Jul 27 17:44:57 2012 @@ -1,6 +1,6 @@ -dnl Copyright (c) 2001-2011 Kawahara Lab., Kyoto University +dnl Copyright (c) 2001-2012 Kawahara Lab., Kyoto University dnl Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology -dnl Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +dnl Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology dnl All rights reserved AC_INIT(mkgshmm.in) Index: julius4/mkgshmm/mkgshmm.in diff -u julius4/mkgshmm/mkgshmm.in:1.3 julius4/mkgshmm/mkgshmm.in:1.4 --- julius4/mkgshmm/mkgshmm.in:1.3 Fri Apr 29 14:09:20 2011 +++ julius4/mkgshmm/mkgshmm.in Fri Jul 27 17:44:57 2012 @@ -1,7 +1,7 @@ #!@PERL@ -# Copyright (c) 2001-2011 Kawahara Lab., Kyoto University +# Copyright (c) 2001-2012 Kawahara Lab., Kyoto University # Copyright (c) 2001-2005 Shikano Lab., Nara Institute of Science and Technology -# Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +# Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology # All rights reserved # # mkgshmm.pl --- output Gaussian Mixture Selection model for Julius-3.2 From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:57 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:57 +0900 Subject: [Julius-cvs 768] CVS update: julius4/mkbingram Message-ID: <1343378697.762636.24288.nullmailer@users.sourceforge.jp> Index: julius4/mkbingram/Makefile.in diff -u julius4/mkbingram/Makefile.in:1.6 julius4/mkbingram/Makefile.in:1.7 --- julius4/mkbingram/Makefile.in:1.6 Fri Apr 29 14:09:20 2011 +++ julius4/mkbingram/Makefile.in Fri Jul 27 17:44:57 2012 @@ -1,9 +1,9 @@ -# Copyright (c) 1991-2011 Kawahara Lab., Kyoto University +# Copyright (c) 1991-2012 Kawahara Lab., Kyoto University # Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology -# Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology +# Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology # All rights reserved # -# $Id: Makefile.in,v 1.6 2011/04/29 05:09:20 sumomo Exp $ +# $Id: Makefile.in,v 1.7 2012/07/27 08:44:57 sumomo Exp $ # SHELL=/bin/sh .SUFFIXES: Index: julius4/mkbingram/mkbingram.c diff -u julius4/mkbingram/mkbingram.c:1.4 julius4/mkbingram/mkbingram.c:1.5 --- julius4/mkbingram/mkbingram.c:1.4 Fri Apr 29 14:09:20 2011 +++ julius4/mkbingram/mkbingram.c Fri Jul 27 17:44:57 2012 @@ -18,19 +18,19 @@ * @author Akinobu LEE * @date Thu Mar 24 12:22:27 2005 * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ /* mkbingram --- make binary n-gram for JULIUS from ARPA standard format */ -/* $Id: mkbingram.c,v 1.4 2011/04/29 05:09:20 sumomo Exp $ */ +/* $Id: mkbingram.c,v 1.5 2012/07/27 08:44:57 sumomo Exp $ */ #include #include From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 17:44:57 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 17:44:57 +0900 Subject: [Julius-cvs 769] CVS update: julius4/libsent/src/wav2mfcc Message-ID: <1343378697.629239.24270.nullmailer@users.sourceforge.jp> Index: julius4/libsent/src/wav2mfcc/mfcc-core.c diff -u julius4/libsent/src/wav2mfcc/mfcc-core.c:1.6 julius4/libsent/src/wav2mfcc/mfcc-core.c:1.7 --- julius4/libsent/src/wav2mfcc/mfcc-core.c:1.6 Fri Apr 29 14:09:20 2011 +++ julius4/libsent/src/wav2mfcc/mfcc-core.c Fri Jul 27 17:44:57 2012 @@ -17,13 +17,13 @@ * @author Akinobu Lee * @date Mon Aug 7 11:55:45 2006 * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/wav2mfcc/para.c diff -u julius4/libsent/src/wav2mfcc/para.c:1.9 julius4/libsent/src/wav2mfcc/para.c:1.10 --- julius4/libsent/src/wav2mfcc/para.c:1.9 Fri Apr 29 14:09:20 2011 +++ julius4/libsent/src/wav2mfcc/para.c Fri Jul 27 17:44:57 2012 @@ -16,13 +16,13 @@ * @author Akinobu Lee * @date Fri Oct 27 14:55:00 2006 * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/wav2mfcc/ss.c diff -u julius4/libsent/src/wav2mfcc/ss.c:1.4 julius4/libsent/src/wav2mfcc/ss.c:1.5 --- julius4/libsent/src/wav2mfcc/ss.c:1.4 Fri Apr 29 14:09:20 2011 +++ julius4/libsent/src/wav2mfcc/ss.c Fri Jul 27 17:44:57 2012 @@ -19,13 +19,13 @@ * @author Akinobu LEE * @date Thu Feb 17 17:19:54 2005 * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ Index: julius4/libsent/src/wav2mfcc/wav2mfcc-pipe.c diff -u julius4/libsent/src/wav2mfcc/wav2mfcc-pipe.c:1.7 julius4/libsent/src/wav2mfcc/wav2mfcc-pipe.c:1.8 --- julius4/libsent/src/wav2mfcc/wav2mfcc-pipe.c:1.7 Thu Jul 28 16:07:48 2011 +++ julius4/libsent/src/wav2mfcc/wav2mfcc-pipe.c Fri Jul 27 17:44:57 2012 @@ -20,13 +20,13 @@ * @author Akinobu LEE * @date Thu Feb 17 18:12:30 2005 * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * */ /* - * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University + * Copyright (c) 1991-2012 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology - * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology + * Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology * All rights reserved */ From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 19:02:04 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 19:02:04 +0900 Subject: [Julius-cvs 770] CVS update: julius4/libjulius Message-ID: <1343383324.820584.23697.nullmailer@users.sourceforge.jp> Index: julius4/libjulius/configure diff -u julius4/libjulius/configure:1.15 julius4/libjulius/configure:1.16 --- julius4/libjulius/configure:1.15 Mon Dec 5 14:42:39 2011 +++ julius4/libjulius/configure Fri Jul 27 19:02:04 2012 @@ -592,7 +592,7 @@ JULIUS_PRODUCTNAME=JuliusLib -JULIUS_VERSION=4.2.1 +JULIUS_VERSION=4.2.2 # Check whether --enable-pthread or --disable-pthread was given. Index: julius4/libjulius/configure.in diff -u julius4/libjulius/configure.in:1.16 julius4/libjulius/configure.in:1.17 --- julius4/libjulius/configure.in:1.16 Fri Jul 27 17:44:49 2012 +++ julius4/libjulius/configure.in Fri Jul 27 19:02:04 2012 @@ -4,7 +4,7 @@ dnl Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology dnl All rights reserved dnl -dnl $Id: configure.in,v 1.16 2012/07/27 08:44:49 sumomo Exp $ +dnl $Id: configure.in,v 1.17 2012/07/27 10:02:04 sumomo Exp $ dnl AC_INIT(src/search_bestfirst_main.c) @@ -12,7 +12,7 @@ AC_CONFIG_AUX_DIR(../support) JULIUS_PRODUCTNAME=JuliusLib -JULIUS_VERSION=4.2.1 +JULIUS_VERSION=4.2.2 dnl Checks for options From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 19:02:04 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 19:02:04 +0900 Subject: [Julius-cvs 771] CVS update: julius4/libsent Message-ID: <1343383324.895626.23708.nullmailer@users.sourceforge.jp> Index: julius4/libsent/configure diff -u julius4/libsent/configure:1.29 julius4/libsent/configure:1.30 --- julius4/libsent/configure:1.29 Mon Dec 5 14:42:39 2011 +++ julius4/libsent/configure Fri Jul 27 19:02:04 2012 @@ -563,7 +563,7 @@ ac_configure=$ac_aux_dir/configure # This should be Cygnus configure. -LIBSENT_VERSION=4.2.1 +LIBSENT_VERSION=4.2.2 # specify mic type # Check whether --with-mictype or --without-mictype was given. Index: julius4/libsent/configure.in diff -u julius4/libsent/configure.in:1.29 julius4/libsent/configure.in:1.30 --- julius4/libsent/configure.in:1.29 Fri Jul 27 17:44:50 2012 +++ julius4/libsent/configure.in Fri Jul 27 19:02:04 2012 @@ -3,7 +3,7 @@ dnl Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology dnl All rights reserved dnl -dnl $Id: configure.in,v 1.29 2012/07/27 08:44:50 sumomo Exp $ +dnl $Id: configure.in,v 1.30 2012/07/27 10:02:04 sumomo Exp $ dnl dnl Process this file with autoconf to produce a configure script. @@ -11,7 +11,7 @@ AC_CONFIG_HEADER(include/sent/config.h) AC_CONFIG_AUX_DIR(../support) -LIBSENT_VERSION=4.2.1 +LIBSENT_VERSION=4.2.2 dnl Checks for options # specify mic type From sumomo ¡÷ users.sourceforge.jp Fri Jul 27 19:02:04 2012 From: sumomo ¡÷ users.sourceforge.jp (sumomo ¡÷ users.sourceforge.jp) Date: Fri, 27 Jul 2012 19:02:04 +0900 Subject: [Julius-cvs 772] CVS update: julius4/support Message-ID: <1343383324.982531.23719.nullmailer@users.sourceforge.jp> Index: julius4/support/build-all.sh diff -u julius4/support/build-all.sh:1.12 julius4/support/build-all.sh:1.13 --- julius4/support/build-all.sh:1.12 Mon Dec 5 14:42:40 2011 +++ julius4/support/build-all.sh Fri Jul 27 19:02:04 2012 @@ -6,7 +6,7 @@ # # argument: any configure options except "--enable-setup=..." is allowed. # -JULIUS_VERSION=4.2.1 +JULIUS_VERSION=4.2.2 ######################################################################