home *** CD-ROM | disk | FTP | other *** search
/ HyperLib 1997 Winter - Disc 1 / HYPERLIB-1997-Winter-CD1.ISO.7z / HYPERLIB-1997-Winter-CD1.ISO / オンラインウェア / PRG / bwbasic-2.10.sit / bwbasic-2.10 / HPUX.Install < prev    next >
Text File  |  1993-11-09  |  1KB  |  50 lines

  1. Files changed:
  2.  
  3. * configure:
  4.   - Skip gcc if HP-UX.
  5.  
  6. * Makefile.in:
  7.   - Set CFLAGS (ANSI mode) for HP-UX.
  8.   - Set bindir for our site.
  9.   - Stripped installed binary.
  10.  
  11. To compile:
  12.  
  13. [Edit Makefile.in's bindir for your site]
  14. ksh configure
  15. make
  16.  
  17. To test:
  18.  
  19. cd bwbtest
  20. ../bwbasic
  21. chain "function.bas"
  22. quit
  23.  
  24. To install:
  25.  
  26. make install
  27.  
  28. Notes:
  29.  
  30. * The str_cat() function in bwb_str.c returns an undefined result (a char *
  31.   which hasn't been assigned to), but this doesn't matter because the only
  32.   call to it has the result ignored anyway !
  33.  
  34. * Dialect of BASIC isn't fantastic (stick with BBC BASIC V...). WORST THING:
  35.   It has the *stupid* concept of "pre-initialising" variables to zero, which
  36.   is totally crap:
  37.  
  38.   b=a+2
  39.   print b
  40.  
  41.   will print out 2 with no error, despite the fact that a is uninitialised.
  42.   This is a horrendous "feature" of most crappy BASICs that ought to have been
  43.   stamped out a long time ago.
  44.  
  45. * CTRL-D (EOF) isn't handled gracefully at the BASIC prompt (just prints out
  46.   " 0").
  47.  
  48. * No man page - read bwbasic.doc and check out the bwbtest directory for
  49.   examples.
  50.