1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/lib/replace
Volker Lendecke ab132ba7e5 configure: Centralize check for posix_fallocate
This checks for posix_fallocate unless we are sitting on an ancient glibc.
With this we don't need HAVE_BROKEN_POSIX_FALLOCATE anymore,
HAVE_POSIX_FALLOCATE will only be defined if we have a valid [g]libc.

./configure tested on Debian, FreeBSD (which does have posix_fallocate) and
OpenBSD (which does not have posix_fallocate). Also tested with changing the
not have an old-enough glibc around. All did the right thing.

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
2017-08-24 01:46:08 +02:00
..
system libbreplace: compatibility fix for AIX 2017-06-13 09:11:56 +02:00
test replace: Use the same size as d_name member of struct dirent 2017-06-01 19:35:10 +02:00
.checker_innocent
closefrom.c libreplace: Add a closefrom() implementation 2016-06-13 10:10:11 +02:00
configure
crypt.c
cwrap.c replace: Add socket_wrapper_enabled(). 2014-04-17 14:56:06 +02:00
dlfcn.c
getaddrinfo.c libreplace: free() deals fine with NULL pointers 2014-01-24 13:55:47 -08:00
getaddrinfo.h
getifaddrs.c replace: fix some trailing whitespaces 2017-01-21 13:15:19 +01:00
hdr_replace.h
inet_aton.c
inet_ntoa.c
inet_ntop.c
inet_pton.c
Makefile
poll.c
README replace: Remove deprecated getpass() support. 2012-12-03 14:35:10 +01:00
replace-test.h
replace-testsuite.h
replace.c strerror_r: provide XSI-compliant strerror_r 2017-06-13 18:38:14 +02:00
replace.h strerror_r: provide XSI-compliant strerror_r 2017-06-13 18:38:14 +02:00
snprintf.c Correct "formated" typos. 2017-02-22 08:26:22 +01:00
socket.c Bug 8997: change libreplace GPL source to LGPL 2013-06-03 18:06:18 +02:00
socketpair.c
strptime.c
timegm.c
win32_replace.h
wscript configure: Centralize check for posix_fallocate 2017-08-24 01:46:08 +02:00
xattr.c lib/replace: validate xattr namespace prefix on FreeBSD 2017-02-10 18:33:17 +01: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
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
setproctitle

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)