File: configure.ac

package info (click to toggle)
texlive-extra 2024.20250309-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,368,476 kB
  • sloc: perl: 401,582; xml: 41,345; python: 38,753; cs: 25,850; sh: 18,555; makefile: 17,174; ansic: 13,023; java: 12,811; javascript: 9,898; lisp: 1,876; csh: 1,347; ruby: 618; awk: 183; tcl: 142; pascal: 138; cpp: 124; sed: 92; haskell: 5
file content (31 lines) | stat: -rw-r--r-- 752 bytes parent folder | download | duplicates (2)
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
# Autoconf configfile for SQLTeX.
# To create a new distribution, execute the following steps:
#   aclocal
#   autoconf
#   automake --add-missing
#   ./configure
#   make dist
#
# To install:
#   ./configure [options]
#   make
#   [sudo] make install

AC_PREREQ([2.69])

# Ensure configure can check for the required perl modules.
m4_include([aclocal/ax_prog_perl_modules.m4])

AC_INIT([SQLTeX], [3.0], [support@oveas.com])

AM_INIT_AUTOMAKE

AX_PROG_PERL_MODULES([DBI DBD::mysql Getopt::Long Term::ReadKey]
                    ,
                    ,[AC_MSG_ERROR([Not all required perl modules are installed])]
)

# Makefile to be generated in the subdirectories as well
AC_CONFIG_FILES([Makefile src/Makefile doc/Makefile man/Makefile])

AC_OUTPUT