~ubuntu-branches/ubuntu/karmic/aqualung/karmic

« back to all changes in this revision

Viewing changes to debian/patches/001-Fix_ffmpeg_headers.dpatch

  • Committer: Bazaar Package Importer
  • Author(s): Lionel Le Folgoc
  • Date: 2008-12-28 12:45:22 UTC
  • Revision ID: james.westby@ubuntu.com-20081228124522-1kc3x2z5y0ydq970
Tags: 0.9~beta9.1-1ubuntu1
* debian/patches:
  - 001-Fix_ffmpeg_headers.dpatch: correct ffmpeg headers
    location to fix FTBFS with recent ffmpeg snapshots (LP: #311002)
  - 00list: enable this patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh /usr/share/dpatch/dpatch-run
 
2
## 001-Fix_ffmpeg_headers.dpatch by Lionel Le Folgoc <mrpouit@ubuntu.com>
 
3
##
 
4
## All lines beginning with `## DP:' are a description of the patch.
 
5
## DP: Fix build against recent ffmpeg snapshots.
 
6
 
 
7
@DPATCH@
 
8
diff -urNad aqualung-0.9~beta9.1~/src/decoder/dec_lavc.h aqualung-0.9~beta9.1/src/decoder/dec_lavc.h
 
9
--- aqualung-0.9~beta9.1~/src/decoder/dec_lavc.h        2007-04-21 09:57:14.000000000 +0200
 
10
+++ aqualung-0.9~beta9.1/src/decoder/dec_lavc.h 2008-12-28 12:41:26.000000000 +0100
 
11
@@ -23,8 +23,8 @@
 
12
 #define _DEC_LAVC_H
 
13
 
 
14
 #ifdef HAVE_LAVC
 
15
-#include <ffmpeg/avcodec.h>
 
16
-#include <ffmpeg/avformat.h>
 
17
+#include <libavcodec/avcodec.h>
 
18
+#include <libavformat/avformat.h>
 
19
 #endif /* HAVE_LAVC */
 
20
 
 
21
 #include "file_decoder.h"