summaryrefslogtreecommitdiff
path: root/makefiles
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2000-06-20 17:54:41 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2000-06-20 17:54:41 +0000
commit52496ba47284b6362e28ebfd736900b72e1a0723 (patch)
treedb4330362ccc307c3e84f523d361109475947ed0 /makefiles
parent13a7a6015ac09d04d4fb1452844f890494a73bbb (diff)
Dropped -lm, added comment indicating it will be required with older
versions of cygwin. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1226 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'makefiles')
-rw-r--r--makefiles/makeinclude.cygnus9
-rw-r--r--makefiles/makeinclude.no-cygwin9
2 files changed, 10 insertions, 8 deletions
diff --git a/makefiles/makeinclude.cygnus b/makefiles/makeinclude.cygnus
index 1d6ce5a60..798a0244c 100644
--- a/makefiles/makeinclude.cygnus
+++ b/makefiles/makeinclude.cygnus
@@ -1,5 +1,5 @@
#
-# "$Id: makeinclude.cygnus,v 1.9.2.5 2000/06/13 20:33:35 mike Exp $"
+# "$Id: makeinclude.cygnus,v 1.9.2.6 2000/06/20 17:54:41 mike Exp $"
#
# Make include file for the Fast Light Tool Kit (FLTK).
#
@@ -73,8 +73,9 @@ DSONAME =
DSOCOMMAND = echo
# libraries to link with (in addition to default libs):
-LDLIBS = -lm -lgdi32 -lwsock32
-GLDLIBS = -lglu32 -lopengl32 -lm -lgdi32 -lwsock32
+# (Note: -lm may be required with older versions of the Cygwin environment)
+LDLIBS = -lgdi32 -lwsock32
+GLDLIBS = -lglu32 -lopengl32 -lgdi32 -lwsock32
# Be quiet when building...
.SILENT:
@@ -95,5 +96,5 @@ GLDLIBS = -lglu32 -lopengl32 -lm -lgdi32 -lwsock32
$(CXX) -I.. $(CXXFLAGS) $< -c
#
-# End of "$Id: makeinclude.cygnus,v 1.9.2.5 2000/06/13 20:33:35 mike Exp $".
+# End of "$Id: makeinclude.cygnus,v 1.9.2.6 2000/06/20 17:54:41 mike Exp $".
#
diff --git a/makefiles/makeinclude.no-cygwin b/makefiles/makeinclude.no-cygwin
index bf2e0db7e..45dcd17c9 100644
--- a/makefiles/makeinclude.no-cygwin
+++ b/makefiles/makeinclude.no-cygwin
@@ -1,5 +1,5 @@
#
-# "$Id: makeinclude.no-cygwin,v 1.1.2.1 2000/06/20 05:47:36 bill Exp $"
+# "$Id: makeinclude.no-cygwin,v 1.1.2.2 2000/06/20 17:54:41 mike Exp $"
#
# Make include file for the Fast Light Tool Kit (FLTK).
#
@@ -73,8 +73,9 @@ DSONAME =
DSOCOMMAND = echo
# libraries to link with (in addition to default libs):
-LDLIBS = -lm -lgdi32 -lwsock32 -mno-cygwin
-GLDLIBS = -lglu32 -lopengl32 -lm -lgdi32 -lwsock32 -mno-cygwin
+# (Note: -lm may be required with older versions of the Cygwin environment)
+LDLIBS = -lgdi32 -lwsock32 -mno-cygwin
+GLDLIBS = -lglu32 -lopengl32 -lgdi32 -lwsock32 -mno-cygwin
# Be quiet when building...
.SILENT:
@@ -95,5 +96,5 @@ GLDLIBS = -lglu32 -lopengl32 -lm -lgdi32 -lwsock32 -mno-cygwin
$(CXX) -I.. $(CXXFLAGS) $< -c
#
-# End of "$Id: makeinclude.no-cygwin,v 1.1.2.1 2000/06/20 05:47:36 bill Exp $".
+# End of "$Id: makeinclude.no-cygwin,v 1.1.2.2 2000/06/20 17:54:41 mike Exp $".
#