diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-04-17 21:18:22 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-04-17 21:18:22 +0000 |
commit | f80ea15d3bdec649a3dd154bf3f97df676ca1588 (patch) | |
tree | 1e2a06b58b43d70c7ad3fa7cf66c5f2bb8e29f3c /sysdeps/unix/sysv/aix/Makefile | |
parent | d6c05bbe036022096ef1a2fca8ca647f4d1959b5 (diff) | |
download | glibc-f80ea15d3bdec649a3dd154bf3f97df676ca1588.tar glibc-f80ea15d3bdec649a3dd154bf3f97df676ca1588.tar.gz glibc-f80ea15d3bdec649a3dd154bf3f97df676ca1588.tar.bz2 glibc-f80ea15d3bdec649a3dd154bf3f97df676ca1588.zip |
Add EAFNOSUPPORT.
Diffstat (limited to 'sysdeps/unix/sysv/aix/Makefile')
-rw-r--r-- | sysdeps/unix/sysv/aix/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/aix/Makefile b/sysdeps/unix/sysv/aix/Makefile index e69de29bb2..c94b9d45b6 100644 --- a/sysdeps/unix/sysv/aix/Makefile +++ b/sysdeps/unix/sysv/aix/Makefile @@ -0,0 +1,18 @@ +# XXX For now always link against the syscalls export file. +# This is a hack until the import/export stuff is worked out. ++postctor += /lib/syscalls.exp + +# XXX This is a hack until we have the possibility to generate out own crt0. +static-start-installed-name = /usr/lib/crt0.o + +ifeq ($(subdir),misc) +sysdep_routines += dl-open dl-sym dl-close +endif + +# Don't compile the ctype glue code, since there is no old non-GNU C library. +inhibit-glue = yes + +# XXX Don"t know yet why this is needed in the moment. +ifeq ($(subdir),timezone) +CPPFLAGS-zic.c = -Dunix +endif |