Subject: libcdaudio error
To: None <current-users@netbsd.org>
From: Jaka Jejcic <jj@gnorw.net>
List: current-users
Date: 05/17/2004 12:33:46
Hi,

Compiling pkgsrc/audio/libcdaudio there is an error in cdaudio.c line 166:
cdaudio.c:166: error: invalid use of undefined type `struct statfs'
cdaudio.c:166: error: dereferencing pointer to incomplete type

statfs is never defined and I think it should be statvfs

All one needs to do is change line 119:
  struct statfs *mnt;
to:
  struct statvfs *mnt;

jj