The R Project SVN R

Rev

Rev 47863 | Rev 47926 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 47863 Rev 47869
Line 295... Line 295...
295
sh configure --build=i386-pc-mingw32 --disable-nls
295
sh configure --build=i386-pc-mingw32 --disable-nls
296
cd libcharset; make
296
cd libcharset; make
297
cp include/localcharset.h ../lib
297
cp include/localcharset.h ../lib
298
cd ../lib
298
cd ../lib
299
make
299
make
-
 
300
gcc -shared  .libs/iconv.o .libs/localcharset.o .libs/relocatable.o \
300
cp .libs/libiconv-2.dll iconv.dll
301
  .libs/iconv-exports.o -export-all-symbols -o iconv.dll
301
 
302
 
302
There is a possible alternative. win_iconv, available via
303
We now use a modified version of win-iconv, but the libiconv version
303
http://www.gtk.org/download-windows.html .  This does not support
-
 
304
UCS-4LE (but is easily extended to do so) and is small (30Kb) since it
-
 
305
uses Windows' codepages.  The latter are more comprehensive than is
-
 
306
usually documented, but do exclude so rarer encodings.  (Some common
304
can still be use by replacing bin/iconv.dll.
307
aliases such as latin2 would need to be added, as well as a lost for
-
 
308
iconvlist.)
-
 
309
 
305
 
-
 
306
 
310
BDR 2009-02-07
307
BDR 2009-02-08