~ubuntu-branches/ubuntu/saucy/libdvdread/saucy

« back to all changes in this revision

Viewing changes to debian/patches/debian-changes-4.2.0-1ubuntu1

  • Committer: Package Import Robot
  • Author(s): Bryce Harrington
  • Date: 2011-12-07 18:34:56 UTC
  • Revision ID: package-import@ubuntu.com-20111207183456-96hkz4o43c8xr2a1
Tags: 4.2.0-1ubuntu2
* Remove extraneous debian-changes-4.2.0-1ubuntu1 being automatically
  generated by the packaging which reverts the Ubuntu changes.
  (LP: #869003)
* Disable hurd.patch; causes FTBFS on AMD64 due to undefined
  get_current_dir_name().

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Description: Upstream changes introduced in version 4.2.0-1ubuntu1
2
 
 This patch has been created by dpkg-source during the package build.
3
 
 Here's the last changelog entry, hopefully it gives details on why
4
 
 those changes were made:
5
 
 .
6
 
 libdvdread (4.2.0-1ubuntu1) precise; urgency=low
7
 
 .
8
 
   * Merge from debian testing.  Remaining changes:
9
 
     - Re-add missing install-css.sh. Update the script with patch by Gene Cumm
10
 
       for dynamic version calculation.
11
 
     - debian/control: add Suggests for install-css.sh on wget, debhelper, etc.
12
 
     - debian/rules: install install-css.sh, leave perms executable.
13
 
     - 100-quell-vts-tmapt-warning.patch - Don't recommend sending bug
14
 
       reports when VTS_TMAPT is missing
15
 
     - 102-reorder-linkage.patch - Fix link order for shared library loading.
16
 
   * Drop 101-fix-msb-unicode.patch; fixed upstream.
17
 
 .
18
 
 The person named in the Author field signed this changelog entry.
19
 
Author: Bryce Harrington <bryce@ubuntu.com>
20
 
 
21
 
---
22
 
The information above should follow the Patch Tagging Guidelines, please
23
 
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
24
 
are templates for supplementary fields that you might want to add:
25
 
 
26
 
Origin: <vendor|upstream|other>, <url of original patch>
27
 
Bug: <url in upstream bugtracker>
28
 
Bug-Debian: http://bugs.debian.org/<bugnumber>
29
 
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
30
 
Forwarded: <no|not-needed|url proving that it has been forwarded>
31
 
Reviewed-By: <name and email of someone who approved the patch>
32
 
Last-Update: <YYYY-MM-DD>
33
 
 
34
 
--- libdvdread-4.2.0.orig/Makefile
35
 
+++ libdvdread-4.2.0/Makefile
36
 
@@ -78,7 +78,7 @@ ${DVDREAD_LIB}: version.h $(DVDREAD_OBJS
37
 
        cd $(.OBJDIR) && $(RANLIB) $@
38
 
 
39
 
 ${DVDREAD_SHLIB}: version.h $(DVDREAD_SHOBJS) $(BUILDDEPS)
40
 
-       cd $(.OBJDIR) && $(CC) $(SHLDFLAGS) $(LDFLAGS) -Wl,-soname=$(DVDREAD_SHLIB).$(SHLIB_MAJOR) -o $@ $(DVDREAD_SHOBJS) -ldl
41
 
+       cd $(.OBJDIR) && $(CC) $(SHLDFLAGS) $(LDFLAGS) -ldl -Wl,-soname=$(DVDREAD_SHLIB).$(SHLIB_MAJOR) -o $@ $(DVDREAD_SHOBJS)
42
 
 
43
 
 .c.so: $(BUILDDEPS)
44
 
        cd $(.OBJDIR) && $(CC) -fPIC -DPIC -MD $(CFLAGS) -c -o $@ $<
45
 
--- libdvdread-4.2.0.orig/src/ifo_read.c
46
 
+++ libdvdread-4.2.0/src/ifo_read.c
47
 
@@ -1434,7 +1434,7 @@ int ifoRead_VTS_TMAPT(ifo_handle_t *ifof
48
 
 
49
 
   if(ifofile->vtsi_mat->vts_tmapt == 0) { /* optional(?) */
50
 
     ifofile->vts_tmapt = NULL;
51
 
-    fprintf(stderr,"No VTS_TMAPT available - skipping.\n");
52
 
+    fprintf(stderr,"Please send bug report - no VTS_TMAPT ?? \n");
53
 
     return 1;
54
 
   }
55