On Tue, Jun 03, 2003 at 03:55:47PM -0700, Kris Kennaway wrote:
> Post the code it's trying to run.  It's possible it's buggy.
> 
> Kris
#include <stdio.h>
typedef long long longlong;
main()
{
  longlong ll=1;
  float f;
  FILE *file=fopen("conftestval", "w");
  f = (float) ll;
  fprintf(file,"%g\n",f);
  close(file);
  exit (0);
}

this section of code is found in "configure" script in mysql323-client port.

Jiawei


-- 
"Without the userland, the kernel is useless."
               --inspired by The Tao of Programming
_______________________________________________
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to