home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / EFFO / forum23.lzh / f23b / SOFTWARE / PDRAW / README.INSTALL < prev    next >
Text File  |  1992-01-15  |  1KB  |  44 lines

  1. Installation Notes :
  2.  
  3. PDRAW includes X10 and X11 routines; unfortunately, these can't be compiled
  4. together, so these routines have to be handled in the Makefile.
  5.  
  6. The easist way to compile is as follows :
  7.  
  8. (1)  Use xmkmf to create the Makefile from Imakefile.
  9.      This automatically compiles with X11 code.
  10.      The X11 has been tested on X11R2 - X11R4, no major
  11.      problems encountered.
  12.  
  13. (2)  If xmkmf doesn't work, use the Makefile or Makefile.X11 in the
  14.      original distribution (Makefile == Makefile.X11); these compile
  15.      with the "make" command, producing code that draws on X11.
  16.  
  17. (3)  For both X11 and X10 binaries, compile using "make -f Makefile.orig"
  18.  
  19. (4)  If the X11 libraries are not in /usr/include, then the
  20.      makefiles need to be modified.
  21.  
  22. (5)  Questions to
  23.      ktoh@mascot.berkeley.edu
  24.  
  25.  
  26. System Dependencies :
  27. --------------------
  28.  
  29. In Makefile, Makefile.X11 and Makefile.orig, the "install" command assumes
  30. the X-binaries are in /usr/X11/... ('cos that's where everything is on my
  31. system!).  These should be modified.
  32.  
  33. Also, the printer in main.c should be changed so that the default printer
  34. is recognized by your system.  This is not really necessary if the PRINTER
  35. environment variable is set correctly (see pdraw.man)
  36.  
  37.    /* printer type */
  38.    if ((ptr = getenv("PRINTER")) == NULL)
  39. >     strcpy(printer,"-Plp550M");
  40.    else
  41.       sprintf(printer,"-P%s",ptr);
  42.    fprintf(stdout,"   Default Printer           = %s\n",printer);
  43.  
  44.