Displaying 2 results from an estimated 2 matches for "4d1b2ba".
2007 Jun 26
1
Branch 'as' - configure.ac
configure.ac | 1 +
1 files changed, 1 insertion(+)
New commits:
diff-tree fad705a672d2685cd5572f1bbe4fa9e17776441f (from 0e96b023aba5b5548d22679a5fdffcc0ebce13e5)
Author: Benjamin Otte <otte at gnome.org>
Date: Tue Jun 26 11:31:50 2007 +0200
automake claims we need this
diff --git a/configure.ac b/configure.ac
index aac8129..e76bce0 100644
--- a/configure.ac
+++ b/configure.ac
2007 Jul 02
0
Branch 'as' - 24 commits - configure.ac doc/Makefile.am doc/swfdec-sections.txt libswfdec/Makefile.am libswfdec/swfdec_amf.c libswfdec/swfdec_as_array.c libswfdec/swfdec_as_context.c libswfdec/swfdec_as_context.h libswfdec/swfdec_as_frame.c
...thread pools for multithreaded checking
This is not enabled by default, since it can cause various issues.
The most important one:
foo_get_type() functions (defined with G_DEFINE_TYPE) are not threadsafe.
This can lead to crashes.
diff --git a/configure.ac b/configure.ac
index 4d1b2ba..a6a5751 100644
--- a/configure.ac
+++ b/configure.ac
@@ -79,6 +79,12 @@ fi
AC_SUBST(GLIB_LIBS)
AC_SUBST(GLIB_CFLAGS)
AC_SUBST(GLIB_VER)
+dnl we detect gthread seperately for now, since we don't want to link libswfdec to it (yet)
+PKG_CHECK_MODULES(GTHREAD, gthread-2.0 >= $GLIB_VER,
+ HA...