File: configure.ac

package info (click to toggle)
muttprint 0.73-8
  • links: PTS
  • area: main
  • in suites: buster
  • size: 2,480 kB
  • ctags: 97
  • sloc: perl: 2,931; makefile: 357; ansic: 121
file content (26 lines) | stat: -rw-r--r-- 977 bytes parent folder | download | duplicates (7)
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
AC_INIT(muttprint, 0.73, bugs@muttprint.org)
AM_INIT_AUTOMAKE

dnl Information on the package
dnl Checks for programs
AC_PROG_CC
AC_CHECK_PROG([have_docbook], [db2pdf], [true])
AM_CONDITIONAL([DOCBOOK], test x$have_docbook = xtrue)
AC_CHECK_PROG([have_pod2man], [pod2man], [true])
AM_CONDITIONAL([POD2MAN], test x$have_pod2man = xtrue)

dnl Checks for libraries
dnl Checks for header files
dnl Checks for types
dnl Checks for structures
dnl Checks for compiler characteristics
dnl Checks for library functions
dnl Checks for system services

AC_CONFIG_FILES([Makefile langinfo/Makefile pics/Makefile
                 translations/Makefile
                 doc/manual/Makefile
                 doc/manual/de/Makefile doc/manual/en/Makefile doc/manual/es/Makefile doc/manual/it/Makefile doc/manual/sl/Makefile
                 doc/manpages/Makefile
                 doc/manpages/de/Makefile doc/manpages/en/Makefile doc/manpages/es/Makefile doc/manpages/it/Makefile ])
AC_OUTPUT