2010-05-11 17:25:59 +02:00
|
|
|
--- birnet/birnetthreadimpl.cc.orig 2010-05-11 15:06:34.000000000 +0200
|
|
|
|
+++ birnet/birnetthreadimpl.cc 2010-05-11 15:07:34.000000000 +0200
|
|
|
|
@@ -1483,18 +1483,22 @@ fallback_thread_exit (gpointer retval)
|
|
|
|
|
|
|
|
#ifdef g_atomic_int_get
|
|
|
|
static int
|
|
|
|
-(g_atomic_int_get) (volatile int *atomic)
|
|
|
|
+birnet_g_atomic_int_get (volatile int *atomic)
|
|
|
|
{
|
|
|
|
return g_atomic_int_get (atomic);
|
|
|
|
}
|
|
|
|
+#undef g_atomic_int_get
|
|
|
|
+#define g_atomic_int_get birnet_g_atomic_int_get
|
|
|
|
#endif
|
Presenting GNOME 2.30.1 for FreeBSD. The offical release notes for this
release can be found at http://library.gnome.org/misc/release-notes/2.30/ .
This release brings initial PackageKit support, Upower (replaces power
management part of hal), cuse4bsd integration with HAL and cheese, and a
faster Evolution.
Sadly GNOME 2.30.x will be the last release with FreeBSD 6.X support. This
will also be the last of the 2.x releases. The next release will be the
highly-anticipated GNOME 3.0 which will bring with it a new UI experience.
Currently, there are a few bugs with GNOME 2.30 that may be of note for our
users. Be sure to consult the UPGRADING note or the 2.30 upgrade FAQ at
http://www.freebsd.org/gnome/docs/faq230.html for specific upgrading
instructions, and the up-to-date list of known issues.
This release features commits by avl, ahze, bland, marcus, mezz, and myself.
The FreeBSD GNOME Team would like to thank Anders F Bjorklund for doing the
initual packagekit porting.
And the following contributors & testers for there help with this release:
Eric L. Chen
Vladimir Grebenschikov
Sergio de Almeida Lenzi
DomiX
walder
crsd
Kevin Oberman
Michal Varga
Pavel Plesov
Bapt
kevin
and ITetcu for two exp-run
PR: ports/143852
ports/145347
ports/144980
ports/145830
ports/145511
2010-05-10 23:19:08 +02:00
|
|
|
|
|
|
|
#ifdef g_atomic_pointer_get
|
|
|
|
static void*
|
|
|
|
-(g_atomic_pointer_get) (volatile void **atomic)
|
2010-05-11 17:25:59 +02:00
|
|
|
+birnet_g_atomic_pointer_get (volatile void **atomic)
|
Presenting GNOME 2.30.1 for FreeBSD. The offical release notes for this
release can be found at http://library.gnome.org/misc/release-notes/2.30/ .
This release brings initial PackageKit support, Upower (replaces power
management part of hal), cuse4bsd integration with HAL and cheese, and a
faster Evolution.
Sadly GNOME 2.30.x will be the last release with FreeBSD 6.X support. This
will also be the last of the 2.x releases. The next release will be the
highly-anticipated GNOME 3.0 which will bring with it a new UI experience.
Currently, there are a few bugs with GNOME 2.30 that may be of note for our
users. Be sure to consult the UPGRADING note or the 2.30 upgrade FAQ at
http://www.freebsd.org/gnome/docs/faq230.html for specific upgrading
instructions, and the up-to-date list of known issues.
This release features commits by avl, ahze, bland, marcus, mezz, and myself.
The FreeBSD GNOME Team would like to thank Anders F Bjorklund for doing the
initual packagekit porting.
And the following contributors & testers for there help with this release:
Eric L. Chen
Vladimir Grebenschikov
Sergio de Almeida Lenzi
DomiX
walder
crsd
Kevin Oberman
Michal Varga
Pavel Plesov
Bapt
kevin
and ITetcu for two exp-run
PR: ports/143852
ports/145347
ports/144980
ports/145830
ports/145511
2010-05-10 23:19:08 +02:00
|
|
|
{
|
|
|
|
return (void*) g_atomic_pointer_get (atomic);
|
|
|
|
}
|
2010-05-11 17:25:59 +02:00
|
|
|
+#undef g_atomic_pointer_get
|
|
|
|
+#define g_atomic_pointer_get birnet_g_atomic_pointer_get
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|