diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-07-24 10:41:32 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-07-24 10:41:32 -0500 |
commit | c53429a6968563f72f8b334486d6dd1f0de75ecb (patch) | |
tree | 6c6b3c6d09f776dc7a54635584bfa79a3af71ed9 /configure.in.in | |
download | mplayerthumbs-c53429a6968563f72f8b334486d6dd1f0de75ecb.tar.gz mplayerthumbs-c53429a6968563f72f8b334486d6dd1f0de75ecb.zip |
Initial import of mplayerthumbs 0.5b sources
Diffstat (limited to 'configure.in.in')
-rw-r--r-- | configure.in.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/configure.in.in b/configure.in.in new file mode 100644 index 0000000..d0d4bd2 --- /dev/null +++ b/configure.in.in @@ -0,0 +1,12 @@ +#MIN_CONFIG(3.2.0) + +AM_INIT_AUTOMAKE(mplayerthumbs, 0.5b) +AC_C_BIGENDIAN +AC_CHECK_KDEMAXPATHLEN + +AC_ARG_ENABLE(strips, +AC_HELP_STRING([--disable-strips],[disable strips over the thumbnails [default=enable]]), [enable_strips=$enableval], [enable_strips=yes]) +if test "$enable_strips" != "no"; then + AC_DEFINE(STRIPS_SUPPORT, 1, [Use strips over thumbnails]) + AC_DEFINE(USESTRIP, 1, [use strips]) +fi |