Displaying 3 results from an estimated 3 matches for "bb86e8f".
2007 Dec 17
0
3 commits - configure.ac
...SION | sed 's/[0-9]\.[0-9]\.[0-9][0-9]*\.*//')]
if test x"$nano" = x1 ; then
commit a78d26d663339446cc6bec5b5eeee94f1d44a7f8
Author: Benjamin Otte <otte at gnome.org>
Date: Mon Dec 17 19:53:07 2007 +0100
bump libversion
diff --git a/configure.ac b/configure.ac
index bb86e8f..088cbd3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -33,7 +33,7 @@ else
fi
AC_DEFINE_UNQUOTED(SWFDEC_LEVEL_DEFAULT, $DEFAULT_DEBUG_LEVEL, [Default debug level used])
-SWFDEC_LIBVERSION="4:0:0"
+SWFDEC_LIBVERSION="5:0:0"
AC_SUBST(SWFDEC_LIBVERSION)
AM_PROG_LIBTOOL
2007 Dec 01
1
OpenBSD related patches
Hello, list !
Here is diff of changes, i had to make to get swfdec running on
OpenBSD 4.2-current.
Regards Valery.
P.S. Please cc me, i am not subscribed to the list
-------------- next part --------------
A non-text attachment was scrubbed...
Name: swfdec.diff
Type: application/octet-stream
Size: 11628 bytes
Desc: not available
Url :
2007 Nov 28
0
7 commits - configure.ac libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_sprite_movie.c test/trace
...p;& movie->frame == (guint) -1)
commit 63da3f31bc7d76abedcacd091fda1ddb63a64aef
Author: Benjamin Otte <otte at gnome.org>
Date: Tue Nov 27 09:32:19 2007 +0100
test for mad with pkg-config before trying it with AC_CHECK_LIB
diff --git a/configure.ac b/configure.ac
index 924aa4d..bb86e8f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -206,7 +206,12 @@ AC_ARG_ENABLE(mad,
enable_mad="no")
if test "$enable_mad" = "yes"; then
- AC_CHECK_LIB(mad, mad_decoder_finish, HAVE_MAD="yes" MAD_LIBS="-lmad", HAVE_MAD="no")
+...