Abdelrazak Younes wrote:
Any time I try to configure, it fails with this:
checking types of arguments for select... int,int *,struct timeval *
./configure: line 35276: syntax error near unexpected token `"s/^\\(['
./configure: line 35276: `
"s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"'
I think that this is syptomatic of configure.ac having Windows line
endings. Caveat emptor, but I believe that the following should fix it:
$ sed 's/\r$//' configure.ac > configure_new.ac
$ mv -f configure_new.ac configure.ac
$ sh autogen.sh
Angus