diff --git a/scripts/iconv.exe b/scripts/iconv.exe deleted file mode 100755 index fb2d0d2a..00000000 Binary files a/scripts/iconv.exe and /dev/null differ diff --git a/scripts/libcharset1.dll b/scripts/libcharset1.dll deleted file mode 100755 index aec4d231..00000000 Binary files a/scripts/libcharset1.dll and /dev/null differ diff --git a/scripts/libiconv2.dll b/scripts/libiconv2.dll deleted file mode 100755 index fb1ffba3..00000000 Binary files a/scripts/libiconv2.dll and /dev/null differ diff --git a/scripts/libintl3.dll b/scripts/libintl3.dll deleted file mode 100755 index 4f309be7..00000000 Binary files a/scripts/libintl3.dll and /dev/null differ diff --git a/scripts/ucs2-to-utf8.bat b/scripts/ucs2-to-utf8.bat deleted file mode 100755 index 7428b82d..00000000 --- a/scripts/ucs2-to-utf8.bat +++ /dev/null @@ -1,61 +0,0 @@ -@echo off - -setlocal - -echo Recoding 'source' files from UCS-2-LE to UTF-8... - -set PATH=%~d0%~p0;%PATH% - -cd /d "%~d0%~p0" -cd ..\source - -:: process forms, macros, queries, reports, and modules - -echo tables -cd tables -if exist *.data ( - forfiles /m *.data /c "cmd /c iconv -f UCS-2LE -t UTF-8 @file>@fname.txt">NUL - del *.data -) - -echo forms -cd ..\forms -if exist *.data ( - forfiles /m *.data /c "cmd /c iconv -f UCS-2LE -t UTF-8 @file>@fname.txt">NUL - del *.data -) - -echo macros -cd ..\macros -if exist *.data ( - forfiles /m *.data /c "cmd /c iconv -f UCS-2LE -t UTF-8 @file>@fname.txt">NUL - del *.data -) - -echo queries -cd ..\queries -if exist *.data ( - forfiles /m *.data /c "cmd /c iconv -f UCS-2LE -t UTF-8 @file>@fname.txt">NUL - del *.data -) - -echo reports -cd ..\reports -if exist *.data ( - forfiles /m *.data /c "cmd /c iconv -f UCS-2LE -t UTF-8 @file>@fname.txt">NUL - del *.data -) - -echo modules -cd ..\modules -:: Exported text from Access for 'modules' is not UCS-2; don't convert. -if exist *.data ( - forfiles /m *.data /c "cmd /c copy @file @fname.txt">NUL - del *.data -) - -echo Done. - -endlocal - -pause diff --git a/scripts/utf8-to-ucs2.bat b/scripts/utf8-to-ucs2.bat deleted file mode 100755 index d5878b18..00000000 --- a/scripts/utf8-to-ucs2.bat +++ /dev/null @@ -1,61 +0,0 @@ -@echo off - -setlocal - -echo Recoding 'source' files from UTF-8 to UCS-2-LE... - -set PATH=%~d0%~p0;%PATH% - -cd /d "%~d0%~p0" -cd ..\source - -:: process forms, macros, queries, reports, and modules - -echo tables -cd tables -del *.data >NUL 2>NUL -if exist *.txt ( - forfiles /m *.txt /c "cmd /c iconv -f UTF-8 -t UCS-2LE @file>@fname.data">NUL -) - -echo forms -cd ..\forms -del *.data >NUL 2>NUL -if exist *.txt ( - forfiles /m *.txt /c "cmd /c iconv -f UTF-8 -t UCS-2LE @file>@fname.data">NUL -) - -echo macros -cd ..\macros -del *.data >NUL 2>NUL -if exist *.txt ( - forfiles /m *.txt /c "cmd /c iconv -f UTF-8 -t UCS-2LE @file>@fname.data">NUL -) - -echo queries -cd ..\queries -del *.data >NUL 2>NUL -if exist *.txt ( - forfiles /m *.txt /c "cmd /c iconv -f UTF-8 -t UCS-2LE @file>@fname.data">NUL -) - -echo reports -cd ..\reports -del *.data >NUL 2>NUL -if exist *.txt ( - forfiles /m *.txt /c "cmd /c iconv -f UTF-8 -t UCS-2LE @file>@fname.data">NUL -) - -echo modules -cd ..\modules -:: Exported text from Access for 'modules' is not UCS-2; don't convert. -del *.data >NUL 2>NUL -if exist *.txt ( - forfiles /m *.txt /c "cmd /c copy @file @fname.data">NUL -) - -echo Done. - -endlocal - -pause