diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-07-08 14:58:49 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-07-08 14:58:49 +0000 |
| commit | 46148181bdc020adffdc2be83364a37469cd83e6 (patch) | |
| tree | c3a2c0fd9e42802cfb57e987afb146b8ea13d6ab /borlandc | |
| parent | 6733d0a646277493455809658ab8bc7f4315279a (diff) | |
BC++ changes.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2490 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'borlandc')
| -rw-r--r-- | borlandc/config.h | 69 |
1 files changed, 48 insertions, 21 deletions
diff --git a/borlandc/config.h b/borlandc/config.h index 878db7f1e..7b4afd1c2 100644 --- a/borlandc/config.h +++ b/borlandc/config.h @@ -1,5 +1,5 @@ /* - * "$Id: config.h,v 1.1.2.3 2002/07/01 20:26:06 easysw Exp $" + * "$Id: config.h,v 1.1.2.4 2002/07/08 14:58:49 easysw Exp $" * * Configuration file for the Fast Light Tool Kit (FLTK) for Borland C++. * @@ -71,6 +71,14 @@ #define USE_COLORMAP 1 /* + * USE_XFT + * + * Use the new Xft library to draw anti-aliased text. + */ + +#define USE_XFT 0 + +/* * HAVE_XDBE: * * Do we have the X double-buffer extension? @@ -124,7 +132,7 @@ #define U16 unsigned short #define U32 unsigned -#undef U64 +/* #undef U64 */ /* * HAVE_DIRENT_H, HAVE_SYS_NDIR_H, HAVE_SYS_DIR_H, HAVE_NDIR_H, HAVE_SCANDIR: @@ -133,23 +141,42 @@ */ #define HAVE_DIRENT_H 1 -#define HAVE_SYS_NDIR_H 0 -#define HAVE_SYS_DIR_H 0 -#define HAVE_NDIR_H 0 -#define HAVE_SCANDIR 0 +/* #undef HAVE_SYS_NDIR_H */ +/* #undef HAVE_SYS_DIR_H */ +/* #undef HAVE_NDIR_H */ +/* #undef HAVE_SCANDIR */ /* * Possibly missing sprintf-style functions: */ -#define HAVE_VSNPRINTF 0 -#define HAVE_SNPRINTF 0 +#define HAVE_VSNPRINTF 1 +#define HAVE_SNPRINTF 1 /* - * String functions... + * String functions and headers... + */ + +/* #undef HAVE_STRINGS_H */ +#define HAVE_STRCASECMP 1 +/* #undef HAVE_STRLCAT */ +/* #undef HAVE_STRLCPY */ + +/* + * HAVE_SYS_SELECT_H: + * + * Whether or not select() call has its own header file. + */ + +/* #undef HAVE_SYS_SELECT_H */ + +/* + * HAVE_SYS_STDTYPES_H: + * + * Whether or not we have the <sys/stdtypes.h> header file. */ -#define HAVE_STRCASECMP 1 +/* #undef HAVE_SYS_STDTYPES_H */ /* * HAVE_POLL: @@ -163,33 +190,33 @@ * Do we have various image libraries? */ -#undef HAVE_LIBPNG -#undef HAVE_LIBZ -#undef HAVE_LIBJPEG +/* #undef HAVE_LIBPNG */ +/* #undef HAVE_LIBZ */ +/* #undef HAVE_LIBJPEG */ /* * Which header file do we include for libpng? */ -#undef HAVE_PNG_H -#undef HAVE_LIBPNG_PNG_H +/* #undef HAVE_PNG_H */ +/* #undef HAVE_LIBPNG_PNG_H */ /* * Do we have the png_xyz() functions? */ -#undef HAVE_PNG_GET_VALID -#undef HAVE_PNG_SET_TRNS_TO_ALPHA -#undef HAVE_PNG_READ_DESTROY +/* #undef HAVE_PNG_GET_VALID */ +/* #undef HAVE_PNG_SET_TRNS_TO_ALPHA */ +/* #undef HAVE_PNG_READ_DESTROY */ /* * Do we have POSIX threading? */ -#undef HAVE_PTHREAD -#undef HAVE_PTHREAD_H +/* #undef HAVE_PTHREAD */ +/* #undef HAVE_PTHREAD_H */ /* - * End of "$Id: config.h,v 1.1.2.3 2002/07/01 20:26:06 easysw Exp $". + * End of "$Id: config.h,v 1.1.2.4 2002/07/08 14:58:49 easysw Exp $". */ |
