Gentoo Archives: gentoo-commits

From: "Saleem Abdulrasool (compnerd)" <compnerd@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/totem/files: totem-2.20.1-browser-plugins.patch
Date: Tue, 30 Oct 2007 06:20:09
Message-Id: E1ImkSI-00030c-Bf@stork.gentoo.org
1 compnerd 07/10/30 06:20:02
2
3 Added: totem-2.20.1-browser-plugins.patch
4 Log:
5 add a hack to fix firefox runtime
6 (Portage version: 2.1.3.12)
7
8 Revision Changes Path
9 1.1 media-video/totem/files/totem-2.20.1-browser-plugins.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/totem/files/totem-2.20.1-browser-plugins.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/totem/files/totem-2.20.1-browser-plugins.patch?rev=1.1&content-type=text/plain
13
14 Index: totem-2.20.1-browser-plugins.patch
15 ===================================================================
16 Index: browser-plugin/Makefile.am
17 ===================================================================
18 --- browser-plugin/Makefile.am (revision 4827)
19 +++ browser-plugin/Makefile.am (working copy)
20 @@ -109,6 +109,7 @@
21 $(WARN_CFLAGS) \
22 $(DBUS_CFLAGS) \
23 $(NVTV_CFLAGS) \
24 + $(SN_CFLAGS) \
25 $(AM_CFLAGS)
26
27 totem_plugin_viewer_LDADD = \
28 @@ -122,6 +123,7 @@
29 $(DBUS_LIBS) \
30 $(NVTV_LIBS) \
31 $(XTEST_LIBS) \
32 + $(SN_LIBS) \
33 $(X_LIBS)
34
35 BUILT_SOURCES += \
36 Index: configure.in
37 ===================================================================
38 --- configure.in (revision 4827)
39 +++ configure.in (working copy)
40 @@ -585,6 +585,7 @@
41 if test "$have_libxpcomglue_s" = "yes"; then
42 LIBXPCOMGLUE_S="-L$MOZILLA_LIBDIR -lxpcomglue_s"
43 else
44 + LIBXPCOMGLUE_S="-L$MOZILLA_LIBDIR -lxpcom"
45 AC_MSG_WARN([libxpcomglue_s not available; plugins may not be portable])
46 fi
47 fi
48 @@ -685,6 +686,18 @@
49 AM_CONDITIONAL([ENABLE_MULLY_PLUGIN],[test "$enable_mully_plugin" = "yes"])
50 AM_CONDITIONAL([ENABLE_CONE_PLUGIN],[test "$enable_cone_plugin" = "yes"])
51
52 +if test "$enable_basic_plugin" = "yes" ||
53 + test "$enable_gmp_plugin" = "yes" ||
54 + test "$enable_complex_plugin" = "yes" ||
55 + test "$enable_narrowspace_plugin" = "yes" ||
56 + test "$enable_mully_plugin" = "yes" ||
57 + test "$enable_cone_plugin" = "yes" ; then
58 +
59 + PKG_CHECK_MODULES([SN], [ libstartup-notification-1.0 >= 0.8 ])
60 + AC_SUBST([SN_CFLAGS])
61 + AC_SUBST([SN_LIBS])
62 +fi
63 +
64 dnl ********
65 dnl Nautilus
66 dnl ********
67
68
69
70 --
71 gentoo-commits@g.o mailing list