cURL / Mailing Lists / curl-users / Single Mail

curl-users

typo in curl-7.9.2's acinclude.m4

From: Stoned Elipot <seb_at_script.jussieu.fr>
Date: Mon, 14 Jan 2002 01:54:15 +0100

Hi,
while updating curl on my systems I found a little
typo in curl-7.9.2's acinclude.m4. This typo cause compilation
error on some architectures as it prevent correct detection of
in_addr_t. It seems to me that this typo is still in latest CVS version -
at least it is still there in version 1.9. You will find below a little patch.

Take care and please continue to provide us such a good piece of software!

Best regards, Stoned.

--- acinclude.m4.orig Thu Nov 29 00:29:53 2001
+++ acinclude.m4
@@ -176,7 +176,7 @@
       AC_DEFINE_UNQUOTED(in_addr_t, $curl_cv_in_addr_t_equiv,
                         [type to use in place of in_addr_t if not defined])],
       [#include <sys/types.h>
-#include <sys/socket.h>,
+#include <sys/socket.h>
 #include <arpa/inet.h>])
 ])
 
Received on 2002-01-14