diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-05-21 18:13:32 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-05-21 18:13:32 +0000 |
| commit | 25d0f44ddd753ef3457c29cef7d5c5d66c306a26 (patch) | |
| tree | 52e61bf7089197af2d62ec0d400c0d89e570c019 /makefiles | |
| parent | dc560e83e39cad62c6583d74b9d84c6eda98d1f6 (diff) | |
Fix MingW config header (undef instead of define 0)
Mirror some of those changes into OS/2 config header, too.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2248 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'makefiles')
| -rw-r--r-- | makefiles/config.mingw | 66 | ||||
| -rw-r--r-- | makefiles/config.os2x | 6 |
2 files changed, 48 insertions, 24 deletions
diff --git a/makefiles/config.mingw b/makefiles/config.mingw index 9ba41cf76..f89b5e0de 100644 --- a/makefiles/config.mingw +++ b/makefiles/config.mingw @@ -1,5 +1,5 @@ /* - * "$Id: config.mingw,v 1.1.2.3.2.5 2002/05/16 12:47:43 easysw Exp $" + * "$Id: config.mingw,v 1.1.2.3.2.6 2002/05/21 18:13:31 easysw Exp $" * * Configuration file for the Fast Light Tool Kit (FLTK). * @@ -59,6 +59,15 @@ #define HAVE_GL 0 /* + * HAVE_GL_GLU_H: + * + * Do you have the OpenGL Utility Library header file? + * (many broken Mesa RPMs do not...) + */ + +#define HAVE_GL_GLU_H 1 + +/* * USE_COLORMAP: * * Setting this to zero will save a good deal of code (especially for @@ -68,6 +77,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? @@ -130,17 +147,17 @@ */ #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 +/* #undef HAVE_VSNPRINTF */ +/* #undef HAVE_SNPRINTF */ /* * String functions... @@ -148,8 +165,8 @@ /* #undef HAVE_STRINGS_H */ #define HAVE_STRCASECMP 1 -/* #undef HAVE_STRLCAT*/ -/* #undef HAVE_STRLCPY*/ +/* #undef HAVE_STRLCAT */ +/* #undef HAVE_STRLCPY */ /* * HAVE_SYS_SELECT_H: @@ -157,40 +174,47 @@ * Whether or not select() call has its own header file. */ -#define HAVE_SYS_SELECT_H 0 +/* #undef HAVE_SYS_SELECT_H */ /* - * HAVE_POLL: + * USE_POLL: * * Use poll() if we don't have select(). */ -#define HAVE_POLL 0 +#define USE_POLL 0 /* * 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 */ /* - * End of "$Id: config.mingw,v 1.1.2.3.2.5 2002/05/16 12:47:43 easysw Exp $". + * End of "$Id: config.mingw,v 1.1.2.3.2.6 2002/05/21 18:13:31 easysw Exp $". */ diff --git a/makefiles/config.os2x b/makefiles/config.os2x index 0d92d7c9e..50934043c 100644 --- a/makefiles/config.os2x +++ b/makefiles/config.os2x @@ -1,6 +1,6 @@ /* config.h. Generated automatically by configure. */ /* - * "$Id: config.os2x,v 1.1.2.4.2.8 2002/05/19 14:19:10 easysw Exp $" + * "$Id: config.os2x,v 1.1.2.4.2.9 2002/05/21 18:13:32 easysw Exp $" * * Configuration file for the Fast Light Tool Kit (FLTK). * @configure_input@ @@ -203,7 +203,7 @@ */ #define HAVE_PNG_H 1 -#undef HAVE_LIBPNG_PNG_H +/* #undef HAVE_LIBPNG_PNG_H */ /* * Do we have the png_xyz() functions? @@ -222,5 +222,5 @@ /* - * End of "$Id: config.os2x,v 1.1.2.4.2.8 2002/05/19 14:19:10 easysw Exp $". + * End of "$Id: config.os2x,v 1.1.2.4.2.9 2002/05/21 18:13:32 easysw Exp $". */ |
