diff options
author | Roland McGrath <roland@gnu.org> | 1995-10-04 21:52:33 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-10-04 21:52:33 +0000 |
commit | 57aefafe56f066b56031187ea26e49df076f2ac9 (patch) | |
tree | 97b0b16b37fce77f46fa995bbce497007cfbddaa /sysdeps/unix/sysv/linux/Makefile | |
parent | 5f770861196fee245b039c1f349a25d460d30ade (diff) | |
download | glibc-57aefafe56f066b56031187ea26e49df076f2ac9.tar glibc-57aefafe56f066b56031187ea26e49df076f2ac9.tar.gz glibc-57aefafe56f066b56031187ea26e49df076f2ac9.tar.bz2 glibc-57aefafe56f066b56031187ea26e49df076f2ac9.zip |
* sysdeps/unix/Makefile ($(common-objpfx)ioctls): Remove NULL from
the list.
* time/northamerica: Corrections to Canada data from ADO 95i.
* sysdeps/unix/sysv/linux/Makefile (headers): Don't append to this
unconditionally. In socket subdir, append sys/socketcall.h; in
time subdir, append sys/timex.h.
(config-LDFLAGS): New variable.
* sysdeps/unix/sysv/linux/Dist: New file.
* Makeconfig (+link): Pass $(config-LDFLAGS) before $(LDFLAGS).
Diffstat (limited to 'sysdeps/unix/sysv/linux/Makefile')
-rw-r--r-- | sysdeps/unix/sysv/linux/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/Makefile b/sysdeps/unix/sysv/linux/Makefile index 702ad047a3..6e1dd8ccb2 100644 --- a/sysdeps/unix/sysv/linux/Makefile +++ b/sysdeps/unix/sysv/linux/Makefile @@ -12,10 +12,15 @@ endif ifeq ($(subdir), time) sysdep_routines := $(sysdep_routines) adjtimex +headers += sys/timex.h endif ifeq ($(subdir), sysvipc) sysdep_routines := $(sysdep_routines) ipc endif -headers := $(headers) sys/socketcall.h sys/timex.h +ifeq ($(subdir), socket) +headers += sys/socketcall.h +endif + +config-LDFLAGS = -Wl,-dynamic-linker=/lib/ld-gnu.so.1 |