]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 7 Jun 2000 16:53:48 +0000 (16:53 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 7 Jun 2000 16:53:48 +0000 (16:53 +0000)
2000-06-07  Andreas Jaeger  <aj@suse.de>

* elf/Makefile: Build ldconfig only when building shared libraries.

2000-06-07  Jakub Jelinek  <jakub@redhat.com>

* sysdeps/alpha/fpu/bits/mathinline.h (__fdimf): Only declare if
__USE_ISOC99.
(fdimf, __fdim, fdim): Likewise.

ChangeLog
elf/Makefile
sysdeps/alpha/fpu/bits/mathinline.h

index 3ddf26b54296ee129b3ce078d7cf2cf9254b30da..aa2df2b491e33749f4e1ccaa3821a8bb7978c8b7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2000-06-07  Andreas Jaeger  <aj@suse.de>
+
+       * elf/Makefile: Build ldconfig only when building shared libraries.
+
+2000-06-07  Jakub Jelinek  <jakub@redhat.com>
+
+       * sysdeps/alpha/fpu/bits/mathinline.h (__fdimf): Only declare if
+       __USE_ISOC99.
+       (fdimf, __fdim, fdim): Likewise.
+
 2000-06-07  Ulrich Drepper  <drepper@redhat.com>
 
        * locale/findlocale.c: Add __builtin_expect in many places.
index 23989200ce72db34b234294a8c7a75555e0f02d9..72ce671ee2cfd266923e7c5a5cca7978754cfb3b 100644 (file)
@@ -67,6 +67,7 @@ others-static   = sln
 install-rootsbin = sln
 
 ifeq (yes,$(use-ldconfig))
+ifeq (yes,$(build-shared))
 others-static  += ldconfig
 others         += ldconfig
 install-rootsbin += ldconfig
@@ -77,6 +78,7 @@ extra-objs    += $(ldconfig-modules:=.o)
 # To find xmalloc.c and xstrdup.c
 vpath %.c ../locale/programs
 
+endif
 endif
 
 ifeq (yes,$(build-shared))
index c0911ecb71ebc712ff56165e021779514703ee56..065009c626917910ec6b08500ce4ee97576c1835 100644 (file)
@@ -152,6 +152,8 @@ __MATH_INLINE float floorf (float __x) __THROW { return __floorf(__x); }
 __MATH_INLINE double floor (double __x) __THROW { return __floor(__x); }
 
 
+#ifdef __USE_ISOC99
+
 __MATH_INLINE float __fdimf (float __x, float __y) __THROW
 {
   return __x < __y ? 0.0f : __x - __y;
@@ -171,3 +173,5 @@ __MATH_INLINE double fdim (double __x, double __y) __THROW
 {
   return __x < __y ? 0.0 : __x - __y;
 }
+
+#endif