search for: a7b5767

Displaying 2 results from an estimated 2 matches for "a7b5767".

Did you mean: 375767
2007 Aug 03
0
configure.ac
...38e8d25c4d2342fef54ebb669e39d41570) Author: Benjamin Otte <otte at gnome.org> Date: Sat Aug 4 00:31:21 2007 +0200 bump the libversion this should have been in 0.5.1 already. If you're a packager, please include this. diff --git a/configure.ac b/configure.ac index 98e4102..a7b5767 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="0:0:0" +SWFDEC_LIBVERSION="1:0:0" AC_SUBST(SWFDEC_LIBVERSION) AM_PROG_LIBTOOL
2007 Aug 22
0
163 commits - autogen.sh configure.ac doc/swfdec-sections.txt libswfdec-gtk/swfdec_gtk_player.c libswfdec-gtk/swfdec_gtk_player.h libswfdec-gtk/swfdec_gtk_widget.c libswfdec-gtk/swfdec_source.c libswfdec/Makefile.am libswfdec/swfdec_as_array.c
.../autogen.sh +++ b/autogen.sh @@ -1,3 +1,3 @@ #!/bin/sh autoreconf -i -f && -./configure --enable-maintainer-mode --disable-static --enable-gtk-doc $@ +./configure --enable-maintainer-mode --disable-static --enable-gtk-doc --enable-vivified $@ diff --git a/configure.ac b/configure.ac index a7b5767..207e360 100644 --- a/configure.ac +++ b/configure.ac @@ -264,6 +264,25 @@ else fi AM_CONDITIONAL(HAVE_HTTP, [test "x$HAVE_HTTP" = xyes]) +AC_ARG_ENABLE(vivified, + AS_HELP_STRING([--enable-vivified], + [enable Vivified Flash debugger (default=no)])], + enable_vivi=$enableval, + ena...