> cc -Wall -funsigned-char -D_GNU_SOURCE=1 -D_FILE_OFFSET_BITS=64
> -idirafter /usr/local/include  -idirafter /usr/include  -idirafter
> /openpkg/include  -idirafter /usr/local/include/apr-0  -idirafter
> /usr/include/apr-0 -Os -DFSVS_VERSION='"fsvs-1.0.15:584"'  -c -o
> actions.o actions.c
> In file included from actions.c:15:
> checksum.h:25: error: syntax error before "no"
> checksum.h:25: warning: no semicolon at end of struct or union
> checksum.h:32: error: syntax error before '*' token
> checksum.h:32: warning: type defaults to `int' in declaration of `index'
> checksum.h:32: error: 'index' redeclared as different kind of symbol
> checksum.h:32: error: 'index' redeclared as different kind of symbol
> checksum.h:32: warning: data definition has no type or storage class
> checksum.h:33: error: syntax error before '}' token
> make: *** [actions.o] Error 1
I think in the generated config.h you'll find something like
    #define AC_CV_C_UINT32_T  no
which means that there's no 32bit unsigned int type found by configure.
If you know your sizes :-) you could try changing that line - eg. to
    #define AC_CV_C_UINT32_T  unsigned int

This is all on CentOS, isn't it? Hmmm .. is such a system available
anywhere? SF has none (http://sourceforge.net/docs/compile_farm#hosts).


One of the main problems seems to be that you get newlines in the INCDIR
variable.
Could you please take a look into configure.in and change the part
     ... then echo $d ...
into
     ... then printf "%s " $d ...
and do an autoconf/configure/make run?


Thank you!


Regards,

Phil


-- 
Versioning your /etc, /home or even your whole installation?
             Try fsvs (fsvs.tigris.org)!

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to