=================================================================== RCS file: /home/cvs/OpenXM_contrib/gnuplot/Attic/term.h,v retrieving revision 1.1.1.2 retrieving revision 1.1.1.3 diff -u -p -r1.1.1.2 -r1.1.1.3 --- OpenXM_contrib/gnuplot/Attic/term.h 2000/01/22 14:15:56 1.1.1.2 +++ OpenXM_contrib/gnuplot/Attic/term.h 2003/09/15 07:09:23 1.1.1.3 @@ -1,5 +1,5 @@ /* - * $Id: term.h,v 1.1.1.2 2000/01/22 14:15:56 maekawa Exp $ + * $Id: term.h,v 1.1.1.3 2003/09/15 07:09:23 ohara Exp $ * */ @@ -64,6 +64,49 @@ # endif /* X11 */ #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 */ /****************************************************************************/ @@ -179,6 +222,12 @@ #endif +/* GGI */ +#ifdef HAVE_GGI +# include "ggi.trm" +#endif + + /* MGR Window system */ #ifdef MGR # include "mgr.trm" @@ -273,6 +322,9 @@ /* DXF format for use with AutoCad (Release 10.x) */ #include "dxf.trm" +/* Enhanced Metafile Format driver */ +#include "emf.trm" + /* Roland DXY800A plotter */ /* #include "dxy.trm" */ /* QMS/EXCL laserprinter (Talaris 1590 and others) */ @@ -320,6 +372,12 @@ /* portable bit map */ #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 */ #ifdef HAVE_LIBPNG # include "png.trm" @@ -331,6 +389,9 @@ /* QMS laser printers */ #include "qms.trm" +/* W3C Scalable Vector Graphics file */ +#include "svg.trm" + /* built-in, but used for the documentation */ #include "table.trm" @@ -374,6 +435,9 @@ /* latex/tex with picture in postscript */ #include "pslatex.trm" +/* new epslatex driver */ +#include "epslatex.trm" + /* EEPIC-extended LaTeX driver, for EEPIC users */ #include "eepic.trm" @@ -392,4 +456,5 @@ /* METAPOST */ #include "metapost.trm" +#endif /* DOS16 || WIN16 special short termlist */ #endif /* !SHORT_TERMLIST */