[BACK]Return to term.h CVS log [TXT][DIR] Up to [local] / OpenXM_contrib / gnuplot

Diff for /OpenXM_contrib/gnuplot/Attic/term.h between version 1.1.1.2 and 1.1.1.3

version 1.1.1.2, 2000/01/22 14:15:56 version 1.1.1.3, 2003/09/15 07:09:23
Line 64 
Line 64 
 # endif                         /* X11 */  # endif                         /* X11 */
 #else /* include all applicable terminals not commented out */  #else /* include all applicable terminals not commented out */
   
   /***************************************************************/
   /* Another special subset, this time for 16bit DOS/Windows
    * builds. There's precious little space to squeeze drivers into on
    * these platforms, so it's easier to provide a working selection here
    * than to have every user try to find one him/herself. If you
    * HAVE_LIBPDF, HAVE_LIBGD and/or HAVE_LIBPNG, even this selection may
    * already be too large. */
   #if defined(DOS16) || defined (WIN16)
   # ifndef WIN16
   #  ifdef PC
   /* uncomment the next line to include SuperVGA support using the
    * SVGA.BGI drivers. This also triggers the inclusion of Super VGA
    * support */
   /* #   define BGI_NAME "svga256" */
   #   include "pc.trm"
   #  endif /* PC */
   # else /* WIN16 */
   #  include "win.trm"
   # endif /* WIN16 */
   # include "cgm.trm"
   # ifdef DEBUG
   #  include "debug.trm"
   # endif
   /* NOTE THAT GIF REQUIRES A SEPARATE LIBRARY : see term/gif.trm */
   # ifdef HAVE_LIBGD
   #  include "gif.trm"
   # endif
   # include "hpgl.trm"
   # include "pbm.trm"
   /* NOTE THAT PDF REQUIRES A SEPARATE LIBRARY : see term/pdf.trm */
   # ifdef HAVE_LIBPDF
   #  include "pdf.trm"
   # endif
   /* NOTE THAT PNG REQUIRES A SEPARATE LIBRARY : see term/png.trm */
   # ifdef HAVE_LIBPNG
   #  include "png.trm"
   # endif
   /* # include "post.trm" */
   # include "table.trm"
   #else
   /* not (WIN16 || DOS16) --> use general terminal selection */
   
   
 /****************************************************************************/  /****************************************************************************/
 /* Platform dependent part                                                  */  /* Platform dependent part                                                  */
 /****************************************************************************/  /****************************************************************************/
Line 179 
Line 222 
 #endif  #endif
   
   
   /* GGI */
   #ifdef HAVE_GGI
   # include "ggi.trm"
   #endif
   
   
 /* MGR Window system */  /* MGR Window system */
 #ifdef MGR  #ifdef MGR
 # include "mgr.trm"  # include "mgr.trm"
Line 273 
Line 322 
 /* DXF format for use with AutoCad (Release 10.x) */  /* DXF format for use with AutoCad (Release 10.x) */
 #include "dxf.trm"  #include "dxf.trm"
   
   /* Enhanced Metafile Format driver */
   #include "emf.trm"
   
 /* Roland DXY800A plotter */  /* Roland DXY800A plotter */
 /* #include "dxy.trm" */  /* #include "dxy.trm" */
 /* QMS/EXCL laserprinter (Talaris 1590 and others) */  /* QMS/EXCL laserprinter (Talaris 1590 and others) */
Line 320 
Line 372 
 /* portable bit map */  /* portable bit map */
 #include "pbm.trm"  #include "pbm.trm"
   
   /* Adobe Portable Document Format (PDF) */
   /* NOTE THAT PDF REQUIRES A SEPARATE LIBRARY : see term/pdf.trm */
   #ifdef HAVE_LIBPDF
   # include "pdf.trm"
   #endif
   
 /* NOTE THAT PNG REQUIRES A SEPARATE LIBRARY : see term/png.trm */  /* NOTE THAT PNG REQUIRES A SEPARATE LIBRARY : see term/png.trm */
 #ifdef HAVE_LIBPNG  #ifdef HAVE_LIBPNG
 # include "png.trm"  # include "png.trm"
Line 331 
Line 389 
 /* QMS laser printers */  /* QMS laser printers */
 #include "qms.trm"  #include "qms.trm"
   
   /* W3C Scalable Vector Graphics file */
   #include "svg.trm"
   
 /* built-in, but used for the documentation */  /* built-in, but used for the documentation */
 #include "table.trm"  #include "table.trm"
   
Line 374 
Line 435 
 /* latex/tex with picture in postscript */  /* latex/tex with picture in postscript */
 #include "pslatex.trm"  #include "pslatex.trm"
   
   /* new epslatex driver */
   #include "epslatex.trm"
   
 /* EEPIC-extended LaTeX driver, for EEPIC users */  /* EEPIC-extended LaTeX driver, for EEPIC users */
 #include "eepic.trm"  #include "eepic.trm"
   
Line 392 
Line 456 
 /* METAPOST */  /* METAPOST */
 #include "metapost.trm"  #include "metapost.trm"
   
   #endif /* DOS16 || WIN16 special short termlist */
 #endif /* !SHORT_TERMLIST */  #endif /* !SHORT_TERMLIST */

Legend:
Removed from v.1.1.1.2  
changed lines
  Added in v.1.1.1.3

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>