View Single Post
Old 3rd June 2008
cubo cubo is offline
Real Name: Luca
Port Guard
 
Join Date: May 2008
Location: Italy - Torino
Posts: 21
Default to compile recordmydesktop

to compile recordmydesktop:

install libvorbis then unpack recordmydesktop. Run configure this way (using ksh)
env CFLAGS="-I/usr/local/include" LDFLAGS="-L/usr/local/lib -lm -logg -lvorbis -lossaudio" CPPFLAGS="-I/usr/local/include" ./configure --prefix=/usr/local --enable-oss
(otherwise if you use bash you can omit "env")

than modify both files "src/opendev.c" and "include/rmdtypes.h"
change in both files the line
#include <sys/soundcard.h>
with the line
#include <soundcard.h>

and now:
gmake
gmake install

to run recordmydesktop:
recordmydesktop -device /dev/audio (or your device)

let me know if this work....
Reply With Quote