Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 204007 | Differences between
and this patch

Collapse All | Expand All

(-)work.orig/libdlna-0.2.3/configure (-2 / +2 lines)
Lines 610-618 Link Here
610
fi
610
fi
611
611
612
echolog "Checking for libavformat ..."
612
echolog "Checking for libavformat ..."
613
check_lib ffmpeg/avformat.h av_register_all -lavformat || die "Error, can't find libavformat !"
613
check_lib libavformat/avformat.h av_register_all -lavformat || die "Error, can't find libavformat !"
614
echolog "Checking for libavcodec ..."
614
echolog "Checking for libavcodec ..."
615
check_lib ffmpeg/avcodec.h avcodec_register_all -lavcodec || die "Error, can't find libavcodec !"
615
check_lib libavcodec/avcodec.h avcodec_register_all -lavcodec || die "Error, can't find libavcodec !"
616
616
617
#################################################
617
#################################################
618
#   version
618
#   version
(-)work.orig/libdlna-0.2.3/src/av_mpeg4_part10.c (-1 / +1 lines)
Lines 26-32 Link Here
26
#include <sys/stat.h>
26
#include <sys/stat.h>
27
#include <fcntl.h>
27
#include <fcntl.h>
28
28
29
#include <ffmpeg/avcodec.h>
29
#include <libavcodec/avcodec.h>
30
30
31
#include "dlna_internals.h"
31
#include "dlna_internals.h"
32
#include "profiles.h"
32
#include "profiles.h"
(-)work.orig/libdlna-0.2.3/src/av_mpeg4_part2.c (-1 / +1 lines)
Lines 26-32 Link Here
26
#include <sys/stat.h>
26
#include <sys/stat.h>
27
#include <fcntl.h>
27
#include <fcntl.h>
28
28
29
#include <ffmpeg/avcodec.h>
29
#include <libavcodec/avcodec.h>
30
30
31
#include "dlna_internals.h"
31
#include "dlna_internals.h"
32
#include "profiles.h"
32
#include "profiles.h"
(-)work.orig/libdlna-0.2.3/src/containers.c (-1 / +1 lines)
Lines 4-10 Link Here
4
#include <sys/stat.h>
4
#include <sys/stat.h>
5
#include <fcntl.h>
5
#include <fcntl.h>
6
6
7
#include <ffmpeg/avformat.h>
7
#include <libavformat/avformat.h>
8
8
9
#include "containers.h"
9
#include "containers.h"
10
#include "profiles.h"
10
#include "profiles.h"
(-)work.orig/libdlna-0.2.3/src/profiles.h (-2 / +2 lines)
Lines 22-29 Link Here
22
#ifndef _PROFILES_H_
22
#ifndef _PROFILES_H_
23
#define _PROFILES_H_
23
#define _PROFILES_H_
24
24
25
#include <ffmpeg/avcodec.h>
25
#include <libavcodec/avcodec.h>
26
#include <ffmpeg/avformat.h>
26
#include <libavformat/avformat.h>
27
27
28
#include "dlna_internals.h"
28
#include "dlna_internals.h"
29
#include "containers.h"
29
#include "containers.h"

Return to bug 204007