~ubuntu-branches/ubuntu/maverick/vlc/maverick

« back to all changes in this revision

Viewing changes to extras/contrib/src/Patches/vorbis.patch.cvs

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2008-09-17 21:56:14 UTC
  • mfrom: (1.1.17 upstream)
  • Revision ID: james.westby@ubuntu.com-20080917215614-tj0vx8xzd57e52t8
Tags: 0.9.2-1ubuntu1
* New Upstream Release, exception granted by
    - dktrkranz, norsetto, Hobbsee (via irc). LP: #270404

Changes done in ubuntu:

* add libxul-dev to build-depends
* make sure that vlc is build against libxul in configure. This doesn't
  change anything in the package, but makes it more robust if building
  in an 'unclean' chroot or when modifying the package.
* debian/control: make Vcs-* fields point to the motumedia branch
* add libx264-dev and libass-dev to build-depends
  LP: #210354, #199870
* actually enable libass support by passing --enable-libass to configure
* enable libdca: add libdca-dev to build depends and --enable-libdca
* install the x264 plugin.

Changes already in the pkg-multimedia branch in debian:

* don't install usr/share/vlc/mozilla in debian/mozilla-plugin-vlc.install  
* new upstream .desktop file now registers flash video mimetype LP: #261567
* add Xb-Npp-Applications to mozilla-plugin-vlc
* remove duplicate entries in debian/vlc-nox.install

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
diff -Naur vorbis.old/Makefile vorbis/Makefile
2
 
--- vorbis.old/Makefile Sun Nov  2 15:05:33 2003
3
 
+++ vorbis/Makefile     Sun Nov  2 16:50:28 2003
4
 
@@ -104,7 +104,7 @@
5
 
 
6
 
 AUTOMAKE_OPTIONS = foreign dist-zip
7
 
 
8
 
-SUBDIRS = lib include doc examples win32 debian vq
9
 
+SUBDIRS = lib include doc
10
 
 
11
 
 m4datadir = $(datadir)/aclocal
12
 
 m4data_DATA = vorbis.m4
13
 
diff -Naur vorbis.old/Makefile.am vorbis/Makefile.am
14
 
--- vorbis.old/Makefile.am      Thu Sep 11 22:42:26 2003
15
 
+++ vorbis/Makefile.am  Sun Nov  2 16:50:56 2003
16
 
@@ -2,7 +2,8 @@
17
 
 
18
 
 AUTOMAKE_OPTIONS = foreign dist-zip
19
 
 
20
 
-SUBDIRS = lib include doc examples win32 debian vq
21
 
+#SUBDIRS = lib include doc examples win32 debian vq
22
 
+SUBDIRS = lib include doc
23
 
 
24
 
 m4datadir = $(datadir)/aclocal
25
 
 m4data_DATA = vorbis.m4
26
 
diff -Naur vorbis.old/Makefile.in vorbis/Makefile.in
27
 
--- vorbis.old/Makefile.in      Sun Nov  2 02:33:58 2003
28
 
+++ vorbis/Makefile.in  Sun Nov  2 16:51:07 2003
29
 
@@ -104,7 +104,8 @@
30
 
 
31
 
 AUTOMAKE_OPTIONS = foreign dist-zip
32
 
 
33
 
-SUBDIRS = lib include doc examples win32 debian vq
34
 
+#SUBDIRS = lib include doc examples win32 debian vq
35
 
+SUBDIRS = lib include doc
36
 
 
37
 
 m4datadir = $(datadir)/aclocal
38
 
 m4data_DATA = vorbis.m4
39
 
diff -Naur vorbis.old/lib/Makefile vorbis/lib/Makefile
40
 
--- vorbis.old/lib/Makefile     Sun Nov  2 15:05:33 2003
41
 
+++ vorbis/lib/Makefile Sun Nov  2 16:48:57 2003
42
 
@@ -123,12 +123,12 @@
43
 
 libvorbis_la_LDFLAGS = -no-undefined -version-info 3:0:3
44
 
 
45
 
 libvorbisfile_la_SOURCES = vorbisfile.c
46
 
-libvorbisfile_la_LDFLAGS = -no-undefined -version-info 4:0:1
47
 
-libvorbisfile_la_LIBADD = libvorbis.la
48
 
+libvorbisfile_la_LDFLAGS = -version-info 4:0:1
49
 
+libvorbisfile_la_LIBADD = -lvorbis
50
 
 
51
 
 libvorbisenc_la_SOURCES = vorbisenc.c 
52
 
-libvorbisenc_la_LDFLAGS = -no-undefined -version-info 2:0:0
53
 
-libvorbisenc_la_LIBADD = libvorbis.la
54
 
+libvorbisenc_la_LDFLAGS = -version-info 2:0:0
55
 
+libvorbisenc_la_LIBADD = -lvorbis
56
 
 
57
 
 EXTRA_PROGRAMS = barkmel tone psytune
58
 
 CLEANFILES = $(EXTRA_PROGRAMS)
59
 
@@ -151,10 +151,10 @@
60
 
        floor1.lo floor0.lo res0.lo mapping0.lo registry.lo codebook.lo \
61
 
        sharedbook.lo lookup.lo bitrate.lo
62
 
 libvorbis_la_OBJECTS = $(am_libvorbis_la_OBJECTS)
63
 
-libvorbisenc_la_DEPENDENCIES = libvorbis.la
64
 
+libvorbisenc_la_DEPENDENCIES =
65
 
 am_libvorbisenc_la_OBJECTS = vorbisenc.lo
