The vr-util.h has a preprocessor definition for vr_strcasecmp that selects the correct case-insensitive string comparison function for the current operating system.
However, vr-util.c contains uses of strcasecmp instead of vr_strcasecmp, which causes compilation to fail on Windows.
The
vr-util.h
has a preprocessor definition forvr_strcasecmp
that selects the correct case-insensitive string comparison function for the current operating system. However,vr-util.c
contains uses ofstrcasecmp
instead ofvr_strcasecmp
, which causes compilation to fail on Windows.