Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/gpl3/binutils/usr.bin If libc isn't build with comp...



details:   https://anonhg.NetBSD.org/src/rev/78f2ade61d6f
branches:  trunk
changeset: 786300:78f2ade61d6f
user:      matt <matt%NetBSD.org@localhost>
date:      Thu Apr 25 14:53:35 2013 +0000

description:
If libc isn't build with compat, ldexp/frexp will not be included.  Always
pick them up from libm instead.

diffstat:

 external/gpl3/binutils/usr.bin/common/Makefile.prog |  6 +++---
 external/gpl3/binutils/usr.bin/gas/Makefile         |  6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diffs (37 lines):

diff -r 4e0c7c2e6f22 -r 78f2ade61d6f external/gpl3/binutils/usr.bin/common/Makefile.prog
--- a/external/gpl3/binutils/usr.bin/common/Makefile.prog       Thu Apr 25 14:48:09 2013 +0000
+++ b/external/gpl3/binutils/usr.bin/common/Makefile.prog       Thu Apr 25 14:53:35 2013 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.prog,v 1.6 2013/02/14 21:29:35 christos Exp $
+#      $NetBSD: Makefile.prog,v 1.7 2013/04/25 14:53:35 matt Exp $
 #
 # Common Makefile fragment for a binutils program.
 #
@@ -36,8 +36,8 @@
 
 .include <bsd.prog.mk>
 
-LDADD+=                -lintl -lz
-DPADD+=                ${LIBINTL} ${LIBZ}
+LDADD+=                -lintl -lz -lm
+DPADD+=                ${LIBINTL} ${LIBZ} ${LIBM}
 
 # Override the .y.c and .y.l rules *after* <bsd.prog.mk>
 .y.c .l.c:
diff -r 4e0c7c2e6f22 -r 78f2ade61d6f external/gpl3/binutils/usr.bin/gas/Makefile
--- a/external/gpl3/binutils/usr.bin/gas/Makefile       Thu Apr 25 14:48:09 2013 +0000
+++ b/external/gpl3/binutils/usr.bin/gas/Makefile       Thu Apr 25 14:53:35 2013 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.9 2013/02/14 21:29:35 christos Exp $
+#      $NetBSD: Makefile,v 1.10 2013/04/25 14:53:36 matt Exp $
 
 .include <bsd.own.mk>
 
@@ -39,5 +39,5 @@
 .include <bsd.prog.mk>
 .include <bsd.info.mk>
 
-LDADD+=                -lintl -lz
-DPADD+=                ${LIBINTL} ${LIBZ}
+LDADD+=                -lintl -lz -lm
+DPADD+=                ${LIBINTL} ${LIBZ} ${LIBM}



Home | Main Index | Thread Index | Old Index