66
 
 libvorbisenc_la_OBJECTS = $(am_libvorbisenc_la_OBJECTS)
67
 
-libvorbisfile_la_DEPENDENCIES = libvorbis.la
68
 
+libvorbisfile_la_DEPENDENCIES =
69
 
 am_libvorbisfile_la_OBJECTS = vorbisfile.lo
70
 
 libvorbisfile_la_OBJECTS = $(am_libvorbisfile_la_OBJECTS)
71
 
 EXTRA_PROGRAMS = barkmel$(EXEEXT) tone$(EXEEXT) psytune$(EXEEXT)
72
 
diff -Naur vorbis.old/lib/Makefile.am vorbis/lib/Makefile.am
73
 
--- vorbis.old/lib/Makefile.am  Sat Jan 18 22:02:20 2003
74
 
+++ vorbis/lib/Makefile.am      Sun Nov  2 16:38:53 2003
75
 
@@ -20,12 +20,12 @@
76
 
 libvorbis_la_LDFLAGS = -no-undefined -version-info @V_LIB_CURRENT@:@V_LIB_REVISION@:@V_LIB_AGE@
77
 
 
78
 
 libvorbisfile_la_SOURCES = vorbisfile.c
79
 
-libvorbisfile_la_LDFLAGS = -no-undefined -version-info @VF_LIB_CURRENT@:@VF_LIB_REVISION@:@VF_LIB_AGE@
80
 
-libvorbisfile_la_LIBADD = libvorbis.la
81
 
+libvorbisfile_la_LDFLAGS = -version-info @VF_LIB_CURRENT@:@VF_LIB_REVISION@:@VF_LIB_AGE@
82
 
+libvorbisfile_la_LIBADD = -lvorbis
83
 
 
84
 
 libvorbisenc_la_SOURCES = vorbisenc.c 
85
 
-libvorbisenc_la_LDFLAGS = -no-undefined -version-info @VE_LIB_CURRENT@:@VE_LIB_REVISION@:@VE_LIB_AGE@
86
 
-libvorbisenc_la_LIBADD = libvorbis.la
87
 
+libvorbisenc_la_LDFLAGS = -version-info @VE_LIB_CURRENT@:@VE_LIB_REVISION@:@VE_LIB_AGE@
88
 
+libvorbisenc_la_LIBADD = -lvorbis
89
 
 
90
 
 EXTRA_PROGRAMS = barkmel tone psytune
91
 
 CLEANFILES = $(EXTRA_PROGRAMS)
92
 
diff -Naur vorbis.old/lib/Makefile.in vorbis/lib/Makefile.in
93
 
--- vorbis.old/lib/Makefile.in  Sun Nov  2 02:34:00 2003
94
 
+++ vorbis/lib/Makefile.in      Sun Nov  2 16:51:10 2003
95
 
@@ -123,12 +123,12 @@
96
 
 libvorbis_la_LDFLAGS = -no-undefined -version-info @V_LIB_CURRENT@:@V_LIB_REVISION@:@V_LIB_AGE@
97
 
 
98
 
 libvorbisfile_la_SOURCES = vorbisfile.c
99
 
-libvorbisfile_la_LDFLAGS = -no-undefined -version-info @VF_LIB_CURRENT@:@VF_LIB_REVISION@:@VF_LIB_AGE@
100
 
-libvorbisfile_la_LIBADD = libvorbis.la
101
 
+libvorbisfile_la_LDFLAGS = -version-info @VF_LIB_CURRENT@:@VF_LIB_REVISION@:@VF_LIB_AGE@
102
 
+libvorbisfile_la_LIBADD = -lvorbis
103
 
 
104
 
 libvorbisenc_la_SOURCES = vorbisenc.c 
105
 
-libvorbisenc_la_LDFLAGS = -no-undefined -version-info @VE_LIB_CURRENT@:@VE_LIB_REVISION@:@VE_LIB_AGE@
106
 
-libvorbisenc_la_LIBADD = libvorbis.la
107
 
+libvorbisenc_la_LDFLAGS = -version-info @VE_LIB_CURRENT@:@VE_LIB_REVISION@:@VE_LIB_AGE@
108
 
+libvorbisenc_la_LIBADD = -lvorbis
109
 
 
110
 
 EXTRA_PROGRAMS = barkmel tone psytune
111
 
 CLEANFILES = $(EXTRA_PROGRAMS)
112
 
@@ -151,10 +151,10 @@
113
 
        floor1.lo floor0.lo res0.lo mapping0.lo registry.lo codebook.lo \
114
 
        sharedbook.lo lookup.lo bitrate.lo
115
 
 libvorbis_la_OBJECTS = $(am_libvorbis_la_OBJECTS)
116
 
-libvorbisenc_la_DEPENDENCIES = libvorbis.la
117
 
+libvorbisenc_la_DEPENDENCIES =
118
 
 am_libvorbisenc_la_OBJECTS = vorbisenc.lo
119
 
 libvorbisenc_la_OBJECTS = $(am_libvorbisenc_la_OBJECTS)
120
 
-libvorbisfile_la_DEPENDENCIES = libvorbis.la
121
 
+libvorbisfile_la_DEPENDENCIES =
122
 
 am_libvorbisfile_la_OBJECTS = vorbisfile.lo
123
 
 libvorbisfile_la_OBJECTS = $(am_libvorbisfile_la_OBJECTS)
124
 
 EXTRA_PROGRAMS = barkmel$(EXEEXT) tone$(EXEEXT) psytune$(EXEEXT)