diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/Makefile.am | 8 | ||||
-rw-r--r-- | examples/seeking/Makefile.am | 4 |
2 files changed, 9 insertions, 3 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am index 84bec465..de3c7c43 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -1,5 +1,11 @@ +if HAVE_FT2 +FT2_SUBDIRS=seeking +else +FT2_SUBDIRS= +endif + if HAVE_GTK -GTK_SUBDIRS=dynparams seeking +GTK_SUBDIRS=dynparams $(FT2_SUBDIRS) else GTK_SUBDIRS= endif diff --git a/examples/seeking/Makefile.am b/examples/seeking/Makefile.am index 30003e06..b1dac9c4 100644 --- a/examples/seeking/Makefile.am +++ b/examples/seeking/Makefile.am @@ -3,5 +3,5 @@ examples = seek spider_seek noinst_PROGRAMS = $(examples) # we have nothing but apps here, we can do this safely -LIBS = $(GST_LIBS) $(GTK_LIBS) -lfreetype -CFLAGS = $(GST_CFLAGS) $(GTK_CFLAGS) +LIBS = $(GST_LIBS) $(GTK_LIBS) $(FT2_LIBS) +CFLAGS = $(GST_CFLAGS) $(GTK_CFLAGS) $(FT2_CFLAGS) |