1
0
mirror of https://git.savannah.gnu.org/git/gnulib.git synced 2025-08-17 12:41:05 +03:00
Files
gnulib/modules/pselect
Bruno Haible d7255651d7 select: Avoid link errors on MSVC.
* m4/select.m4 (gl_FUNC_SELECT): Determine LIB_SELECT.
* modules/select (Link): Replace $(LIBSOCKET) with $(LIB_SELECT).
* modules/pselect (Link): Likewise.
* NEWS: Mention the change.
* modules/select-tests (Makefile.am): Link test-select, test-select-fd,
test-select-stdin against $(LIB_SELECT).
* modules/pselect-tests (Makefile.am): Link test-pselect against
$(LIB_SELECT).
2011-09-22 23:45:06 +02:00

33 lines
577 B
Plaintext

Description:
pselect() function: synchronous I/O multiplexing.
Files:
lib/pselect.c
m4/pselect.m4
Depends-on:
sys_select
pthread_sigmask [test $HAVE_PSELECT = 0 || test $REPLACE_PSELECT = 1]
select [test $HAVE_PSELECT = 0 || test $REPLACE_PSELECT = 1]
configure.ac:
gl_FUNC_PSELECT
if test $HAVE_PSELECT = 0 || test $REPLACE_PSELECT = 1; then
AC_LIBOBJ([pselect])
fi
gl_SYS_SELECT_MODULE_INDICATOR([pselect])
Makefile.am:
Include:
<sys/select.h>
Link:
$(LIB_SELECT) $(LIB_PTHREAD_SIGMASK)
License:
LGPLv2+
Maintainer:
Paul Eggert, Bruno Haible, Jim Meyering