From e695fe845dc7e70ba4694f630ebecdca35292769 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Fri, 9 Dec 2005 14:23:30 +0000 Subject: [PATCH] Removed atan.c. For PPC we're using the glibc implementation, for x86 the Haiku image still builds, so it is apparently not used. I guess it would be best to abandon our posix_math.o completely and use the glibc math implementations instead. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15446 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/libroot/posix/math/Jamfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/system/libroot/posix/math/Jamfile b/src/system/libroot/posix/math/Jamfile index d0fd9721fe..7902285d5a 100644 --- a/src/system/libroot/posix/math/Jamfile +++ b/src/system/libroot/posix/math/Jamfile @@ -1,16 +1,16 @@ SubDir HAIKU_TOP src system libroot posix math ; UseHeaders $(TARGET_PRIVATE_KERNEL_HEADERS) : true ; -#SubDirSysHdrs [ FDirName $(SUBDIR) $(DOTDOT) glibc ] ; -#SubDirSysHdrs [ FDirName $(SUBDIR) $(DOTDOT) glibc include ] ; -#SubDirSysHdrs [ FDirName $(SUBDIR) $(DOTDOT) glibc include arch $(TARGET_ARCH) ] ; SubDirCcFlags -Dnational ; +# TODO: We should probably drop this completely and use the glibc math support, +# instead of the current mix. + MergeObject posix_math.o : acosh.c asincos.c asinh.c - atan.c +# atan.c atanh.c cabs.c cbrt.c