On Thu, 14 Jan 1999, Peter Wang wrote: > Hello all, > Have anyone tried to run anlgform interface under Linux OS? > > I tried to recompile the anlgform.cgi using cc under Linux > (slackware 2.0.29 ), and I got the following error: > interal compiler error:in main function:assignment to pointer > from integer without cast. cc1 got fatal signal 11 > I then checked the main function of anlgform.c(3.11) and found this: > line 439: timeoffset = atoi(val); > where timeoffset should be an int. So I changed it to: > timeoffset = (unsigned int)atoi(val); > and several similar lines. But atoi() returns int, so it was more correct before your change. I can't see why you would have trouble. Isn't your cc in fact gcc? anlgform certainly compiles cleanly with gcc. "Internal compiler error" suggests to me that your gcc isn't installed properly. -- Stephen Turner [EMAIL PROTECTED] http://www.statslab.cam.ac.uk/~sret1/ Statistical Laboratory, 16 Mill Lane, Cambridge CB2 1SB, England "Ad infinitum, if not ad nauseam." (Interviewee, BBC Radio 4) -------------------------------------------------------------------- This is the analog-help mailing list. To unsubscribe from this mailing list, send mail to [EMAIL PROTECTED] with "unsubscribe analog-help" in the main BODY OF THE MESSAGE. --------------------------------------------------------------------
