diff options
author | enselic <enselic@f606c939-3180-4ac9-a4b8-4b8779d57d0a> | 2009-03-12 07:09:01 +0000 |
---|---|---|
committer | enselic <enselic@f606c939-3180-4ac9-a4b8-4b8779d57d0a> | 2009-03-12 07:09:01 +0000 |
commit | 7395087031dc7ee82cb8b5c1ad2acbe455ba21f7 (patch) | |
tree | d9169d916820e0173551adf4f70451ac544a2676 /recordmydesktop/src/rmd_capture_sound.c | |
parent | af375c3728b69319d41bd2e1260aff51d6fcb3f4 (diff) |
Applied patch from Kevin Lo that fixes compilation on FreeBSD by
addressing include and format string issues.
git-svn-id: https://recordmydesktop.svn.sourceforge.net/svnroot/recordmydesktop/trunk@599 f606c939-3180-4ac9-a4b8-4b8779d57d0a
Diffstat (limited to 'recordmydesktop/src/rmd_capture_sound.c')
-rw-r--r-- | recordmydesktop/src/rmd_capture_sound.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/recordmydesktop/src/rmd_capture_sound.c b/recordmydesktop/src/rmd_capture_sound.c index 8057311..e4498c0 100644 --- a/recordmydesktop/src/rmd_capture_sound.c +++ b/recordmydesktop/src/rmd_capture_sound.c @@ -34,6 +34,10 @@ #include <pthread.h> #include <string.h> #include <errno.h> +#include <sys/types.h> +#include <sys/uio.h> +#include <unistd.h> +#include <stdlib.h> void *rmdCaptureSound(ProgData *pdata){ |