diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-05-08 04:49:01 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-05-08 04:49:01 +0200 |
commit | 8f2799acdbc3049b88758205bd921c7f8697a0ee (patch) | |
tree | ef169bc1d35c7e9c73e93348e69cdbd846e16180 /configure.ac | |
parent | 0d3bec13f963259986c5b23a6e282f6133c44019 (diff) | |
download | gtk-vlc-player-8f2799acdbc3049b88758205bd921c7f8697a0ee.tar.gz |
support for more than one quickopen-filter and some quickopen-related constants defined in autoconf
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index bc0498a..943dfab 100644 --- a/configure.ac +++ b/configure.ac @@ -148,8 +148,12 @@ AC_SUBST(GTKAPP_CFLAGS) AC_SUBST(GTKAPP_LDFLAGS) # Some constants -AC_DEFINE(GTK_VLC_PLAYER_ADJ_STEP, [1000.], [VLC Player time adjustment step increment]) -AC_DEFINE(GTK_VLC_PLAYER_ADJ_PAGE, [30000.], [VLC Player time adjustment page increment]) +AC_DEFINE(GTK_VLC_PLAYER_ADJ_STEP, [1000.], [VLC Player time adjustment step increment]) +AC_DEFINE(GTK_VLC_PLAYER_ADJ_PAGE, [30000.], [VLC Player time adjustment page increment]) + +AC_DEFINE(DEFAULT_QUICKOPEN_DIR, ["."], [Default directory for listing experiments]) +AC_DEFINE(EXPERIMENT_MOVIE_FILTER, ["*.mp4;*.avi"], [Filters for (quick) opening movies]) +AC_DEFINE(EXPERIMENT_TRANSCRIPT_EXT, ["flk"], [File extension of experiment transcripts]) AC_CONFIG_FILES([Makefile \ lib/Makefile lib/gtk-vlc-player/Makefile \ |