xfreopen: fix typo: s/frepoen/freopen/
[gnulib/ericb.git] / modules / posix_spawn-tests
blob8795206a70c3c2b0112896ad57a6ccce7d2a3d2d
1 Files:
2 tests/test-posix_spawn3.c
3 tests/signature.h
5 Depends-on:
6 posix_spawn_file_actions_init
7 posix_spawn_file_actions_addopen
8 posix_spawn_file_actions_destroy
9 stdbool
10 unistd
11 sys_wait
13 configure.ac:
14 AC_EGREP_CPP([notposix], [[
15 #if defined _MSC_VER || defined __MINGW32__
16   notposix
17 #endif
18   ]],
19   [posix_spawn_ported=no],
20   [posix_spawn_ported=yes])
21 AM_CONDITIONAL([POSIX_SPAWN_PORTED], [test $posix_spawn_ported = yes])
23 Makefile.am:
24 if POSIX_SPAWN_PORTED
25 TESTS += test-posix_spawn3
26 check_PROGRAMS += test-posix_spawn3
27 endif