blob: 057a1597342ee5a5147d9ec0a0f40e4d3b747932 (
plain)
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
|
# Autoconf configfile for SQLTeX.
# To create a new distribuition, 3execute 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], [2.1], [support@oveas.com])
AM_INIT_AUTOMAKE
AX_PROG_PERL_MODULES(DBI Getopt::Long Term::ReadKey, , )
# Makefile to be generated in the subdircetories as welll
AC_CONFIG_FILES([Makefile src/Makefile doc/Makefile man/Makefile])
AC_OUTPUT
|