search for: gtk_subdirs

Displaying 5 results from an estimated 5 matches for "gtk_subdirs".

2007 Jul 07
0
2 commits - doc/Makefile.am libswfdec-gtk/Makefile.am Makefile.am player/Makefile.am test/Makefile.am
...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/doc/Makefile.am index 5ce6db0..38ef71f 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -110,10 +110,15 @@...
2007 Jul 07
0
Branch 'as' - 3 commits - doc/Makefile.am libswfdec-gtk/Makefile.am Makefile.am player/Makefile.am test/Makefile.am
...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/doc/Makefile.am index 5ce6db0..38ef71f 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -110,10 +110,15 @@...
2007 Oct 19
0
4 commits - configure.ac data/.gitignore data/icons data/Makefile.am data/swfdec-gtk.pc.in data/swfdec.pc.in .gitignore Makefile.am player/swfplay.c swfdec-gtk.pc.in swfdec.pc.in
...670d..d58a796 100644 --- a/.gitignore +++ b/.gitignore @@ -19,6 +19,3 @@ libtool ltmain.sh missing stamp-h1 -swfdec-*.pc -swfdec.pc -swfdec.spec diff --git a/Makefile.am b/Makefile.am index 27849d7..37b2970 100644 --- a/Makefile.am +++ b/Makefile.am @@ -17,6 +17,7 @@ SUBDIRS= \ libswfdec \ $(GTK_SUBDIRS) \ $(VIVI_SUBDIRS) \ + data \ test ACLOCAL_FLAGS = -I m4 @@ -32,21 +33,6 @@ EXTRA_DIST=depcomp \ m4/ax_create_stdint_h.m4 \ m4/gtk-doc.m4 -pkgconfigdir = $(libdir)/pkgconfig -if WITH_GTK -pkgconfig_DATA = swfdec- at SWFDEC_MAJORMINOR@.pc swfdec-gtk- at SWFDEC_MAJORMINOR@.pc -else -pkgc...
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
...064e18591a) 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.sh index fee343b..2d1f22f 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,3 +1,3 @@ #!/...
2008 Jan 07
0
12 commits - configure.ac doc/swfdec.types Makefile.am test/crashfinder.c test/dump.c test/Makefile.am test/swfdec-extract.c test/swfdec_out.c test/swfdec_out.h test/swfedit.c test/swfedit_file.c test/swfedit_file.h test/swfedit_list.c test/swfedit_list.h
...c9954a36911aabc29ca2252628e7925287757 Author: Benjamin Otte <otte at gnome.org> Date: Mon Jan 7 19:38:36 2008 +0100 move tools from test/ to tools/ diff --git a/Makefile.am b/Makefile.am index 0c33e5c..d13fae6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -18,7 +18,8 @@ SUBDIRS= \ $(GTK_SUBDIRS) \ $(VIVI_SUBDIRS) \ data \ - test + test \ + tools ACLOCAL_FLAGS = -I m4 diff --git a/configure.ac b/configure.ac index 98d756a..338ca51 100644 --- a/configure.ac +++ b/configure.ac @@ -357,6 +357,7 @@ test/sound/Makefile test/test/Makefile test/trace/Makefile test/various/Makefile +to...