Hello Mark!
> I haven't been able to figure out how to subscribe to this mailing list,
> hope this gets through, please reply privately since I'm not on the
> list.
Should I try to subscribe you?
> configure: No compatible valgrind version.
You can ignore this.
> configure: error: in `/usr/local/src/fsvs-1.2.0':
> configure: error: You have a sparse S_IFMT. Please tell the dev@ mailing
> list.
Could you please take a look into config.log what the exact error message is?
Maybe stat.h cannot be found for some reason, I've had that once.
> And from a previous message you might like:
> egrep -r "#define[[:space:]]+S_IFMT" /usr/include
>
> /usr/include/sys/stat.h:#define S_IFMT 0xF000 /* type of file
> */
Thank you.
Please save the attached program in /usr/local/src/fsvs-1.2.0, compile and run
it, and
send me the output.
Regards,
Phil
--
Versioning your /etc, /home or even your whole installation?
Try fsvs (fsvs.tigris.org)!
------------------------------------------------------
http://fsvs.tigris.org/ds/viewMessage.do?dsForumId=3923&dsMessageId=2374302
To unsubscribe from this discussion, e-mail: [[email protected]].#include <stdio.h>
#include "src/preproc.h"
int main(void)
{
printf("S_IFMT=%X\n", S_IFMT);
printf("MODE_T_SHIFT_BITS=%d\n", MODE_T_SHIFT_BITS);
printf("PACKED_MODE_T_NEEDED_BITS=%d\n", PACKED_MODE_T_NEEDED_BITS);
printf("calc=%X %X\n",S_IFMT >> MODE_T_SHIFT_BITS,
_BITCOUNT( (S_IFMT >> MODE_T_SHIFT_BITS) + 1));
return 0;
}