[Toxine-cvs] CVS: toxine/m4 readline.m4,1.2,1.3
Brought to you by:
f1rmb
From: Daniel Caujolle-B. <f1...@us...> - 2004-04-08 15:27:37
|
Update of /cvsroot/toxine/toxine/m4 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32766/m4 Modified Files: readline.m4 Log Message: don't need embedded readline anymore Index: readline.m4 =================================================================== RCS file: /cvsroot/toxine/toxine/m4/readline.m4,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- readline.m4 15 Jan 2003 17:40:11 -0000 1.2 +++ readline.m4 8 Apr 2004 15:13:57 -0000 1.3 @@ -1,1382 +1,59 @@ -dnl -dnl Bash specific tests -dnl -dnl Some derived from PDKSH 5.1.3 autoconf tests -dnl -dnl -dnl Check if dup2() does not clear the close on exec flag -dnl -dnl 30/04/2002 Daniel Caujolle-Bert <seg...@cl...> -dnl - Change BASH_CHECK_LIB_TERMCAP() found/not_found args. -dnl [...1404 lines suppressed...] - does not. */ - act.sa_flags = 0; - sigemptyset(&act.sa_mask); - sigemptyset(&oact.sa_mask); - i = fork (); - /* A possible race condition here, but in practice it never happens. */ - if (i == 0) { sleep (3); kill (getppid (), SIGINT); sleep (3); exit (0); } - sigaction(SIGINT, &act, &oact); - status = wait(&i); - if (status == -1) wait(&i); - exit (status == -1); -#endif -} -], bash_cv_sys_restartable_syscalls=yes, bash_cv_sys_restartable_syscalls=no, - AC_MSG_ERROR(cannot check restartable syscalls if cross compiling)) -]) -if test $bash_cv_sys_restartable_syscalls = yes; then - AC_DEFINE(HAVE_RESTARTABLE_SYSCALLS,,[Define if restarted system calls after a signal handler has been installed with signal()]) -fi -]) |