aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/aix
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-04-17 21:18:22 +0000
committerUlrich Drepper <drepper@redhat.com>2000-04-17 21:18:22 +0000
commitf80ea15d3bdec649a3dd154bf3f97df676ca1588 (patch)
tree1e2a06b58b43d70c7ad3fa7cf66c5f2bb8e29f3c /sysdeps/unix/sysv/aix
parentd6c05bbe036022096ef1a2fca8ca647f4d1959b5 (diff)
downloadglibc-f80ea15d3bdec649a3dd154bf3f97df676ca1588.tar
glibc-f80ea15d3bdec649a3dd154bf3f97df676ca1588.tar.gz
glibc-f80ea15d3bdec649a3dd154bf3f97df676ca1588.tar.bz2
glibc-f80ea15d3bdec649a3dd154bf3f97df676ca1588.zip
Add EAFNOSUPPORT.
Diffstat (limited to 'sysdeps/unix/sysv/aix')
-rw-r--r--sysdeps/unix/sysv/aix/Makefile18
-rw-r--r--sysdeps/unix/sysv/aix/Versions6
-rw-r--r--sysdeps/unix/sysv/aix/access.c18
-rw-r--r--sysdeps/unix/sysv/aix/bind.c1
-rw-r--r--sysdeps/unix/sysv/aix/bits/errno.h4
5 files changed, 46 insertions, 1 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
diff --git a/sysdeps/unix/sysv/aix/Versions b/sysdeps/unix/sysv/aix/Versions
new file mode 100644
index 0000000000..4c32bbbe77
--- /dev/null
+++ b/sysdeps/unix/sysv/aix/Versions
@@ -0,0 +1,6 @@
+libc {
+ GLIBC_2.2 {
+ # u*
+ umount;
+ }
+}
diff --git a/sysdeps/unix/sysv/aix/access.c b/sysdeps/unix/sysv/aix/access.c
index e25ee8f686..d46a524180 100644
--- a/sysdeps/unix/sysv/aix/access.c
+++ b/sysdeps/unix/sysv/aix/access.c
@@ -1,3 +1,21 @@
+/* Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+ This file is part of the GNU C Library.
+
+ The GNU C Library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public License as
+ published by the Free Software Foundation; either version 2 of the
+ License, or (at your option) any later version.
+
+ The GNU C Library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public
+ License along with the GNU C Library; see the file COPYING.LIB. If not,
+ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA. */
+
#include <unistd.h>
extern int accessx (const char *name, int type, int who);
diff --git a/sysdeps/unix/sysv/aix/bind.c b/sysdeps/unix/sysv/aix/bind.c
new file mode 100644
index 0000000000..6036fbbffd
--- /dev/null
+++ b/sysdeps/unix/sysv/aix/bind.c
@@ -0,0 +1 @@
+/* This is a system call. */
diff --git a/sysdeps/unix/sysv/aix/bits/errno.h b/sysdeps/unix/sysv/aix/bits/errno.h
index 37800c3874..d14e3299d4 100644
--- a/sysdeps/unix/sysv/aix/bits/errno.h
+++ b/sysdeps/unix/sysv/aix/bits/errno.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 1999 Free Software Foundation, Inc.
+/* Copyright (C) 1999, 2000 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -98,6 +98,8 @@
# define ESOCKTNOSUPPORT 63 /* Socket type not supported. */
# define EOPNOTSUPP 64 /* Operation not supported on socket. */
# define EPFNOSUPPORT 65 /* Protocol family not supported. */
+# define EAFNOSUPPORT 66 /* Address family not supported by protocol
+ family. */
# define EADDRINUSE 67 /* Address already in use. */
# define EADDRNOTAVAIL 68 /* Can't assign requested address. */
# define ENETDOWN 69 /* Network is down. */