summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-04-09 18:18:25 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-04-09 18:18:25 +0000
commit921f66e3e641a290f375fd1b46bc2a5bbe601dbd (patch)
tree6f44cfd76b46454db457aa85080cd4a5d0b5717e
parent4586bf0fccc12328f6f876c527648f9260c406dc (diff)
Add "-fvtable-thunks" to OPTIM when compiling with Cygwin.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2061 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--CHANGES2
-rw-r--r--configure.in6
2 files changed, 5 insertions, 3 deletions
diff --git a/CHANGES b/CHANGES
index b9d68dd0f..e8df14a89 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,7 @@
CHANGES IN FLTK 1.1.0b13
+ - Cygwin needs "-fvtable-thunks" to compile the new
+ WIN32 drag-n-drop code.
- Tooltips now appear for inactive and output widgets.
- Tooltips no longer steal keyboard events other than
ESCape.
diff --git a/configure.in b/configure.in
index a7f36ea2a..6884e3fb1 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.31.2.56 2002/04/09 09:22:15 easysw Exp $"
+dnl "$Id: configure.in,v 1.33.2.31.2.57 2002/04/09 18:18:25 easysw Exp $"
dnl
dnl Configuration script for the Fast Light Tool Kit (FLTK).
dnl
@@ -328,7 +328,7 @@ case $uname in
CXXFLAGS="-mwindows -DWIN32 $CXXFLAGS"
LDFLAGS="-mwindows $LDFLAGS"
LIBS="$LIBS -lcomctl32 -lwsock32"
- OPTIM="$OPTIM"
+ OPTIM="$OPTIM -fvtable-thunks"
if test x$enable_gl != xno; then
AC_CHECK_HEADER(GL/gl.h,
@@ -707,5 +707,5 @@ dnl Make sure the fltk-config script is executable...
chmod +x fltk-config
dnl
-dnl End of "$Id: configure.in,v 1.33.2.31.2.56 2002/04/09 09:22:15 easysw Exp $".
+dnl End of "$Id: configure.in,v 1.33.2.31.2.57 2002/04/09 18:18:25 easysw Exp $".
dnl