2 # Process this file with autoconf to produce a configure script.
6 m4_include([m4/version.m4])
8 AC_INIT([libquvi-scripts], [_LIBQUVI_SCRIPTS_VERSION],
9 [http://sourceforge.net/apps/trac/quvi/], [],
10 [http://quvi.sourceforge.net/])
12 AC_CONFIG_AUX_DIR([config.aux])
13 AC_CONFIG_MACRO_DIR([m4])
15 AM_INIT_AUTOMAKE([-Wall -Werror foreign dist-bzip2 dist-xz])
16 AM_SILENT_RULES([yes])
18 # Checks for programs.
20 AC_PATH_PROG([QUVI], [quvi], [], [$QUVI_PATH$PATH_SEPARATOR$PATH])
21 AM_CONDITIONAL([HAVE_QUVI], [test -n "$QUVI"])
22 AS_IF([test -n "$QUVI"], [quviver=`$QUVI --version | head -n1 2>/dev/null`])
25 AC_PATH_PROG([PROVE], [prove], [], [$PROVE_PATH$PATH_SEPARATOR$PATH])
26 AM_CONDITIONAL([HAVE_PROVE], [test -n "$PROVE"])
29 AC_PATH_PROG([VALGRIND], [valgrind], [], [$VALGRIND_PATH$PATH_SEPARATOR$PATH])
30 AM_CONDITIONAL([HAVE_VALGRIND], [test -n "$VALGRIND"])
34 genver="$srcdir/gen-ver.sh"
35 AS_IF([test -x "$genver"], [VN=`"$genver" "$srcdir"`])
36 AM_CONDITIONAL([HAVE_VN], [test -n "$VN"])
40 [AS_HELP_STRING([--with-tests], [with tests @<:@default=no@:>@])],
41 [AS_IF([test -z "$QUVI"], [
42 AC_MSG_NOTICE([quvi not found. Ignoring --with-tests.])
45 AM_CONDITIONAL([WITH_TESTS], [test x"$with_tests" != "xno"])
49 [AS_HELP_STRING([--with-nsfw],
50 [build with adult website support @<:@default=no@:>@])],
53 AM_CONDITIONAL([WITH_NSFW], [test x"$with_nsfw" != "xno"])
57 [AS_HELP_STRING([--with-fixme],
58 [with website scripts marked as "fixme" @<:@default=no@:>@])],
61 AM_CONDITIONAL([WITH_FIXME], [test x"$with_fixme" != "xno"])
65 [AS_HELP_STRING([--with-nlfy],
66 [test scripts marked as "nlfy" @<:@default=no@:>@])],
69 AM_CONDITIONAL([WITH_NLFY], [test x"$with_nlfy" != "xno"])
73 [AS_HELP_STRING([--with-manual],
74 [install manual pages @<:@default=yes@:>@])],
77 AM_CONDITIONAL([WITH_MANUAL], [test x"$with_manual" != "xno"])
90 version: ${VERSION} (${VN})
96 with tests: ${with_tests}
97 with fixme: ${with_fixme}
98 with nsfw: ${with_nsfw}
99 with nlfy: ${with_nlfy}])