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.
26 lines
601 B
26 lines
601 B
6 years ago
|
#AC_PREREQ([2.69])
|
||
|
AC_INIT([inline-images], [1.0], [marc@waeckerlin.org])
|
||
|
AM_INIT_AUTOMAKE([1.9 tar-pax])
|
||
|
|
||
|
AC_ARG_WITH([latexdir],
|
||
|
[AS_HELP_STRING([--with-latexdir=DIR], [latex template files])],
|
||
|
[latexdir=$withval],
|
||
|
[latexdir='${datadir}/texlive/texmf-dist/tex/latex/@PACKAGE_NAME@'])
|
||
|
AC_SUBST([latexdir], [$latexdir])
|
||
|
|
||
|
# Checks for programs.
|
||
|
AC_CHECK_PROG([pandoc])
|
||
|
AC_CHECK_PROG([convert])
|
||
|
AC_CHECK_PROG([xelatex])
|
||
|
AC_CHECK_PROG([base64])
|
||
|
|
||
|
EXAMPLES="example"
|
||
|
|
||
|
AC_SUBST(EXAMPLES)
|
||
|
|
||
|
AC_CONFIG_FILES([examples/makefile
|
||
|
makefile
|
||
|
screenshots/makefile])
|
||
|
|
||
|
AC_OUTPUT
|