diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-05-07 14:34:22 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-05-07 14:34:22 +0000 |
| commit | f50ac7f22e2a4748a4825589d3abae4c8e3ceafb (patch) | |
| tree | 6a701f117039ecbb21d58a41816a8502cc999194 | |
| parent | 336996c7abb716844d3389df7bd7779298af3dcf (diff) | |
Fix Mesa test in configure script.
Update changelog.
Update revision number for manual.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1455 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | CHANGES | 13 | ||||
| -rw-r--r-- | configure.in | 10 | ||||
| -rw-r--r-- | documentation/index.html | 2 | ||||
| -rw-r--r-- | documentation/preface.html | 2 |
4 files changed, 20 insertions, 7 deletions
@@ -21,6 +21,19 @@ CHANGES SINCE FLTK 1.0.10 - Tidied up the HTML documentation to be more standards compliant. + - Compiling with -DBOXX_BUGS will work around some + problems with the newest X drivers that BoXX delivers, + the problems all affect use of Overlays for normal X + drawing and OpenGL drawing. Normal compilation is + unchanged. + + - The file chooser buttons use user_data() rather than + the label to decide what to do, allowing the label to + be somewhat cleaner. + + - Selection color on X changed to blue, to match what + happens on Windows now. + - Added support for AIX (static library only). - Added support for SunOS 4.x diff --git a/configure.in b/configure.in index d87775aa2..87861f8d4 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ dnl -*- sh -*- dnl the "configure" script is made from this by running GNU "autoconf" dnl -dnl "$Id: configure.in,v 1.33.2.30 2001/04/30 17:17:01 easysw Exp $" +dnl "$Id: configure.in,v 1.33.2.31 2001/05/07 14:34:22 easysw Exp $" dnl dnl Configuration script for the Fast Light Tool Kit (FLTK). dnl @@ -186,10 +186,10 @@ if test x$enable_gl != xno; then ) AC_CHECK_HEADER(GL/glu.h, AC_DEFINE(HAVE_GL_GLU_H) - if test $ac_cv_lib_GL_glXMakeCurrent = yes; then + if test x$ac_cv_lib_GL_glXMakeCurrent = xyes; then GLLIB="-lGLU $GLLIB" fi - if test $ac_cv_lib_MesaGL_glXMakeCurrent = yes; then + if test x$ac_cv_lib_MesaGL_glXMakeCurrent = xyes; then GLLIB="-lMesaGLU $GLLIB" fi ) @@ -211,7 +211,7 @@ AC_CACHE_CHECK("for X overlay visuals", ac_cv_have_overlay, ac_cv_have_overlay=no fi) -if test "$ac_cv_have_overlay" = yes; then +if test x$ac_cv_have_overlay = xyes; then AC_DEFINE(HAVE_OVERLAY) fi @@ -381,5 +381,5 @@ AC_CONFIG_HEADER(config.h:configh.in) AC_OUTPUT(makeinclude) dnl -dnl End of "$Id: configure.in,v 1.33.2.30 2001/04/30 17:17:01 easysw Exp $". +dnl End of "$Id: configure.in,v 1.33.2.31 2001/05/07 14:34:22 easysw Exp $". dnl diff --git a/documentation/index.html b/documentation/index.html index d3d1b84e6..a9ea4d072 100644 --- a/documentation/index.html +++ b/documentation/index.html @@ -9,7 +9,7 @@ <TD ALIGN=CENTER VALIGN=MIDDLE><IMG SRC="FL.gif" ALIGN="ABSMIDDLE" ALT="FL"></TD> <TD ALIGN=CENTER VALIGN=MIDDLE> <H1>FLTK 1.0.11 Programming Manual</H1> -Revision 17 by Michael Sweet, Craig P. Earls, and Bill Spitzak<BR> +Revision 18 by Michael Sweet, Craig P. Earls, and Bill Spitzak<BR> Copyright 1998-2001 by Bill Spitzak and others.<BR> </TD> </TR> diff --git a/documentation/preface.html b/documentation/preface.html index 4a83822e2..7d24de52d 100644 --- a/documentation/preface.html +++ b/documentation/preface.html @@ -2,7 +2,7 @@ <HEAD> <META CONTENT="Written by Michael Sweet, Craig P. Earls, and Bill Spitzak" NAME="Author"> <META CONTENT="Copyright 1998-2001 by Bill Spitzak and Others." NAME="Copyright"> - <META CONTENT="Revision 17" NAME="DocNumber"> + <META CONTENT="Revision 18" NAME="DocNumber"> <TITLE>FLTK 1.0.11 Programming Manual</TITLE> </HEAD> <BODY> |
