freebsd-ports/sysutils/k3b/files/patch-src-rip-k3bdvdrippingprocess.cpp
Tilman Keskinoz d4fe0e7316 - Fix detection of TEAC R56S
PR:		71010
Reported by:	Reinhard Lenninger
Submitted by:	maintainer

- Upgrade to 0.11.14

PR:		71113
Submitted by:	maintainer
2004-09-02 15:26:02 +00:00

16 lines
670 B
C++

--- src/rip/k3bdvdrippingprocess.cpp.orig Wed Jun 2 11:31:41 2004
+++ src/rip/k3bdvdrippingprocess.cpp Sun Aug 22 15:28:36 2004
@@ -285,10 +285,13 @@
void K3bDvdRippingProcess::slotPreProcessingDvd() {
QString video;
QDir video_ts( m_mountPoint + "/VIDEO_TS");
+#ifndef FreeBSD
+// on FreeBSD both /VIDEO_TS and /video_ts exist on dvd devices ?!?
if( video_ts.exists() ) {
m_udfMount = true;
kdDebug() << "(K3bDvdRippingProcess) <" << m_mountPoint << "> has UDF filesystem." << endl;
}
+#endif
video_ts.setPath( m_mountPoint + "/video_ts");
if( !video_ts.exists() && !m_udfMount){
m_preProcessingFailed = true;