merge 539761 544809 thanks Tim Abbott wrote: > AC_CHECK_FUNC([socket], :, AC_CHECK_LIB([socket], [socket]))
This is underquoted; with proper m4 quotation everything is fine: AC_CHECK_FUNC([socket], [:], [AC_CHECK_LIB([socket], [socket])]) -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

