Title: Message
I've tried GNU Autoconf-2.53 and 2.54 on seperate computers (Redhat on one and LFS on another) and i get an error:
 
./configure: line 16528: syntax error near unexpected token `yes:no'
./configure: line 16528: `  yes:no'
 
Which is:
 
# So?  What about this header?
case $ac_header_compiler:$ac_header_preproc in
  yes:no
fi
 
I can hack my way past it with:
 
# So?  What about this header?
case $ac_header_compiler:$ac_header_preproc in
  yes:no )
 
I get about 10 other errors after that which i can also hack past, but in the end i am left with an "unexpected end of file" error message.
 
Anyone else with this same problem? Anyone got a solution?

Reply via email to