File: configure.ac

package info (click to toggle)
pythonprop 0.30.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,572 kB
  • sloc: python: 5,983; sh: 591; makefile: 131; xml: 69
file content (33 lines) | stat: -rwxr-xr-x 722 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
AC_INIT(pythonprop, 0.30.1)

AM_INIT_AUTOMAKE
AM_PATH_PYTHON([3.4])

# Check for presence of dblatex
AC_CHECK_PROG(DBLATEX, dblatex, dblatex)
if test -z "$DBLATEX"; then
  AC_MSG_WARN([dblatex not found, skipping build pdf docs.])
fi

AM_CONDITIONAL([HAVE_DBLATEX], [test -n "$DBLATEX"])

AC_ARG_WITH([online-help],
            [AS_HELP_STRING([--without-online-help],
              [disable support for online-help])],
            [],
            [with_online_help=yes])

AC_CONFIG_MACRO_DIR([m4])
YELP_HELP_INIT

AC_CONFIG_FILES([
	Makefile
	data/Makefile
	data/voacapgui.desktop
	docs/user/help/Makefile
	src/Makefile
	src/pythonprop/Makefile
	src/pythonprop/templates/Makefile
	src/pythonprop/ui/Makefile
])
AC_OUTPUT