Mercurial > hg > octave-lojdl > gnulib-hg
annotate modules/poll-tests @ 12745:6f2010318304
Link test-poll against INET_PTON_LIB.
* modules/poll-tests (test_poll_LDADD): Add $(INET_PTON_LIB),
for inet_pton on Solaris 10.
Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> |
---|---|
date | Sun, 17 Jan 2010 12:34:01 +0100 |
parents | 33ab12a7cea2 |
children | 3a4d1597833c |
rev | line source |
---|---|
10419
bbceefd03520
add a minimal testsuite for the poll module
Paolo Bonzini <bonzini@gnu.org>
parents:
diff
changeset
|
1 Files: |
12489 | 2 tests/signature.h |
10419
bbceefd03520
add a minimal testsuite for the poll module
Paolo Bonzini <bonzini@gnu.org>
parents:
diff
changeset
|
3 tests/test-poll.c |
bbceefd03520
add a minimal testsuite for the poll module
Paolo Bonzini <bonzini@gnu.org>
parents:
diff
changeset
|
4 |
bbceefd03520
add a minimal testsuite for the poll module
Paolo Bonzini <bonzini@gnu.org>
parents:
diff
changeset
|
5 Depends-on: |
10420
ffae1ac7e958
port poll tests to Windows
Paolo Bonzini <bonzini@gnu.org>
parents:
10419
diff
changeset
|
6 stdbool |
10419
bbceefd03520
add a minimal testsuite for the poll module
Paolo Bonzini <bonzini@gnu.org>
parents:
diff
changeset
|
7 sys_socket |
bbceefd03520
add a minimal testsuite for the poll module
Paolo Bonzini <bonzini@gnu.org>
parents:
diff
changeset
|
8 netinet_in |
bbceefd03520
add a minimal testsuite for the poll module
Paolo Bonzini <bonzini@gnu.org>
parents:
diff
changeset
|
9 arpa_inet |
10691
e45e0ca6c2a6
Add missing module dependencies.
Bruno Haible <bruno@clisp.org>
parents:
10610
diff
changeset
|
10 sys_ioctl |
10419
bbceefd03520
add a minimal testsuite for the poll module
Paolo Bonzini <bonzini@gnu.org>
parents:
diff
changeset
|
11 extensions |
10420
ffae1ac7e958
port poll tests to Windows
Paolo Bonzini <bonzini@gnu.org>
parents:
10419
diff
changeset
|
12 inet_pton |
10466 | 13 errno |
14 perror | |
10420
ffae1ac7e958
port poll tests to Windows
Paolo Bonzini <bonzini@gnu.org>
parents:
10419
diff
changeset
|
15 sockets |
10594
43282f926709
New modules 'accept', 'bind', 'connect', 'getpeername', 'getsockname', 'getsockopt', 'listen', 'recv', 'recvfrom', 'send', 'sendto', 'setsockopt', 'socket'.
Bruno Haible <bruno@clisp.org>
parents:
10537
diff
changeset
|
16 socket |
43282f926709
New modules 'accept', 'bind', 'connect', 'getpeername', 'getsockname', 'getsockopt', 'listen', 'recv', 'recvfrom', 'send', 'sendto', 'setsockopt', 'socket'.
Bruno Haible <bruno@clisp.org>
parents:
10537
diff
changeset
|
17 bind |
43282f926709
New modules 'accept', 'bind', 'connect', 'getpeername', 'getsockname', 'getsockopt', 'listen', 'recv', 'recvfrom', 'send', 'sendto', 'setsockopt', 'socket'.
Bruno Haible <bruno@clisp.org>
parents:
10537
diff
changeset
|
18 setsockopt |
43282f926709
New modules 'accept', 'bind', 'connect', 'getpeername', 'getsockname', 'getsockopt', 'listen', 'recv', 'recvfrom', 'send', 'sendto', 'setsockopt', 'socket'.
Bruno Haible <bruno@clisp.org>
parents:
10537
diff
changeset
|
19 listen |
43282f926709
New modules 'accept', 'bind', 'connect', 'getpeername', 'getsockname', 'getsockopt', 'listen', 'recv', 'recvfrom', 'send', 'sendto', 'setsockopt', 'socket'.
Bruno Haible <bruno@clisp.org>
parents:
10537
diff
changeset
|
20 connect |
43282f926709
New modules 'accept', 'bind', 'connect', 'getpeername', 'getsockname', 'getsockopt', 'listen', 'recv', 'recvfrom', 'send', 'sendto', 'setsockopt', 'socket'.
Bruno Haible <bruno@clisp.org>
parents:
10537
diff
changeset
|
21 accept |
10691
e45e0ca6c2a6
Add missing module dependencies.
Bruno Haible <bruno@clisp.org>
parents:
10610
diff
changeset
|
22 ioctl |
10610
9202c6340cce
Combine the two replacements of 'close'.
Paolo Bonzini <bonzini@gnu.org>
parents:
10594
diff
changeset
|
23 close |
10419
bbceefd03520
add a minimal testsuite for the poll module
Paolo Bonzini <bonzini@gnu.org>
parents:
diff
changeset
|
24 |
bbceefd03520
add a minimal testsuite for the poll module
Paolo Bonzini <bonzini@gnu.org>
parents:
diff
changeset
|
25 configure.ac: |
10421
ab772691412e
fix test-poll compilation failure on Cygwin
Paolo Bonzini <bonzini@gnu.org>
parents:
10420
diff
changeset
|
26 AC_CHECK_HEADERS_ONCE([unistd.h sys/wait.h]) |
10419
bbceefd03520
add a minimal testsuite for the poll module
Paolo Bonzini <bonzini@gnu.org>
parents:
diff
changeset
|
27 |
bbceefd03520
add a minimal testsuite for the poll module
Paolo Bonzini <bonzini@gnu.org>
parents:
diff
changeset
|
28 Makefile.am: |
bbceefd03520
add a minimal testsuite for the poll module
Paolo Bonzini <bonzini@gnu.org>
parents:
diff
changeset
|
29 TESTS += test-poll |
bbceefd03520
add a minimal testsuite for the poll module
Paolo Bonzini <bonzini@gnu.org>
parents:
diff
changeset
|
30 check_PROGRAMS += test-poll |
12745
6f2010318304
Link test-poll against INET_PTON_LIB.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
12489
diff
changeset
|
31 test_poll_LDADD = $(LDADD) @LIBSOCKET@ $(INET_PTON_LIB) |