Changed configure.in to list the 0.9.2 release and change the contact email to the...
[matthijs/upstream/backupninja.git] / configure.in
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3
4 AC_INIT([backupninja],[0.9.1],[backupninja@lists.riseup.net])
5 AC_CONFIG_SRCDIR([src/backupninja.in])
6 #AC_CONFIG_HEADERS([config.sh])
7 AM_INIT_AUTOMAKE
8
9 # Checks for programs.
10 AC_PATH_PROGS([BASH], [bash])
11 #AC_PATH_PROGS([PERL], [perl])
12
13 #AC_DEFINE([MYVERSION], [5.6])
14 #AC_DEFINE_UNQUOTED([MYDIR], "${sysconfdir}")
15 #AC_DEFINE([SYSCONFDIR], [$sysconfdir], [System config dir])
16 AC_SUBST([CFGDIR], "${sysconfdir}")
17
18 # Checks for libraries.
19
20 # Checks for header files.
21
22 # Checks for typedefs, structures, and compiler characteristics.
23
24 # Checks for library functions.
25
26 AC_CONFIG_FILES([Makefile
27                 etc/Makefile
28                 examples/Makefile
29                 handlers/Makefile
30                 lib/Makefile
31                 man/Makefile
32                 src/Makefile])
33
34 AC_OUTPUT([ backupninja.spec])