From 1808b2d8a9004df1ac0c05ac10a9b5030db1f5c2 Mon Sep 17 00:00:00 2001 From: HAT Date: Sat, 10 Sep 2011 01:03:17 +0900 Subject: [PATCH] make-casetable.pl and make-precompose.h.pl moved. --- contrib/shell_utils/make-casetable.pl | 8 ++++---- contrib/shell_utils/make-precompose.h.pl | 2 +- libatalk/unicode/precompose.h | 2 +- libatalk/unicode/utf16_case.c | 2 +- libatalk/unicode/utf16_casetable.h | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/contrib/shell_utils/make-casetable.pl b/contrib/shell_utils/make-casetable.pl index 9af15a9d..4c719473 100755 --- a/contrib/shell_utils/make-casetable.pl +++ b/contrib/shell_utils/make-casetable.pl @@ -87,7 +87,7 @@ printf (CHEADER "\/\*\n"); printf (CHEADER "DO NOT EDIT BY HAND\!\!\!\n"); printf (CHEADER "\n"); printf (CHEADER "This file is generated by\n"); -printf (CHEADER " contrib/misc/make-casetable.pl %s %s %s\n", $ARGV[0], $ARGV[1], $ARGV[2]); +printf (CHEADER " contrib/shell_utils/make-casetable.pl %s %s %s\n", $ARGV[0], $ARGV[1], $ARGV[2]); printf (CHEADER "\n"); printf (CHEADER "%s is got from\n", $ARGV[0]); printf (CHEADER "http\:\/\/www.unicode.org\/Public\/UNIDATA\/UnicodeData.txt\n"); @@ -98,7 +98,7 @@ printf (CSOURCE "\/\*\n"); printf (CSOURCE "DO NOT EDIT BY HAND\!\!\!\n"); printf (CSOURCE "\n"); printf (CSOURCE "This file is generated by\n"); -printf (CSOURCE " contrib/misc/make-casetable.pl %s %s %s\n", $ARGV[0], $ARGV[1], $ARGV[2]); +printf (CSOURCE " contrib/shell_utils/make-casetable.pl %s %s %s\n", $ARGV[0], $ARGV[1], $ARGV[2]); printf (CSOURCE "\n"); printf (CSOURCE "%s is got from\n", $ARGV[0]); printf (CSOURCE "http\:\/\/www.unicode.org\/Public\/UNIDATA\/UnicodeData.txt\n"); @@ -231,7 +231,7 @@ sub make_array{ $char_start = ($block_start -1)* 64; $char_end = ($block_end * 64) -1; - printf(CHEADER "static const uint16\_t %s\_table\_%d\[%d\] \= \{\n", + printf(CHEADER "static const u\_int16\_t %s\_table\_%d\[%d\] \= \{\n", $_[0], $table_no, $char_end - $char_start +1); for ($char = $char_start ; $char <= $char_end ; $char++) { @@ -291,7 +291,7 @@ sub make_array{ $char_start = ($block_start -1)* 64; $char_end = ($block_end * 64) -1; - printf(CHEADER "static const uint32\_t %s\_table\_sp\_%d\[%d\] \= \{\n", + printf(CHEADER "static const u\_int32\_t %s\_table\_sp\_%d\[%d\] \= \{\n", $_[0], $table_no, $char_end - $char_start +1); for ($char = $char_start ; $char <= $char_end ; $char++) { diff --git a/contrib/shell_utils/make-precompose.h.pl b/contrib/shell_utils/make-precompose.h.pl index 11cb8d9b..ad42d9c3 100755 --- a/contrib/shell_utils/make-precompose.h.pl +++ b/contrib/shell_utils/make-precompose.h.pl @@ -181,7 +181,7 @@ system("sort -k 2 compose_sp.TEMP \> decompose_sp.SORT"); print ("\/\* DO NOT EDIT BY HAND\!\!\! \*\/\n"); print ("\/\* This file is generated by \*\/\n"); -printf ("\/\* contrib/misc/make-precompose.h.pl %s \*\/\n", $ARGV[0]); +printf ("\/\* contrib/shell_utils/make-precompose.h.pl %s \*\/\n", $ARGV[0]); print ("\n"); printf ("\/\* %s is got from \*\/\n", $ARGV[0]); print ("\/\* http\:\/\/www.unicode.org\/Public\/UNIDATA\/UnicodeData.txt \*\/\n"); diff --git a/libatalk/unicode/precompose.h b/libatalk/unicode/precompose.h index c925b00d..5b47a78b 100644 --- a/libatalk/unicode/precompose.h +++ b/libatalk/unicode/precompose.h @@ -1,6 +1,6 @@ /* DO NOT EDIT BY HAND!!! */ /* This file is generated by */ -/* contrib/misc/make-precompose.h.pl UnicodeData.txt */ +/* contrib/shell_utils/make-precompose.h.pl UnicodeData.txt */ /* UnicodeData.txt is got from */ /* http://www.unicode.org/Public/UNIDATA/UnicodeData.txt */ diff --git a/libatalk/unicode/utf16_case.c b/libatalk/unicode/utf16_case.c index dab888c2..3fc7ed36 100644 --- a/libatalk/unicode/utf16_case.c +++ b/libatalk/unicode/utf16_case.c @@ -2,7 +2,7 @@ DO NOT EDIT BY HAND!!! This file is generated by - contrib/misc/make-casetable.pl UnicodeData.txt utf16_casetable.h utf16_case.c + contrib/shell_utils/make-casetable.pl UnicodeData.txt utf16_casetable.h utf16_case.c UnicodeData.txt is got from http://www.unicode.org/Public/UNIDATA/UnicodeData.txt diff --git a/libatalk/unicode/utf16_casetable.h b/libatalk/unicode/utf16_casetable.h index 9a1366e3..cc00975e 100644 --- a/libatalk/unicode/utf16_casetable.h +++ b/libatalk/unicode/utf16_casetable.h @@ -2,7 +2,7 @@ DO NOT EDIT BY HAND!!! This file is generated by - contrib/misc/make-casetable.pl UnicodeData.txt utf16_casetable.h utf16_case.c + contrib/shell_utils/make-casetable.pl UnicodeData.txt utf16_casetable.h utf16_case.c UnicodeData.txt is got from http://www.unicode.org/Public/UNIDATA/UnicodeData.txt -- 2.39.2