about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2000-08-09 09:10:26 +0000
committerAndreas Schwab <schwab@suse.de>2000-08-09 09:10:26 +0000
commit580ca83f5f52e7ac66638448d80f68631f0683bf (patch)
treecbe907df2ad87dafa47311cbcab42a9513ceed75
parent2bbc70d5da0ea7dc46ee4a3e87566d2cc18ff995 (diff)
downloadglibc-580ca83f5f52e7ac66638448d80f68631f0683bf.tar.gz
glibc-580ca83f5f52e7ac66638448d80f68631f0683bf.tar.xz
glibc-580ca83f5f52e7ac66638448d80f68631f0683bf.zip
* configure.in: Add `-lm' when checking for libgd. * malloc/Makefile ($(objpfx)memusagestat): Add `-lm' during linking.
-rwxr-xr-xconfigure2
-rw-r--r--configure.in2
-rw-r--r--malloc/Makefile2
3 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index a9cea952e6..af45f4f2e7 100755
--- a/configure
+++ b/configure
@@ -3147,7 +3147,7 @@ CFLAGS="$CFLAGS $libgd_include"
 old_LDFLAGS="$LDFLAGS"
 LDFLAGS="$LDFLAGS $libgd_ldflags"
 old_LIBS="$LIBS"
-LIBS="$LIBS -lgd -lpng -lz"
+LIBS="$LIBS -lgd -lpng -lz -lm"
 cat > conftest.$ac_ext <<EOF
 #line 3153 "configure"
 #include "confdefs.h"
diff --git a/configure.in b/configure.in
index ef52035bd5..3bd422e822 100644
--- a/configure.in
+++ b/configure.in
@@ -1243,7 +1243,7 @@ CFLAGS="$CFLAGS $libgd_include"
 old_LDFLAGS="$LDFLAGS"
 LDFLAGS="$LDFLAGS $libgd_ldflags"
 old_LIBS="$LIBS"
-LIBS="$LIBS -lgd -lpng -lz"
+LIBS="$LIBS -lgd -lpng -lz -lm"
 AC_TRY_LINK([#include <gd.h>], [gdImagePng (0, 0)], LIBGD=yes, LIBGD=no)
 CFLAGS="$old_CFLAGS"
 LDFLAGS="$old_LDFLAGS"
diff --git a/malloc/Makefile b/malloc/Makefile
index 7497908707..7cec63dde4 100644
--- a/malloc/Makefile
+++ b/malloc/Makefile
@@ -80,7 +80,7 @@ do-memusagestat: $(objpfx)memusagestat
 
 memusagestat-modules = memusagestat
 $(objpfx)memusagestat: $(memusagestat-modules:%=$(objpfx)%.o)
-	$(LINK.o) -o $@ $^ $(libgd-LDFLAGS) -lgd -lpng -lz
+	$(LINK.o) -o $@ $^ $(libgd-LDFLAGS) -lgd -lpng -lz -lm
 
 include ../Rules