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 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.
install-rootsbin = sln
ifeq (yes,$(use-ldconfig))
+ifeq (yes,$(build-shared))
others-static += ldconfig
others += ldconfig
install-rootsbin += ldconfig
vpath %.c ../locale/programs
endif
+endif
ifeq (yes,$(build-shared))
tests = loadtest restest1 preloadtest loadfail multiload origtest resolvfail \
__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;
{
return __x < __y ? 0.0 : __x - __y;
}
+
+#endif