search for: c90dd0f

Displaying 3 results from an estimated 3 matches for "c90dd0f".

Did you mean: c90dbaf
2007 Jul 07
0
2 commits - doc/Makefile.am libswfdec-gtk/Makefile.am Makefile.am player/Makefile.am test/Makefile.am
...r: Benjamin Otte <otte at gnome.org> Date: Sat Jul 7 17:45:20 2007 +0100 fix rest of the build without gtk In particular, this should fix docs. It might break make dist with gtk disabled, but I don't care right now diff --git a/Makefile.am b/Makefile.am index 25bbed2..c90dd0f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,8 +1,15 @@ -SUBDIRS= \ - libswfdec \ +if WITH_GTK +GTK_SUBDIRS = \ libswfdec-gtk \ - player \ doc \ + player +else +GTK_SUBDIRS = +endif + +SUBDIRS= \ + libswfdec \ + $(GTK_SUBDIRS) \ test ACLOCAL_FLAGS = -I m4 diff --git a/doc/Makefile.am b...
2007 Jul 07
0
Branch 'as' - 3 commits - doc/Makefile.am libswfdec-gtk/Makefile.am Makefile.am player/Makefile.am test/Makefile.am
...r: Benjamin Otte <otte at gnome.org> Date: Sat Jul 7 17:45:20 2007 +0100 fix rest of the build without gtk In particular, this should fix docs. It might break make dist with gtk disabled, but I don't care right now diff --git a/Makefile.am b/Makefile.am index 25bbed2..c90dd0f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,8 +1,15 @@ -SUBDIRS= \ - libswfdec \ +if WITH_GTK +GTK_SUBDIRS = \ libswfdec-gtk \ - player \ doc \ + player +else +GTK_SUBDIRS = +endif + +SUBDIRS= \ + libswfdec \ + $(GTK_SUBDIRS) \ test ACLOCAL_FLAGS = -I m4 diff --git a/doc/Makefile.am b...
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
...-tree db55a9dadd530e0e218cd63516e22b337605224f (from eeb38d493a9682147c36977e031c1a064e18591a) Author: Benjamin Otte <otte at gnome.org> Date: Wed Aug 8 23:29:43 2007 +0200 initial checkin of code that is supposed to become the new debugger diff --git a/Makefile.am b/Makefile.am index c90dd0f..4a20c24 100644 --- a/Makefile.am +++ b/Makefile.am @@ -7,9 +7,16 @@ else GTK_SUBDIRS = endif +if HAVE_VIVI +VIVI_SUBDIRS = vivified +else +VIVI_SUBDIRS = +endif + SUBDIRS= \ libswfdec \ $(GTK_SUBDIRS) \ + $(VIVI_SUBDIRS) \ test ACLOCAL_FLAGS = -I m4 diff --git a/autogen.sh b/autogen....