A user reported to me that building rarian on OS X failed: rarian-sk-get-cl.cpp:165: error: 'uint' was not declared in this scope but that replacing "uint" with "unsigned int" solved it. OS X does have the uint type, so that .c is just missing whatever #include declares it (it's probably part of the existing #include spaghetti on other platforms). I'm pretty sure it's <sys/types.h>.
Conversely, could use a more "modern" datatype. "unsigned int" or "long int" perhaps? Based on the .cpp source, looks like it should be matched to whatever the st_mtime element of struct stat, which might be a time_t?
Fixed in 0.6.0. Not committed to SVN due to bug #12247. Marking this as a dependance to remind me to commit when done.
Committed. Closing.
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.