~vcs-imports/samba/main

« back to all changes in this revision

Viewing changes to source/script/gen-8bit-gap.sh.in

  • Committer: jerry
  • Date: 2006-07-14 21:48:39 UTC
  • Revision ID: vcs-imports@canonical.com-20060714214839-586d8c489a8fcead
gutting trunk to move to svn:externals

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
if test $# -ne 2 ; then
3
 
        echo "Usage: $0 <charmap file> <CHARSET NAME>"
4
 
        exit 1
5
 
fi
6
 
 
7
 
CHARMAP=$1
8
 
CHARSETNAME=$2
9
 
 
10
 
echo "/* "
11
 
echo " * Conversion table for $CHARSETNAME charset "
12
 
echo " * "
13
 
echo " * Conversion tables are generated using $CHARMAP table "
14
 
echo " * and source/script/gen-8bit-gap.sh script "
15
 
echo " * "
16
 
echo " * This program is free software; you can redistribute it and/or modify "
17
 
echo " * it under the terms of the GNU General Public License as published by "
18
 
echo " * the Free Software Foundation; either version 2 of the License, or "
19
 
echo " * (at your option) any later version. "
20
 
echo " *  "
21
 
echo " * This program is distributed in the hope that it will be useful,"
22
 
echo " * but WITHOUT ANY WARRANTY; without even the implied warranty of "
23
 
echo " * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the "
24
 
echo " * GNU General Public License for more details. "
25
 
echo " *  "
26
 
echo " * You should have received a copy of the GNU General Public License "
27
 
echo " * along with this program; if not, write to the Free Software "
28
 
echo " * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. "
29
 
echo " */"
30
 
 
31
 
echo '#include "includes.h"'
32
 
echo
33
 
echo "static const uint16 to_ucs2[256] = {"
34
 
cat "$CHARMAP" | @AWK@ -f @srcdir@/script/gen-8bit-gap.awk
35
 
echo "};"
36
 
echo
37
 
echo "static const struct charset_gap_table from_idx[] = {"
38
 
sed -ne 's/^<U\(....\).*/\1/p' \
39
 
    "$CHARMAP" | sort -u | @AWK@ -f @srcdir@/script/gap.awk
40
 
echo "  { 0xffff, 0xffff, 0 }"
41
 
echo "};"
42
 
echo
43
 
echo "static const unsigned char from_ucs2[] = {"
44
 
sed -ne 's/^<U\(....\)>[[:space:]]*.x\(..\).*/\1 \2/p' \
45
 
    "$CHARMAP" | sort -u | @AWK@ -f @srcdir@/script/gaptab.awk
46
 
echo "};"
47
 
echo 
48
 
echo "SMB_GENERATE_CHARSET_MODULE_8_BIT_GAP($CHARSETNAME)"
49
 
echo