1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00
samba-mirror/lib/replace
Alexander Bokovoy 594e316181 lib/replace: split out GSSAPI from lib/replace/system/kerberos.h into lib/replace/system/gssapi.h
With waf build include directories are defined by dependencies specified to subsystems.
Without proper dependency <gssapi/gssapi.h> cannot be found for embedded Heimdal builds
when there are no system-wide gssapi/gssapi.h available.

Split out GSSAPI header includes in a separate replacement header and use that explicitly
where needed.

Autobuild-User: Alexander Bokovoy <ab@samba.org>
Autobuild-Date: Wed Apr 25 00:18:33 CEST 2012 on sn-devel-104
2012-04-25 00:18:32 +02:00
..
system lib/replace: split out GSSAPI from lib/replace/system/kerberos.h into lib/replace/system/gssapi.h 2012-04-25 00:18:32 +02:00
test lib/replace: test for incoherent mmap. 2012-03-22 01:57:37 +01:00
.checker_innocent
aclocal.m4
autoconf-2.60.m4
autogen-autotools.sh replace: Build using waf by default. 2010-10-31 02:45:21 +00:00
build_macros.m4
config.guess
config.sub
configure replace: Look harder for waf. 2010-10-31 17:24:04 +00:00
configure.ac
crypt.c lib/replace: Don't use StrnCpy inside crypt.c 2010-04-04 13:51:02 +02:00
crypt.m4
dlfcn.c
dlfcn.m4
getaddrinfo.c
getaddrinfo.h
getifaddrs.c
getpass.c
getpass.m4
hdr_replace.h s4-waf: replace stdint.h and stdbool.h on systems that don't have them 2010-04-06 20:27:06 +10:00
inet_aton.c
inet_ntoa.c
inet_ntop.c
inet_pton.c
install-sh
libreplace_cc.m4 lib/replace: Add getconf LFS_CFLAGS support to autoconf build 2012-04-05 02:39:08 +02:00
libreplace_ld.m4
libreplace_macros.m4 libreplace: add a missing "eval" to the AC_VERIFY_C_PROTOTYPE macro 2011-10-14 15:11:16 +02:00
libreplace_network.m4 libreplace: Add getpeereid implementation. 2012-03-24 16:00:36 +01:00
libreplace.m4 Remove overly complex attemt to define blkcnt_t and blksize_t. AC_CHECK_TYPE should just do it. 2012-04-12 04:28:29 +02:00
Makefile waf: ensure "make dist" works from a clean git tree for all libraries 2011-01-08 02:35:22 +01:00
Makefile.in
poll.c libreplace: poll based on select 2011-02-28 16:40:19 +01:00
README Move blksize_t and blkcnt_t to replace.h from includes.h. Should help with platforms that don't have these. 2012-04-09 21:40:40 +02:00
repdir_getdents.c
repdir_getdirentries.c
repdir.m4
replace-test.h libreplace: Fix prototypes for all functions. 2011-03-19 03:20:05 +01:00
replace.c replace: Avoid DEBUG(), which is not available in libreplace. 2012-03-25 00:13:59 +01:00
replace.h On advice from Jelmer and Andrew, move the blksize_t and blkcnt_t tests into libreplace to make it standalone. 2012-04-10 04:07:11 +02:00
samba.m4
snprintf.c
socket.c
socketpair.c
strptime.c
strptime.m4
timegm.c
timegm.m4
win32_replace.h
win32.m4
wscript On advice from Jelmer and Andrew, move the blksize_t and blkcnt_t tests into libreplace to make it standalone. 2012-04-10 04:07:11 +02:00

This subsystem ensures that we can always use a certain core set of 
functions and types, that are either provided by the OS or by replacement 
functions / definitions in this subsystem. The aim is to try to stick 
to POSIX functions in here as much as possible. Convenience functions 
that are available on no platform at all belong in other subsystems
(such as LIBUTIL).

The following functions are guaranteed:

ftruncate
strlcpy
strlcat
mktime
rename
initgroups
memmove
strdup
setlinebuf
vsyslog
timegm
setenv
unsetenv
strndup
strnlen
waitpid
seteuid
setegid
asprintf
snprintf
vasprintf
vsnprintf
opendir
readdir
telldir
seekdir
clock_gettime
closedir
dlopen
dlclose
dlsym
dlerror
chroot
bzero
strerror
errno
mkdtemp
mkstemp (a secure one!)
pread
pwrite
chown
lchown
getpass
readline (the library)
inet_ntoa
inet_ntop
inet_pton
inet_aton
strtoll
strtoull
socketpair
strptime
getaddrinfo
freeaddrinfo
getnameinfo
gai_strerror
getifaddrs
freeifaddrs
utime
utimes
dup2
link
readlink
symlink
realpath
poll

Types:
bool
socklen_t
uint{8,16,32,64}_t
int{8,16,32,64}_t
intptr_t
sig_atomic_t
blksize_t
blkcnt_t

Constants:
PATH_NAME_MAX
UINT{16,32,64}_MAX
INT32_MAX
RTLD_LAZY
HOST_NAME_MAX
UINT16_MAX
UINT32_MAX
UINT64_MAX
CHAR_BIT

Macros:
va_copy
__FUNCTION__
__FILE__
__LINE__
__LINESTR__
__location__
__STRING
__STRINGSTRING
MIN
MAX
QSORT_CAST
ZERO_STRUCT
ZERO_STRUCTP
ZERO_STRUCTPN
ZERO_ARRAY
ARRAY_SIZE
PTR_DIFF

Headers:
stdint.h
stdbool.h

Optional C keywords:
volatile

Prerequisites:
memset (for bzero)
syslog (for vsyslog)
mktemp (for mkstemp and mkdtemp)