From f80ea15d3bdec649a3dd154bf3f97df676ca1588 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 17 Apr 2000 21:18:22 +0000 Subject: Add EAFNOSUPPORT. --- sysdeps/unix/sysv/aix/Makefile | 18 ++++++++++++++++++ sysdeps/unix/sysv/aix/Versions | 6 ++++++ sysdeps/unix/sysv/aix/access.c | 18 ++++++++++++++++++ sysdeps/unix/sysv/aix/bind.c | 1 + sysdeps/unix/sysv/aix/bits/errno.h | 4 +++- 5 files changed, 46 insertions(+), 1 deletion(-) create mode 100644 sysdeps/unix/sysv/aix/Versions create mode 100644 sysdeps/unix/sysv/aix/bind.c 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 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. */ -- cgit 1.4.1