mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-03 08:11:08 +00:00
third update from main archive 960907
Sat Sep 7 18:41:17 1996 Richard Henderson <rth@tamu.edu> * Makeconfig (+link): Filter out start, pre & postinit from the generic depenancies as well. * Rules: Add start, pre & postinit to the dependancies of $(others) and $(tests). * configure.in: elf_dirs missing "sysdeps" component. * locale/Makefile (distribute): Add locale.c and localedef.c.
This commit is contained in:
parent
8ca5c11bdf
commit
c2bb8cabc5
11
ChangeLog
11
ChangeLog
@ -1,3 +1,12 @@
|
|||||||
|
Sat Sep 7 18:41:17 1996 Richard Henderson <rth@tamu.edu>
|
||||||
|
|
||||||
|
* Makeconfig (+link): Filter out start, pre & postinit from the
|
||||||
|
generic depenancies as well.
|
||||||
|
* Rules: Add start, pre & postinit to the dependancies of
|
||||||
|
$(others) and $(tests).
|
||||||
|
|
||||||
|
* configure.in: elf_dirs missing "sysdeps" component.
|
||||||
|
|
||||||
Sun Sep 8 02:36:02 1996 Ulrich Drepper <drepper@cygnus.com>
|
Sun Sep 8 02:36:02 1996 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
* locale/SYS_libc.c (_libc_intl_domainname): Change value to "libc".
|
* locale/SYS_libc.c (_libc_intl_domainname): Change value to "libc".
|
||||||
@ -21,6 +30,8 @@ Sun Sep 8 02:36:02 1996 Ulrich Drepper <drepper@cygnus.com>
|
|||||||
|
|
||||||
* version.h (VERSION): Bump to 1.94.
|
* version.h (VERSION): Bump to 1.94.
|
||||||
|
|
||||||
|
* locale/Makefile (distribute): Add locale.c and localedef.c.
|
||||||
|
|
||||||
Sat Sep 7 14:00:33 1996 David Mosberger-Tang <davidm@azstarnet.com>
|
Sat Sep 7 14:00:33 1996 David Mosberger-Tang <davidm@azstarnet.com>
|
||||||
|
|
||||||
* catgets/catgets.c (catopen): Allocate sizeof(*result) bytes
|
* catgets/catgets.c (catopen): Allocate sizeof(*result) bytes
|
||||||
|
@ -303,7 +303,8 @@ ifndef +link
|
|||||||
+link = $(CC) -nostdlib -nostartfiles -o $@ \
|
+link = $(CC) -nostdlib -nostartfiles -o $@ \
|
||||||
$(sysdep-LDFLAGS) $(config-LDFLAGS) $(LDFLAGS) \
|
$(sysdep-LDFLAGS) $(config-LDFLAGS) $(LDFLAGS) \
|
||||||
$(addprefix $(csu-objpfx),start.o) $(+preinit) \
|
$(addprefix $(csu-objpfx),start.o) $(+preinit) \
|
||||||
$(filter-out $(common-objpfx)libc%,$^) \
|
$(filter-out $(addprefix $(csu-objpfx),start.o) $(+preinit) \
|
||||||
|
$(link-extra-libs) $(common-objpfx)libc% $(+postinit),$^) \
|
||||||
$(link-extra-libs) $(link-libc) $(+postinit)
|
$(link-extra-libs) $(link-libc) $(+postinit)
|
||||||
endif
|
endif
|
||||||
ifndef config-LDFLAGS
|
ifndef config-LDFLAGS
|
||||||
|
3
Rules
3
Rules
@ -89,7 +89,8 @@ endif
|
|||||||
|
|
||||||
ifneq "$(strip $(others) $(tests))" ""
|
ifneq "$(strip $(others) $(tests))" ""
|
||||||
$(addprefix $(objpfx),$(others) $(tests)): %: %.o \
|
$(addprefix $(objpfx),$(others) $(tests)): %: %.o \
|
||||||
$(sort $(filter $(common-objpfx)libc%,$(link-libc)))
|
$(sort $(filter $(common-objpfx)libc%,$(link-libc))) \
|
||||||
|
$(addprefix $(csu-objpfx),start.o) $(+preinit) $(+postinit)
|
||||||
$(+link)
|
$(+link)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
2
configure
vendored
2
configure
vendored
@ -878,7 +878,7 @@ if test "$elf" = yes; then
|
|||||||
esac
|
esac
|
||||||
for m in $mach; do
|
for m in $mach; do
|
||||||
if test -d $xsrcdir${d}sysdeps$m/elf; then
|
if test -d $xsrcdir${d}sysdeps$m/elf; then
|
||||||
elf_dirs="$elf_dirs $d$m/elf"
|
elf_dirs="$elf_dirs ${d}sysdeps$m/elf"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
@ -248,7 +248,7 @@ if test "$elf" = yes; then
|
|||||||
esac
|
esac
|
||||||
for m in $mach; do
|
for m in $mach; do
|
||||||
if test -d $xsrcdir${d}sysdeps$m/elf; then
|
if test -d $xsrcdir${d}sysdeps$m/elf; then
|
||||||
elf_dirs="$elf_dirs $d$m/elf"
|
elf_dirs="$elf_dirs ${d}sysdeps$m/elf"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user