[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: mSQL and MySQL



>  After some fiddling arround i built msql-2.0.3 packages any one interested?
>  I'm also trying to make mysql packages but so far i can't do that it fails
> with strange message:
> gcc -DHAVE_CONFIG_H -I. -I. -I.. -I./../include -I../include  -O3 -g -O2
> -DDBUG_OFF -D_FILE_OFFSET_BITS=64 -c strstr.c
> strstr.c:16: parse error before `&&'
> strstr.c:19: parse error before `{'

Possible the 'type' is incorrect befor &&. Can't be referenced; missing header
file or something like that.

> strstr.c:25: warning: initialization makes integer from pointer without a cast
> strstr.c:25: initializer element is not constant
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

This is something like:  File *in = stdin;

Break it up into:

File *in;


int main(....)
{
  in = stdin;
  ...
}  



Reply to: