Hash :
0f55f146
Author :
Date :
2006-09-08T12:26:34
Don't make generated files read-only. That would bother too many people. However, do retain the ability to work when targets are read-only: remove the destination and temporary files before writing them (when generated via sed or echo), or by using the -f option for both cp and mv commands. Suggestion to use -f from Paul Eggert. * modules/alloca-opt, modules/argz, modules/arpa_inet: * modules/byteswap, modules/configmake, modules/fcntl: * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes: * modules/localcharset, modules/netinet_in, modules/poll: * modules/stdbool, modules/stdint, modules/sys_select: * modules/sys_socket, modules/sys_stat, modules/sysexits:
Description:
A <sys/select.h> for systems lacking it (e.g., Mingw).
Files:
m4/sys_select_h.m4
Depends-on:
sys_socket
configure.ac:
gl_HEADER_SYS_SELECT
Makefile.am:
BUILT_SOURCES += $(SYS_SELECT_H)
# We need the following in order to create <sys/select.h> when the system
# doesn't have one that works with the given compiler.
sys/select.h:
test -d sys || mkdir sys
rm -f $@-t $@
echo '#include <sys/socket.h>' >$@-t
mv $@-t $@
MOSTLYCLEANFILES += sys/select.h sys/select.h-t
MOSTLYCLEANDIRS += sys
Include:
#include <sys/select.h>
License:
LGPL
Maintainer:
Simon Josefsson