]> andersk Git - test.git/commitdiff
Add -lm to the linker flags so that we always pick up isnan(), even when
authorMarkus Gutschke <markus@shellinabox.com>
Thu, 1 Apr 2010 19:16:56 +0000 (19:16 +0000)
committerMarkus Gutschke <markus@shellinabox.com>
Thu, 1 Apr 2010 19:16:56 +0000 (19:16 +0000)
compiling with runtime libraries other than glibc.

Makefile.am
Makefile.in

index aa1affb645bb19d1a1db4f29827a3d76ddff3ca5..8e3d86f754c83ad81fc1870244a6ccd959c58360 100644 (file)
@@ -1,6 +1,6 @@
 AM_CPPFLAGS          =
 AM_CFLAGS            = -g -std=gnu99 -Wall
-AM_LDFLAGS           = -g
+AM_LDFLAGS           = -g -lm
 
 OBJCOPY             ?= objcopy
 OBJDUMP             ?= objdump
index 9a797fd14e167bb8a1ddc5306a649116c92296ac..b9f58cc2ae5ec5f36aaa4e91e65b182f08d6321a 100644 (file)
@@ -259,7 +259,7 @@ top_builddir = @top_builddir@
 top_srcdir = @top_srcdir@
 AM_CPPFLAGS = 
 AM_CFLAGS = -g -std=gnu99 -Wall
-AM_LDFLAGS = -g
+AM_LDFLAGS = -g -lm
 noinst_LTLIBRARIES = libhttp.la                                             \
                        liblogging.la
 
This page took 0.084101 seconds and 5 git commands to generate.