diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-07-23 18:14:55 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-07-23 18:14:55 +0000 |
commit | 4b9afc43727251609f28ba2140f4d8527e8d0d17 (patch) | |
tree | 167880b85aea06990b422010c13a2448528f539f /math/Makefile | |
parent | 30566afbfc1dc2f3ab79ba2497059c6874da75c4 (diff) | |
download | glibc-4b9afc43727251609f28ba2140f4d8527e8d0d17.tar glibc-4b9afc43727251609f28ba2140f4d8527e8d0d17.tar.gz glibc-4b9afc43727251609f28ba2140f4d8527e8d0d17.tar.bz2 glibc-4b9afc43727251609f28ba2140f4d8527e8d0d17.zip |
Update.
2001-07-23 Jakub Jelinek <jakub@redhat.com>
* sunrpc/svc_tcp.c (svctcp_rendezvous_abort): New.
(svctcp_rendezvous_op): Use it.
* sunrpc/svc_unix.c (svcunix_rendezvous_abort): New.
(svcunix_rendezvous_op): Use it.
2001-07-23 Andreas Schwab <schwab@suse.de>
* math/Makefile (CPPFLAGS-test-ifloat.c, CPPFLAGS-test-idouble.c,
CPPFLAGS-test-ildoubl.c): Renamed from CFLAGS-*.
(math-CPPFLAGS): Set this instead of CPPFLAGS.
Diffstat (limited to 'math/Makefile')
-rw-r--r-- | math/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/math/Makefile b/math/Makefile index a4d2eb3327..f960d80376 100644 --- a/math/Makefile +++ b/math/Makefile @@ -121,10 +121,10 @@ endif CFLAGS-test-float.c = -fno-inline -ffloat-store CFLAGS-test-double.c = -fno-inline -ffloat-store CFLAGS-test-ldouble.c = -fno-inline -ffloat-store -CFLAGS-test-ifloat.c = -U__LIBC_INTERNAL_MATH_INLINES -D__FAST_MATH__ -CFLAGS-test-idouble.c = -U__LIBC_INTERNAL_MATH_INLINES -D__FAST_MATH__ -CFLAGS-test-ildoubl.c = -U__LIBC_INTERNAL_MATH_INLINES -D__FAST_MATH__ CFLAGS-test-tgmath.c = -fno-builtin +CPPFLAGS-test-ifloat.c = -U__LIBC_INTERNAL_MATH_INLINES -D__FAST_MATH__ +CPPFLAGS-test-idouble.c = -U__LIBC_INTERNAL_MATH_INLINES -D__FAST_MATH__ +CPPFLAGS-test-ildoubl.c = -U__LIBC_INTERNAL_MATH_INLINES -D__FAST_MATH__ distribute += libm-test.inc gen-libm-test.pl README.libm-test @@ -145,7 +145,7 @@ CPPFLAGS-s_lib_version.c := -D_POSIX_MODE # We don't want the fdlibm code to use the inline math functions, # only the fdlibm code. -CPPFLAGS += -D__NO_MATH_INLINES -D__LIBC_INTERNAL_MATH_INLINES +math-CPPFLAGS += -D__NO_MATH_INLINES -D__LIBC_INTERNAL_MATH_INLINES ifneq ($(long-double-fcts),yes) # The `double' and `long double' types are the same on this machine. @@ -153,7 +153,7 @@ ifneq ($(long-double-fcts),yes) # to define aliases for the `FUNCl' names. To avoid type conflicts in # defining those aliases, tell <math.h> to declare the `FUNCl' names with # `double' instead of `long double'. -CPPFLAGS += -DNO_LONG_DOUBLE -D_Mlong_double_=double +math-CPPFLAGS += -DNO_LONG_DOUBLE -D_Mlong_double_=double endif # The fdlibm code generates a lot of these warnings but is otherwise clean. |