home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Networking / ncftp-2.4.2-MIHS / README.NeXT
Encoding:
Text File  |  1997-01-13  |  3.4 KB  |  105 lines

  1. This is NcFTP version 2.4.2 compiled quad FAT for NeXT (using NeXTSTEP 3.3)
  2. Please read the instructions below to compile "ncftp" on NeXTSTEP.
  3.  
  4. submitted to : ftp://next-ftp.peak.org/pub/next/submissions
  5. and probably will move to :
  6. ftp://next-ftp.peak.org/pub/next/apps/internet/ncftp
  7.  
  8. Panagiotis Velissariou
  9. e-mail : takis@superior.eng.ohio-state.edu
  10.          takis@takis2.ee.net
  11.  
  12. **********************************************************************
  13. binaries directory
  14. ------------------
  15. This version of NcFTP has been compiled against the "readline (version 2.0)"
  16. and "ncurses (version 1.9.9e)" libraries.
  17. In this directory you will find the binaries :
  18.      ncftp.hppa  for HP
  19.      ncftp.i486  for Intel
  20.      ncftp.m68k  for Motorola
  21.      ncftp.sparc for Sparc
  22.      ncftp.fat   for all the above architectures
  23.  
  24. and the man page : ncftp.1
  25.  
  26. Just copy the binary you want into : /usr/local/bin
  27. and the man page into :              /usr/local/man/man1
  28.  
  29. or any other directory you want.
  30.  
  31. src directory
  32. ------------------
  33.  
  34. Here you will find the source for ncftp.2.4.2.
  35. NcFTP is installed by default in : /usr/local/bin/ncftp
  36. and the man page in /usr/local/man/man1/ncftp.1
  37.  
  38. To install this package, cd to the source directory and type
  39. make install.
  40.  
  41. Follow the installation instructions below to compile and
  42. install NcFTP in your system.
  43.  
  44. **********************************************************************
  45.  
  46. Part A:  Installation Notes
  47. ===========================
  48.  
  49. 1.  Run the "./configure" script.
  50. 2.  Browse and edit Config.h. (important)
  51. 3.  Check and edit the Makefile. (important)
  52. 4.  "make"
  53. 5   ./ncftp next-ftp.peak.org (to check if ncftp works properly)
  54. 6.  "make install"
  55.  
  56. Part B:  Operating System specifics
  57. ===================================
  58.  
  59. The program compiles "out of the box" on many systems thanks to the configure
  60. script, but here are a few notes on some certain systems.
  61.  
  62. NeXT:  ncftp version 2.4.2
  63.  
  64. Run configure as follows :
  65.        CC=cc CFLAGS="-pipe -arch m68k -no-precomp" ./configure --prefix=/usr/local
  66.  
  67. Edit Config.h file or copy my Config.h.NeXT to Config.h after you run "configure"
  68.  
  69.     do not define GETPGRP_VOID    (USE : /*#undef GETPGRP_VOID*/)
  70.     do not define HAVE_GETCWD     (USE : /*#undef HAVE_GETCWD*/)
  71.     do define HAVE_GETWD          (USE : #define HAVE_GETWD 1)
  72.     do not define HAVE_TCGETPGRP  (USE : /*#undef HAVE_TCGETPGRP*/)
  73.     do not define HAVE_TERMIOS_H  (USE : /*#undef HAVE_TERMIOS_H*/)
  74.     do not define HAVE_UTIME_H    (USE : /*#undef HAVE_UTIME_H*/)
  75.     do not define HAVE_LIBPOSIX   (USE : /*#undef HAVE_LIBPOSIX*/)
  76. you may want to modify my settings for :
  77.     #define GZCAT "/usr/gnu/bin/gzcat"
  78.  
  79. Edit Makefile or copy my Makefile.NeXT to Makefile
  80.     CC=cc
  81.     CFLAGS=-O2 -pipe -arch hppa -arch i486 -arch m68k -arch sparc -no-precomp
  82.         LIBS=-lreadline -lncurses (if you have readline and ncurses)
  83.  
  84. Make NcFTP by typing "make"
  85.  
  86. Install the binaries by typing "make install"
  87.  
  88. ncurses:
  89.   This is a freeware curses library with source, by zmbenhal@netcom.com.
  90.   Latest version in: ftp://netcom.com/pub/zm/zmbenhal/ncurses/, or
  91.   at a GNU mirror like ftp://prep.ai.mit.edu/pub/gnu.  I will also try
  92.   to keep a recent version of it at the ncftp archive.
  93.  
  94. SOCKS:
  95.   This is the only (currently) supported way to get ncftp to work through a
  96.   gateway/firewall.  Get it from:
  97.       ftp://ftp.inoc.dl.nec.com/pub/security/socks.cstc/
  98.  
  99. Questions?
  100.  
  101. Try sending me mail at mgleason@probe.net.  The latest version of NcFTP
  102. is archived in ftp://ftp.probe.net/pub/ncftp/ .
  103.  
  104. --Mike Gleason
  105.