I am using fedora core 2 and I have tried to compile cloop version 2.01-5. However the default tarball gives me the following errors:
[root@skibum cloop-2.01]# make
( make -C advancecomp-1.9_create_compressed_fs advfs )
make[1]: Entering directory `/home/savarese/cloop-2.01/advancecomp-1.9_create_co
mpressed_fs'
g++ -DHAVE_CONFIG_H -I. -I. -I. -g -O3 -DUSE_ERROR_SILENT -DUSE_COMPRESS -c
-o advfs.o `test -f 'advfs.cc' || echo './'`advfs.cc
In file included from advfs.cc:24:
/usr/include/asm/byteorder.h:6:2: warning: #warning using private kernel header;
include <endian.h> instead!
In file included from advfs.cc:33:
/usr/include/netinet/in.h:262: error: syntax error before `)' token
/usr/include/netinet/in.h:262: error: syntax error before `?' token
/usr/include/netinet/in.h:262: error: syntax error before `)' token
/usr/include/netinet/in.h:263: error: syntax error before `)' token
/usr/include/netinet/in.h:263: error: syntax error before `?' token
/usr/include/netinet/in.h:263: error: syntax error before `)' token
/usr/include/netinet/in.h:265: error: syntax error before `)' token
/usr/include/netinet/in.h:265: error: syntax error before `?' token
/usr/include/netinet/in.h:265: error: syntax error before `)' token
/usr/include/netinet/in.h:267: error: syntax error before `)' token
/usr/include/netinet/in.h:267: error: syntax error before `?' token
/usr/include/netinet/in.h:267: error: syntax error before `)' token
In file included from advfs.cc:33:
/usr/include/netinet/in.h:387: error: syntax error before `}' token
make[1]: *** [advfs.o] Error 1
make[1]: Leaving directory `/home/savarese/cloop-2.01/advancecomp-1.9_create_com
pressed_fs'
make: *** [advancecomp-1.9_create_compressed_fs/advfs] Error 2

When I remove the byteorder include from advfs.cc and replace it with endian.h, I get this error:

[root@skibum cloop-2.01]# make
( make -C advancecomp-1.9_create_compressed_fs advfs )
make[1]: Entering directory `/home/savarese/cloop-2.01/advancecomp-1.9_create_compressed_fs'
g++ -DHAVE_CONFIG_H -I. -I. -I. -g -O3 -DUSE_ERROR_SILENT -DUSE_COMPRESS -c -o advfs.o `test -f 'advfs.cc' || echo './'`advfs.cc
advfs.cc: In function `int main(int, char**)':
advfs.cc:245: error: `__cpu_to_be64' undeclared (first use this function)
advfs.cc:245: error: (Each undeclared identifier is reported only once for each
function it appears in.)
make[1]: *** [advfs.o] Error 1
make[1]: Leaving directory `/home/savarese/cloop-2.01/advancecomp-1.9_create_compressed_fs'
make: *** [advancecomp-1.9_create_compressed_fs/advfs] Error 2

My kernel version is 2.6.8-1.521smp. Does anybody knows why this happens?
Thanks,
Scott