home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / D / CLISP / CLISPSRC.TAR / clisp-1995-01-01 / unix / CONVERT next >
Encoding:
Text File  |  1994-07-08  |  807 b   |  33 lines

  1. Explanation of the optional installation step 1:
  2. ------------------------------------------------
  3.  
  4. If your local character set is not ISO Latin-1 or if your C compiler is not
  5. 8-bit clean, you will have to convert the sources.
  6.  
  7. First compile the program for conversion to plain ASCII and install it
  8. somewhere in your path::
  9.  
  10.     cd ../utils/charset
  11.     make unix bindir=/usr/local/bin
  12.     cd ../..
  13.  
  14. If you are using csh, the following is necessary:
  15.  
  16.     rehash
  17.  
  18. Convert the sources:
  19.  
  20.     all-to-ascii src/* utils/* doc/*
  21.  
  22. Done.
  23.  
  24. If your local character set is the NeXTstep character set, use the
  25. corresponding program for conversion to this character set similarly:
  26.  
  27.     cd ../utils/charset
  28.     make next bindir=/usr/local/bin
  29.     cd ../..
  30.     rehash # only if using csh
  31.     all-to-next src/* utils/* doc/*
  32.  
  33.