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
This commit is contained in:
parent
dc560e83e3
commit
25d0f44ddd
1
CHANGES
1
CHANGES
@ -1,6 +1,7 @@
|
||||
CHANGES IN FLTK 1.1.0rc3
|
||||
|
||||
- Documentation updates.
|
||||
- Minor tweeks to MingW and OS/2 config headers.
|
||||
- Fl_Value_Input now correctly determines if step()
|
||||
specifies an integer value.
|
||||
- Fl_Help_View didn't add links inside PRE elements.
|
||||
|
||||
@ -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).
|
||||
*
|
||||
@ -58,6 +58,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:
|
||||
*
|
||||
@ -67,6 +76,14 @@
|
||||
|
||||
#define USE_COLORMAP 1
|
||||
|
||||
/*
|
||||
* USE_XFT
|
||||
*
|
||||
* Use the new Xft library to draw anti-aliased text.
|
||||
*/
|
||||
|
||||
#define USE_XFT 0
|
||||
|
||||
/*
|
||||
* HAVE_XDBE:
|
||||
*
|
||||
@ -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 $".
|
||||
*/
|
||||
|
||||
@ -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 $".
|
||||
*/
|
||||
|
||||
Loading…
Reference in New Issue
Block a user