summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-07-11 10:37:49 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-07-11 10:37:49 +0000
commit9feef1e696525f8969970394ec3695944f403b79 (patch)
tree2c2496fee7f908df71646935c6f458721f7e9a87
parentd7fd2d77a0ccbe637c03867c88a70147aa443d70 (diff)
Don't add -lm to link line.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2504 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rwxr-xr-xfltk-config.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/fltk-config.in b/fltk-config.in
index da64fc0dc..015082890 100755
--- a/fltk-config.in
+++ b/fltk-config.in
@@ -1,6 +1,6 @@
#! /bin/sh
#
-# "$Id: fltk-config.in,v 1.12.2.12 2002/06/28 21:04:35 easysw Exp $"
+# "$Id: fltk-config.in,v 1.12.2.13 2002/07/11 10:37:49 easysw Exp $"
#
# FLTK configuration utility.
#
@@ -217,8 +217,8 @@ if test x$use_images = xyes; then
LDSTATIC="$libdir/libfltk_images.a $IMAGELIBS $LDSTATIC"
fi
-LDLIBS="$DSOLINK $LDLIBS -lm"
-LDSTATIC="$LDSTATIC -lm"
+LDLIBS="$DSOLINK $LDLIBS"
+LDSTATIC="$LDSTATIC"
# Answer to user requests
if test -n "$echo_help"; then
@@ -297,5 +297,5 @@ if test "$echo_libs" = "yes"; then
fi
#
-# End of "$Id: fltk-config.in,v 1.12.2.12 2002/06/28 21:04:35 easysw Exp $".
+# End of "$Id: fltk-config.in,v 1.12.2.13 2002/07/11 10:37:49 easysw Exp $".
#