diff options
author | 2011-08-19 15:44:36 +0000 | |
---|---|---|
committer | 2011-08-19 15:44:36 +0000 | |
commit | e30e335c553edf6c29af9c80dd46e1c09e058c47 (patch) | |
tree | 3934dc94e0cb24223701424f653c4b345d49ea70 /lib/libm | |
parent | Don't mention loadable streams modules are lacking. (diff) | |
download | wireguard-openbsd-e30e335c553edf6c29af9c80dd46e1c09e058c47.tar.xz wireguard-openbsd-e30e335c553edf6c29af9c80dd46e1c09e058c47.zip |
Bring libc and libm in line with the compiler now that we no longer have a
128-bit long double. Diff committed on behalf of martynas@
Diffstat (limited to 'lib/libm')
-rw-r--r-- | lib/libm/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libm/Makefile b/lib/libm/Makefile index 9cfe9d3f39f..be71bea7260 100644 --- a/lib/libm/Makefile +++ b/lib/libm/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.96 2011/07/24 19:25:50 martynas Exp $ +# $OpenBSD: Makefile,v 1.97 2011/08/19 15:44:36 kettenis Exp $ # $NetBSD: Makefile,v 1.28 1995/11/20 22:06:19 jtc Exp $ # # @(#)Makefile 5.1beta 93/09/24 @@ -165,8 +165,7 @@ SRCS= ${COMMON_SRCS} CPPFLAGS+= -I${.CURDIR}/src -I${.CURDIR}/src/ld80 SRCS+= ${LONG_SRCS} .endif -.if (${MACHINE_ARCH} == "hppa64") || (${MACHINE_CPU} == "mips64") || \ - (${MACHINE_ARCH} == "sparc64") +.if (${MACHINE_CPU} == "mips64") || (${MACHINE_ARCH} == "sparc64") .PATH: ${.CURDIR}/src/ld128 CPPFLAGS+= -I${.CURDIR}/src -I${.CURDIR}/src/ld128 SRCS+= ${LONG_SRCS} |