diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2012-08-28 01:49:26 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2012-08-28 01:49:26 +0800 |
commit | 47a512dee1237f696686c888ee1b32610e53c828 (patch) | |
tree | a21994996b1884420e92b78deda90db396221219 /graphics/clutter | |
parent | d13fd584027cf26eb26021ab85647a48121108e1 (diff) | |
download | marcuscom-ports-47a512dee1237f696686c888ee1b32610e53c828.tar marcuscom-ports-47a512dee1237f696686c888ee1b32610e53c828.tar.gz marcuscom-ports-47a512dee1237f696686c888ee1b32610e53c828.tar.bz2 marcuscom-ports-47a512dee1237f696686c888ee1b32610e53c828.tar.lz marcuscom-ports-47a512dee1237f696686c888ee1b32610e53c828.tar.xz marcuscom-ports-47a512dee1237f696686c888ee1b32610e53c828.tar.zst marcuscom-ports-47a512dee1237f696686c888ee1b32610e53c828.zip |
Add -fno-omit-frame-pointer to CPPFLAGS. This makes gnome-shell and friends
a lot stabler.
Add a patch to clutter, to first try to lock a mutex before unlocking.
FreeBSD doesn't allow unlock to silently fail.
Submitted by: Gustau P'erez i Querol <gustau.perez@gmail.com>
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@17056 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'graphics/clutter')
-rw-r--r-- | graphics/clutter/Makefile | 5 | ||||
-rw-r--r-- | graphics/clutter/files/patch-clutter_clutter-main.c | 10 |
2 files changed, 13 insertions, 2 deletions
diff --git a/graphics/clutter/Makefile b/graphics/clutter/Makefile index 303865c71..40352db78 100644 --- a/graphics/clutter/Makefile +++ b/graphics/clutter/Makefile @@ -3,11 +3,12 @@ # Whom: Martin Wilke <miwi@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/graphics/clutter/Makefile,v 1.57 2012/05/29 18:00:51 kwm Exp $ +# $MCom: ports/graphics/clutter/Makefile,v 1.58 2012/06/21 18:28:20 kwm Exp $ # PORTNAME= clutter PORTVERSION= 1.10.8 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= GNOME @@ -31,7 +32,7 @@ USE_LDCONFIG= yes CONFIGURE_ARGS= --with-x --enable-conformance=no \ --disable-gdk-backend -CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} +CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} -fno-omit-frame-pointer LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS} .include <bsd.port.mk> diff --git a/graphics/clutter/files/patch-clutter_clutter-main.c b/graphics/clutter/files/patch-clutter_clutter-main.c new file mode 100644 index 000000000..a607b3f80 --- /dev/null +++ b/graphics/clutter/files/patch-clutter_clutter-main.c @@ -0,0 +1,10 @@ +--- clutter/clutter-main.c.orig 2012-06-19 09:56:35.000000000 +0200 ++++ clutter/clutter-main.c 2012-07-15 13:09:09.000000000 +0200 +@@ -227,6 +227,7 @@ + static void + clutter_threads_impl_unlock (void) + { ++ g_mutex_trylock (&clutter_threads_mutex); + g_mutex_unlock (&clutter_threads_mutex); + } + |