Hi, I had some problems to compile dvcut 0.5.3 (0.5.1 and 0.5.2 did the same) on slackware current. After a quick investigation, it seems that if libao is not detected (libao was not detected because pkgconfig/libao.pc was missing - this is my very big fault) this cause a compiling error in dvdcut.cpp line 121 & 122 : src/dvbcut.cpp:121: error: `Play' undeclared (first use this function) as HAVE_LIB_AO is undefined.
Commenting lines 121 and 122 as below fix this problem and the program runs fine with or without libao. #ifndef HAVE_LIB_AO playAudio1Action->setEnabled(false); playAudio2Action->setEnabled(false); playAudio1Action->removeFrom(playToolbar); playAudio2Action->removeFrom(playToolbar); // playAudio1Action->removeFrom(Play); // playAudio2Action->removeFrom(Play); #endif // ! HAVE_LIB_AO Greets. -- Phil ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ DVBCUT-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/dvbcut-user
