FreeBSD. The official GNOME 2.22 release notes can be found at http://library.gnome.org/misc/release-notes/2.22/ . On the FreeBSD front, this release features an updated hal port with support for video4linux devices, DRM (Direct Rendering), and better support of removable media. Work is also underway to tie webkit more closely into GNOME. As part of the GNOME 2.22 upgrade, GStreamer received a rather large upgrade as well. Be sure to consult UPDATING on the proper steps to upgrade all of your GNOME ports. This release would not have been possible without the contributions and testing efforts of the following people: Pawel Worach kan edwin Peter Ulrich Kruppa J. W. Ballantine Yasuda Keisuke Andriy Gapon
20 lines
791 B
C++
20 lines
791 B
C++
--- browser-plugin/totemPluginGlue.cpp.orig 2008-03-15 18:00:23.000000000 -0500
|
|
+++ browser-plugin/totemPluginGlue.cpp 2008-03-15 18:01:54.000000000 -0500
|
|
@@ -356,7 +356,7 @@
|
|
user_ini_file = g_build_filename (g_get_user_config_dir (),
|
|
"totem",
|
|
"browser-plugins.ini",
|
|
- NULL);
|
|
+ (char *)NULL);
|
|
if (g_key_file_load_from_file (user,
|
|
user_ini_file,
|
|
G_KEY_FILE_NONE,
|
|
@@ -439,7 +439,7 @@
|
|
/* we want to open libdbus-glib-1.so.2 in such a way
|
|
* in such a way that it becomes permanentely resident */
|
|
void *handle;
|
|
- handle = dlopen ("libdbus-glib-1.so.2", RTLD_NOW | RTLD_NODELETE);
|
|
+ handle = dlopen ("libdbus-glib-1.so.2", RTLD_NOW);
|
|
if (!handle) {
|
|
fprintf (stderr, "%s\n", dlerror());
|
|
return NPERR_MODULE_LOAD_FAILED_ERROR;
|