diff options
author | Karl Berry <karl@freefriends.org> | 2007-01-04 23:41:31 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2007-01-04 23:41:31 +0000 |
commit | bd4ac066f1aac4a195f45708b3837188d33e4112 (patch) | |
tree | a08f95953ddc684d400c9bc549126322be2116b0 /Build/source/texk/dvipng | |
parent | 64405d6c4330448eacbe6515838c43f98379d086 (diff) |
hardwire -lm at end
git-svn-id: svn://tug.org/texlive/trunk@3145 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/dvipng')
-rw-r--r-- | Build/source/texk/dvipng/ChangeLog | 5 | ||||
-rw-r--r-- | Build/source/texk/dvipng/Makefile.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/Build/source/texk/dvipng/ChangeLog b/Build/source/texk/dvipng/ChangeLog index 49d18975f03..7e98c0c5d48 100644 --- a/Build/source/texk/dvipng/ChangeLog +++ b/Build/source/texk/dvipng/ChangeLog @@ -1,3 +1,8 @@ +2007-01-05 Karl Berry <karl@tug.org> + + * Makefile.in (LIBS): hardwire -lm at end. maybe main is the + wrong symbol to check for?! + 2006-12-24 Karl Berry <karl@tug.org> * dvipng.h: don't try stdbool if we have kpathsea, Staszek's old diff --git a/Build/source/texk/dvipng/Makefile.in b/Build/source/texk/dvipng/Makefile.in index ad57e7e059d..47f34831133 100644 --- a/Build/source/texk/dvipng/Makefile.in +++ b/Build/source/texk/dvipng/Makefile.in @@ -65,7 +65,7 @@ CPPFLAGS = @CPPFLAGS@ -I. $(lib_cppflags) # -I. must come first, or get gd/config.h. LN_S = @LN_S@ -LIBS = $(lib_libs) @LIBS@ +LIBS = $(lib_libs) @LIBS@ -lm LDFLAGS = @LDFLAGS@ srcdir = @srcdir@ |