Add EAFNOSUPPORT.
authorUlrich Drepper <drepper@redhat.com>
Mon, 17 Apr 2000 21:18:22 +0000 (21:18 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 17 Apr 2000 21:18:22 +0000 (21:18 +0000)
sysdeps/unix/sysv/aix/Makefile
sysdeps/unix/sysv/aix/Versions [new file with mode: 0644]
sysdeps/unix/sysv/aix/access.c
sysdeps/unix/sysv/aix/bind.c [new file with mode: 0644]
sysdeps/unix/sysv/aix/bits/errno.h

index e69de29..c94b9d4 100644 (file)
@@ -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 (file)
index 0000000..4c32bbb
--- /dev/null
@@ -0,0 +1,6 @@
+libc {
+  GLIBC_2.2 {
+    # u*
+    umount;
+  }
+}
index e25ee8f..d46a524 100644 (file)
@@ -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 (file)
index 0000000..6036fbb
--- /dev/null
@@ -0,0 +1 @@
+/* This is a system call.  */
index 37800c3..d14e329 100644 (file)
@@ -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.  */