From 53d4ffcc227cd2d3a998718faeeeca0d1431e54b Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 28 May 2012 12:13:14 +1000 Subject: s3-iconv: Remove unused script/gen-8bit-gap.sh We decided to rely on a system iconv rather than these modules. Andrew Bartlett --- source3/script/gen-8bit-gap.sh.in | 48 --------------------------------------- 1 file changed, 48 deletions(-) delete mode 100755 source3/script/gen-8bit-gap.sh.in (limited to 'source3/script/gen-8bit-gap.sh.in') diff --git a/source3/script/gen-8bit-gap.sh.in b/source3/script/gen-8bit-gap.sh.in deleted file mode 100755 index 0ceaa8128b..0000000000 --- a/source3/script/gen-8bit-gap.sh.in +++ /dev/null @@ -1,48 +0,0 @@ -#!/bin/sh -if test $# -ne 2 ; then - echo "Usage: $0 " - exit 1 -fi - -CHARMAP=$1 -CHARSETNAME=$2 - -echo "/* " -echo " * Conversion table for $CHARSETNAME charset " -echo " * " -echo " * Conversion tables are generated using $CHARMAP table " -echo " * and source/script/gen-8bit-gap.sh script " -echo " * " -echo " * This program is free software; you can redistribute it and/or modify " -echo " * it under the terms of the GNU General Public License as published by " -echo " * the Free Software Foundation; either version 3 of the License, or " -echo " * (at your option) any later version. " -echo " * " -echo " * This program is distributed in the hope that it will be useful," -echo " * but WITHOUT ANY WARRANTY; without even the implied warranty of " -echo " * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the " -echo " * GNU General Public License for more details. " -echo " * " -echo " * You should have received a copy of the GNU General Public License " -echo " * along with this program; if not, see ." -echo " */" - -echo '#include "includes.h"' -echo -echo "static const uint16 to_ucs2[256] = {" -cat "$CHARMAP" | @AWK@ -f @srcdir@/script/gen-8bit-gap.awk -echo "};" -echo -echo "static const struct charset_gap_table from_idx[] = {" -sed -ne 's/^[[:space:]]*.x\(..\).*/\1 \2/p' \ - "$CHARMAP" | sort -u | @AWK@ -f @srcdir@/script/gaptab.awk -echo "};" -echo -echo "SMB_GENERATE_CHARSET_MODULE_8_BIT_GAP($CHARSETNAME)" -echo -- cgit