summaryrefslogtreecommitdiff
path: root/makefiles
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-01-11 21:42:05 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-01-11 21:42:05 +0000
commitc874ba21a9099613dbfeefd53832696ab2df3dc7 (patch)
tree6d7358a3a55578d13187b7f57bda8bbe14290a3e /makefiles
parent6eff9b3b146ec35f7bf0eaf89924d9f052ba4bb9 (diff)
Add -lcomctl32 for Windows builds.
Make no-cygwin the default (almost 2:1 in favor of this change) Some minor reorganization and cleanup of the configure.in file, so that the Cygwin stuff is done first, and other ops are done together. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1927 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'makefiles')
-rw-r--r--makefiles/makeinclude.mingw8
1 files changed, 4 insertions, 4 deletions
diff --git a/makefiles/makeinclude.mingw b/makefiles/makeinclude.mingw
index fde731ba7..ae2e53d5e 100644
--- a/makefiles/makeinclude.mingw
+++ b/makefiles/makeinclude.mingw
@@ -1,5 +1,5 @@
#
-# "$Id: makeinclude.mingw,v 1.1.2.3.2.3 2001/12/21 14:17:00 easysw Exp $"
+# "$Id: makeinclude.mingw,v 1.1.2.3.2.4 2002/01/11 21:42:05 easysw Exp $"
#
# Make include file for the Fast Light Tool Kit (FLTK).
#
@@ -73,8 +73,8 @@ DSONAME =
DSOCOMMAND = echo
# libraries to link with (in addition to default libs):
-LDLIBS = -lgdi32 -lwsock32
-GLDLIBS = -lglu32 -lopengl32 -lgdi32 -lwsock32
+LDLIBS = -lgdi32 -lcomctl32 -lwsock32
+GLDLIBS = -lglu32 -lopengl32 -lgdi32 -lcomctl32 -lwsock32
LINKFLTK =-L../lib -lfltk
LINKFLTKGL =-L../lib -lfltk_gl
IMAGELIBS =
@@ -98,5 +98,5 @@ IMAGELIBS =
$(CXX) -I.. $(CXXFLAGS) $< -c
#
-# End of "$Id: makeinclude.mingw,v 1.1.2.3.2.3 2001/12/21 14:17:00 easysw Exp $".
+# End of "$Id: makeinclude.mingw,v 1.1.2.3.2.4 2002/01/11 21:42:05 easysw Exp $".
#