summaryrefslogtreecommitdiff
path: root/source3/modules/CP850.c
AgeCommit message (Collapse)AuthorFilesLines
2003-08-28Fix rename of struct gap. ab - LOOK AT THIS. You changed one moduleJeremy Allison1-1/+1
but not the other. This now compiles but I need verification. Jeremy. (This used to be commit 787c9764b300651af83a6e54f3090cfcf078a8a9)
2003-08-28Refactor charset plugins a bit and add CP437 module.Alexander Bokovoy1-73/+3
Now all 8-bit charsets with gaps (not all symbols defined) could be produced through one macro -- SMB_GENERATE_CHARSET_MODULE_8_BIT_GAP(CHARSETNAME) within source file with three charset tables. Full source code for such modules can be generated by source/script/gen-8bit-gap.sh script which was taken from GNU libc and changed slightly to follow our data types and structure. (This used to be commit 37042c7bc0f349370e93e4bed37d8fa371013247)
2003-08-27Remove what looks like gcc-isms.Jeremy Allison1-16/+17
Jeremy. (This used to be commit ed72e0a1d56f0da29e4ef964f560f0962630e080)
2003-08-27Be consistent about using capital letters in the function names. (The onlyPaul Green1-5/+5
one that really matters is the init entrypoint, but I changed the others to remain consistent). (This used to be commit ce0469ad1c01b36d3f0000756f6917478df37d02)
2003-08-26Fix for #150.Alexander Bokovoy1-0/+414
We now fallback to Samba-provided CP850 charset module if CP850 or IBM850 does not exist on target system at runtime. 1. Introduce CP850 charset module based on charmaps table from GNU libc 2.2.5 2. Make CP850 charset module shared and build it by default Should fix Solaris run-time (This used to be commit e855dc8c9115fa11d315eb34d57722ff612daa11)