public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-pda/gtkpod/files: gtkpod-2.1.1-libmp4v2_so_2.patch
@ 2012-03-21  9:10 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 3+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-03-21  9:10 UTC (permalink / raw
  To: gentoo-commits

ssuominen    12/03/21 09:10:21

  Added:                gtkpod-2.1.1-libmp4v2_so_2.patch
  Log:
  Fix dlopen() for libmp4v2.so.2 from media-libs/libmp4v2 >= 1.9.1_p479.
  
  (Portage version: 2.2.0_alpha92/cvs/Linux x86_64)

Revision  Changes    Path
1.1                  app-pda/gtkpod/files/gtkpod-2.1.1-libmp4v2_so_2.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/gtkpod/files/gtkpod-2.1.1-libmp4v2_so_2.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/gtkpod/files/gtkpod-2.1.1-libmp4v2_so_2.patch?rev=1.1&content-type=text/plain

Index: gtkpod-2.1.1-libmp4v2_so_2.patch
===================================================================
Fix loading of libmp4v2.so.2 from mp4v2-1.9.1_p497

--- plugins/filetype_mp4/mp4file.c
+++ plugins/filetype_mp4/mp4file.c
@@ -317,10 +317,10 @@
 /* mp4v2 initialization code */
 
 void mp4_init() {
-    mp4v2_handle = dlopen("libmp4v2.so.1", RTLD_LAZY);
+    mp4v2_handle = dlopen("libmp4v2.so.2", RTLD_LAZY);
 
     if (!mp4v2_handle) {
-        mp4v2_handle = dlopen("libmp4v2.so.0", RTLD_LAZY);
+        mp4v2_handle = dlopen("libmp4v2.so.1", RTLD_LAZY);
 
         if (!mp4v2_handle) {
             return;






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-pda/gtkpod/files: gtkpod-2.1.1-libmp4v2_so_2.patch
@ 2012-03-21  9:31 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 3+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-03-21  9:31 UTC (permalink / raw
  To: gentoo-commits

ssuominen    12/03/21 09:31:23

  Modified:             gtkpod-2.1.1-libmp4v2_so_2.patch
  Log:
  Upstream bug# to patch
  
  (Portage version: 2.2.0_alpha92/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)

Revision  Changes    Path
1.2                  app-pda/gtkpod/files/gtkpod-2.1.1-libmp4v2_so_2.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/gtkpod/files/gtkpod-2.1.1-libmp4v2_so_2.patch?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/gtkpod/files/gtkpod-2.1.1-libmp4v2_so_2.patch?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/gtkpod/files/gtkpod-2.1.1-libmp4v2_so_2.patch?r1=1.1&r2=1.2

Index: gtkpod-2.1.1-libmp4v2_so_2.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/gtkpod/files/gtkpod-2.1.1-libmp4v2_so_2.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gtkpod-2.1.1-libmp4v2_so_2.patch	21 Mar 2012 09:10:21 -0000	1.1
+++ gtkpod-2.1.1-libmp4v2_so_2.patch	21 Mar 2012 09:31:23 -0000	1.2
@@ -1,4 +1,5 @@
-Fix loading of libmp4v2.so.2 from mp4v2-1.9.1_p497
+Fix loading of libmp4v2.so.2 from mp4v2-1.9.1_p497.
+See, http://gtkpod.org/bugs/index.php?do=details&task_id=93
 
 --- plugins/filetype_mp4/mp4file.c
 +++ plugins/filetype_mp4/mp4file.c






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-pda/gtkpod/files: gtkpod-2.1.1-libmp4v2_so_2.patch
@ 2012-05-09 18:50 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 3+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-05-09 18:50 UTC (permalink / raw
  To: gentoo-commits

ssuominen    12/05/09 18:50:26

  Removed:              gtkpod-2.1.1-libmp4v2_so_2.patch
  Log:
  old
  
  (Portage version: 2.2.0_alpha101/cvs/Linux x86_64)



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-05-09 18:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-09 18:50 [gentoo-commits] gentoo-x86 commit in app-pda/gtkpod/files: gtkpod-2.1.1-libmp4v2_so_2.patch Samuli Suominen (ssuominen)
  -- strict thread matches above, loose matches on Subject: below --
2012-03-21  9:31 Samuli Suominen (ssuominen)
2012-03-21  9:10 Samuli Suominen (ssuominen)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox