1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/lib/replace
Ira Cooper 7fa4795607 waf: add -fstack-protector to LDFLAGS if detected.
If we compile with -fstack-protector, we should link
with it.

Reviewed-by: Andrew Bartlett <abartlet@samba.org>

Autobuild-User(master): Andrew Bartlett <abartlet@samba.org>
Autobuild-Date(master): Wed Mar  6 04:06:04 CET 2013 on sn-devel-104
2013-03-06 04:06:04 +01:00
..
system lib/replace: Include sys/ucontext.h if available. 2013-01-15 08:28:45 +01:00
test replace: Remove deprecated getpass() support. 2012-12-03 14:35:10 +01:00
.checker_innocent
configure replace: Look harder for waf. 2010-10-31 17:24:04 +00:00
crypt.c lib/replace: Don't use StrnCpy inside crypt.c 2010-04-04 13:51:02 +02:00
crypt.m4 Prepend "$libreplacedir/" to all objects in LIBREPLACEOBJ 2009-09-14 22:08:12 +02:00
dlfcn.c
dlfcn.m4 Prepend "$libreplacedir/" to all objects in LIBREPLACEOBJ 2009-09-14 22:08:12 +02:00
getaddrinfo.c
getaddrinfo.h
getifaddrs.c Change uint_t to unsigned int in lib/replace 2010-02-02 07:18:16 +01:00
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 build: define _BSD_TYPES on IRIX to have types like u_short 2012-09-07 16:42:14 +02:00
libreplace_ld.m4 libreplace: set SONAMEFLAG to "-Wl,-soname=" on QNX 2009-08-08 11:18:29 +02:00
libreplace_macros.m4 lib/replace: add AC_CHECK_VALUEOF() macro 2013-03-01 11:58:43 -08:00
libreplace_network.m4 libreplace: Add getpeereid implementation. 2012-03-24 16:00:36 +01:00
libreplace.m4 lib/replace: Add ucontext configure autoconf checks. 2013-01-15 08:28:45 +01:00
Makefile waf: ensure "make dist" works from a clean git tree for all libraries 2011-01-08 02:35:22 +01:00
poll.c replace: fix 520c9b0b0a 2012-09-18 16:06:18 +02:00
README replace: Remove deprecated getpass() support. 2012-12-03 14:35:10 +01:00
repdir_getdents.c
repdir_getdirentries.c
repdir.m4 Prepend "$libreplacedir/" to all objects in LIBREPLACEOBJ 2009-09-14 22:08:12 +02:00
replace-test.h lib/replace: Try to fix build on HP-UX for os2_delete test 2012-09-23 14:31:01 +10:00
replace-testsuite.h lib/replace: Try to fix build on HP-UX for os2_delete test 2012-09-23 14:31:01 +10:00
replace.c heimdal_build: Try again to sort out the strerror_r mess 2013-01-19 10:32:17 +01:00
replace.h heimdal_build: Try again to sort out the strerror_r mess 2013-01-19 10:32:17 +01:00
snprintf.c lib/replace: replace all *printf function if we replace snprintf (bug #9390) 2012-11-14 19:41:14 +01:00
socket.c
socketpair.c
strptime.c replace: fix unused variable warning 2012-06-13 23:57:57 +02:00
strptime.m4 lib/replace: define HAVE_WORKING_STRPTIME instead of REPLACE_STRPTIME 2012-06-14 09:34:14 +02:00
timegm.c
timegm.m4 Prepend "$libreplacedir/" to all objects in LIBREPLACEOBJ 2009-09-14 22:08:12 +02:00
win32_replace.h
win32.m4
wscript waf: add -fstack-protector to LDFLAGS if detected. 2013-03-06 04:06:04 +01:00
xattr.c lib/replace: Return size of xattr if size argument is 0 2012-10-28 16:32:42 +11: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)