-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfigure.ac
More file actions
34 lines (26 loc) · 760 Bytes
/
configure.ac
File metadata and controls
34 lines (26 loc) · 760 Bytes
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
34
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT([aud_mgr], m4_esyscmd([tr -d '\n' < VERSION]),
[ngbushong@gmail.com])
# Checks for programs.
AC_PROG_INSTALL
AC_PROG_LATEX
AC_PROG_LATEXMK
dnl AC_PROG_DVIPNG
dnl AC_PROG_DVIPS
dnl AC_PROG_CONVERT
dnl AC_LATEX_PACKAGE([type1cm])
dnl AC_FONT([CMU])
dnl AC_PROG_PYTHON
dnl AC_PYTHON_MODULE([matplotlib])
dnl AC_PYTHON_MODULE([bokeh])
dnl AC_PYTHON_MODULE([pytz])
dnl AC_PROG_PHANTOMJS
dnl AC_PROG_INKSCAPE
# Checks for libraries.
# Checks for header files.
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
AC_CONFIG_FILES([Makefile])
AC_OUTPUT