mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-22 19:00:07 +00:00
Add EAFNOSUPPORT.
This commit is contained in:
parent
d6c05bbe03
commit
f80ea15d3b
@ -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
|
6
sysdeps/unix/sysv/aix/Versions
Normal file
6
sysdeps/unix/sysv/aix/Versions
Normal file
@ -0,0 +1,6 @@
|
||||
libc {
|
||||
GLIBC_2.2 {
|
||||
# u*
|
||||
umount;
|
||||
}
|
||||
}
|
@ -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);
|
||||
|
1
sysdeps/unix/sysv/aix/bind.c
Normal file
1
sysdeps/unix/sysv/aix/bind.c
Normal file
@ -0,0 +1 @@
|
||||
/* This is a system call. */
|
@ -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. */
|
||||
|
Loading…
Reference in New Issue
Block a user