summaryrefslogtreecommitdiff
path: root/tool/build-transcode
blob: fa71155530979a0b57508b855a7e2853814c30ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

[ "$1" -a -d "$1" ] && { cd "$1" || exit $?; } && shift
[ "$#" = 0 ] && set enc/trans/*.trans
for src; do
    case "$src" in
    *.trans)
        c="`dirname $src`/`basename $src .trans`.c"
	${BASERUBY-ruby} tool/transcode-tblgen.rb -vo "$c" "$src"
	;;
    *)
	echo "$0: don't know how to deal with $src"
	continue
	;;
    esac
done
r> 2016-06-29Use LONG_LONGnobu * missing/crypt.h (B64): use LONG_LONG instead of long long directly. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55533 b2dd03c8-39d4-4d8f-98ff-823fe69b080e 2016-06-04crypt.h: remove initializednobu * missing/crypt.h (struct crypt_data): remove unnecessary member "initialized". * missing/crypt.c (des_setkey_r): nothing to be initialized in crypt_data. * configure.in (struct crypt_data): check for "initialized" in struct crypt_data, which may be only in glibc, and isn't on AIX at least. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55272 b2dd03c8-39d4-4d8f-98ff-823fe69b080e 2016-06-01crypt.h: get rid of conflictnobu * missing/crypt.h: move crypt.h to get rid of conflict with the system header. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55247 b2dd03c8-39d4-4d8f-98ff-823fe69b080e