You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
404 B
13 lines
404 B
11 years ago
|
#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
|