[Bug 154718] kdemultimedia doesn't build on NetBSD
Mark Davies
mark at mcs.vuw.ac.nz
Thu Jan 3 10:36:59 GMT 2008
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=154718
------- Additional Comments From mark mcs vuw ac nz 2008-01-03 11:36 -------
I agree the define should not be HAVE_SYS_STATVFS_H but rather HAVE_STATVFS (drop the SYS as well). The original dated from an old intention to integrate this with the then kde3 build infrastructure that never happened.
I don't have an svn account so someone else will have to commit it.
I don't have a preference for whether to do it as per my patch or Michael's suggested alternative.
Note that the minimal patch would be just adding:
#ifdef __NetBSD__
# include <sys/param.h>
# if __NetBSD_Version__ >= 299000900 /* 2.99.9 */
# define statfs statvfs
# define fstatfs fstatvfs
# endif
#endif
More information about the kde-multimedia
mailing list