By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 346
Collapse All | Expand All

(-)amarok/amarok/configure.in.in (-1 / +1 lines)
Lines 995-1001 Link Here
995
    ac_cppflags_save=$CPPFLAGS
995
    ac_cppflags_save=$CPPFLAGS
996
    CPPFLAGS="$CPPFLAGS -I."
996
    CPPFLAGS="$CPPFLAGS -I."
997
    AC_CHECK_HEADERS(systems.h)
997
    AC_CHECK_HEADERS(systems.h)
998
    AC_CHECK_HEADERS([mp4.h], [have_mp4_h=yes], [],
998
    AC_CHECK_HEADERS([mp4v2/mp4v2.h], [have_mp4_h=yes], [],
999
        [#ifdef HAVE_SYSTEMS_H
999
        [#ifdef HAVE_SYSTEMS_H
1000
         # include <systems.h>
1000
         # include <systems.h>
1001
         #endif
1001
         #endif
(-)amarok/amarok/src/metadata/mp4/mp4properties.h (-1 / +1 lines)
Lines 24-30 Link Here
24
24
25
#include <audioproperties.h>
25
#include <audioproperties.h>
26
#include <tstring.h>
26
#include <tstring.h>
27
#include <mp4.h>
27
#include <mp4v2/mp4v2.h>
28
// mp4.h drags in mp4_config.h that defines these
28
// mp4.h drags in mp4_config.h that defines these
29
// get rid of them so they don't conflict with our config.h
29
// get rid of them so they don't conflict with our config.h
30
#undef VERSION
30
#undef VERSION
(-)amarok/amarok/src/metadata/mp4/mp4tag.h (-1 / +1 lines)
Lines 23-29 Link Here
23
23
24
#include <tag.h>
24
#include <tag.h>
25
#include "mp4file.h"
25
#include "mp4file.h"
26
#include <mp4.h>
26
#include <mp4v2/mp4v2.h>
27
27
28
namespace TagLib {
28
namespace TagLib {
29
29
(-)amarok/amarok/src/metadata/mp4/mp4file.cpp (+2 lines)
Lines 31-36 Link Here
31
31
32
#include <stdint.h>
32
#include <stdint.h>
33
#include <cstdlib>
33
#include <cstdlib>
34
#include <stdlib.h>
35
#include <sys/types.h>
34
36
35
#define MP4V2_HAS_WRITE_BUG 1
37
#define MP4V2_HAS_WRITE_BUG 1
36
38
(-)amarok/amarok/src/metadata/mp4/mp4properties.cpp (+1 lines)
Lines 31-36 Link Here
31
31
32
#include <stdint.h>
32
#include <stdint.h>
33
#include <cstring>
33
#include <cstring>
34
#include <sys/types.h>
34
35
35
#ifndef UINT64_TO_DOUBLE
36
#ifndef UINT64_TO_DOUBLE
36
#define UINT64_TO_DOUBLE(a) ((double)((int64_t)(a)))
37
#define UINT64_TO_DOUBLE(a) ((double)((int64_t)(a)))
(-)amarok/amarok/src/metadata/mp4/mp4tag.cpp (+2 lines)
Lines 26-31 Link Here
26
#include <stdint.h>
26
#include <stdint.h>
27
#include <cstdlib>
27
#include <cstdlib>
28
#include <cstring>
28
#include <cstring>
29
#include <stdlib.h>
30
#include <sys/types.h>
29
31
30
using namespace TagLib;
32
using namespace TagLib;
31
33

Return to bug 346