cURL / Mailing Lists / curl-users / Single Mail

curl-users

[ curl-Bugs-473813 ] Irix Roundup

From: <noreply_at_sourceforge.net>
Date: Mon, 22 Oct 2001 14:25:10 -0700

Bugs item #473813, was opened at 2001-10-22 14:25
You can respond by visiting:
http://sourceforge.net/tracker/?func=detail&atid=100976&aid=473813&group_id=976

Category: compile problem
Group: portability problem
Status: Open
Resolution: None
Priority: 5
Submitted By: Tom Benoist (tbenoist)
Assigned to: Daniel Stenberg (bagder)
Summary: Irix Roundup

Initial Comment:

Okay couple things for you guys (if your still
interested in irix of course)

To make the configure succeed I need to hand define
socklen_t
(see previous bug on failing configure)

typdef int socklen_t;
(I added it to my /usr/include/sys/sockets.h file to
avoid editing
./configure, which I dont understand very well sorry)

Next, the irix compiler completely refuses
to respect indented # tags.

Example:
#ifdef HAVE_UTIME_H
 #include <utime.h>
#else
 #ifdef HAVE_SYS_UTIME_H
 #include <sys/utime.h>
 #endif
#endif

Just doesnt work.

Needs to be:
#ifdef HAVE_UTIME_H
#include <utime.h>
#else
#ifdef HAVE_SYS_UTIME_H
#include <sys/utime.h>
#endif
#endif

This was only problem in main.c as far as I can tell.

Im pretty new to using cvs, but happy to try to upload
changes if it helps.

Thank,
Tom Benoist
ben_at_ifx.com

----------------------------------------------------------------------

You can respond by visiting:
http://sourceforge.net/tracker/?func=detail&atid=100976&aid=473813&group_id=976
Received on 2001-10-22