[SCM] rem/master: Add patch to fix bug #817041

vasudev-guest at users.alioth.debian.org vasudev-guest at users.alioth.debian.org
Sat Mar 12 05:50:21 UTC 2016


The following commit has been merged in the master branch:
commit 2c10682f3b7166ad68d17d5dcaa42c606acd887b
Author: Vasudev Kamath <kamathvasudev at gmail.com>
Date:   Sat Mar 12 10:16:17 2016 +0530

    Add patch to fix bug #817041

diff --git a/debian/patches/1001_fix_libre_linking.patch b/debian/patches/1001_fix_libre_linking.patch
new file mode 100644
index 0000000..1bea0d3
--- /dev/null
+++ b/debian/patches/1001_fix_libre_linking.patch
@@ -0,0 +1,22 @@
+Description: Move -lre to last on linking line
+ libre was not linked to librem but moving it to
+ end of link line  seems to fix the issue.
+ .
+ This was making application using librem fail as
+ symbols related to libre were marked as missing
+ by linker.
+Author: Vasudev Kamath <vasudev at copyninja.info>
+Bug-Debian: https://bugs.debian.org/817041
+Last-Updated: 2016-03-12
+
+--- a/Makefile
++++ b/Makefile
+@@ -81,7 +81,7 @@
+ 
+ 
+ $(SHARED): $(OBJS)
+-	$(LD) $(LFLAGS) $(SH_LFLAGS) $^ -L$(LIBRE_SO) -lre $(LIBS) -o $@
++	$(LD) $(LFLAGS) $(SH_LFLAGS) $^ -L$(LIBRE_SO) $(LIBS) -lre -o $@
+ 
+ 
+ $(STATIC): $(OBJS)
diff --git a/debian/patches/series b/debian/patches/series
index 7c045ce..9e79c7f 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1,2 @@
 2001_unhide_build_rules.patch
+1001_fix_libre_linking.patch

-- 
rem packaging



More information about the pkg-multimedia-commits mailing list