Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 52819
Collapse All | Expand All

(-)mythtv-0.15.1.orig/libs/libmythtv/fifowriter.cpp (-3 / +3 lines)
Lines 21-29 Link Here
21
    maxblksize = new long[count];
21
    maxblksize = new long[count];
22
    killwr = new int[count];
22
    killwr = new int[count];
23
    fbcount = new int[count];
23
    fbcount = new int[count];
24
    fifo_buf = new (struct fifo_buf *)[count];
24
    fifo_buf = new fifo_ptr[count];
25
    fb_inptr = new (struct fifo_buf *)[count];
25
    fb_inptr = new fifo_ptr[count];
26
    fb_outptr = new (struct fifo_buf *)[count];
26
    fb_outptr = new fifo_ptr[count];
27
    fifothrds = new pthread_t[count];
27
    fifothrds = new pthread_t[count];
28
    fifo_lock = new pthread_mutex_t [count];
28
    fifo_lock = new pthread_mutex_t [count];
29
    empty_cond = new pthread_cond_t[count];
29
    empty_cond = new pthread_cond_t[count];
(-)mythtv-0.15.1.orig/libs/libmythtv/fifowriter.h (+1 lines)
Lines 29-34 Link Here
29
        long blksize;
29
        long blksize;
30
     } **fifo_buf, **fb_inptr, **fb_outptr;
30
     } **fifo_buf, **fb_inptr, **fb_outptr;
31
31
32
     typedef struct fifo_buf* fifo_ptr;
32
     pthread_t *fifothrds;
33
     pthread_t *fifothrds;
33
     pthread_mutex_t *fifo_lock;
34
     pthread_mutex_t *fifo_lock;
34
     pthread_cond_t *full_cond, *empty_cond;
35
     pthread_cond_t *full_cond, *empty_cond;
(-)mythtv-0.15.1.orig/settings.pro (-1 / +1 lines)
Lines 14-20 Link Here
14
14
15
release {
15
release {
16
        DEFINES += MMX
16
        DEFINES += MMX
17
        QMAKE_CXXFLAGS_RELEASE = -O3 -march=pentiumpro -fomit-frame-pointer
17
        QMAKE_CXXFLAGS_RELEASE = -O3 -march=pentiumpro -fomit-frame-pointer -fpermissive
18
        QMAKE_CFLAGS_RELEASE = $${QMAKE_CXXFLAGS_RELEASE}
18
        QMAKE_CFLAGS_RELEASE = $${QMAKE_CXXFLAGS_RELEASE}
19
}
19
}
20
20

Return to bug 52819