-
Notifications
You must be signed in to change notification settings - Fork 1
/
configure.ac
165 lines (137 loc) · 5.28 KB
/
configure.ac
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
# csync2 - cluster synchronization tool, 2nd generation
# Copyright (C) 2004 - 2013 LINBIT Information Technologies GmbH
# http://www.linbit.com; see also AUTHORS
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
# Process this file with autoconf to produce a configure script.
AC_INIT(csync2, 2.0, csync2@lists.linbit.com)
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR(csync2.c)
AM_CONFIG_HEADER(config.h)
# Use /etc and /var instead of $prefix/...
# test "$localstatedir" = '${prefix}/var' && localstatedir=/var
# test "$sysconfdir" = '${prefix}/etc' && sysconfdir=/etc
# Checks for programs.
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_YACC
AM_PROG_LEX
# Check for presence of pdfLaTeX
AC_CHECK_PROG(PDFLATEX, pdflatex, pdflatex)
if test -z "$PDFLATEX"; then
AC_MSG_WARN([Unable to create PDF version of the user manual.])
fi
AM_CONDITIONAL([HAVE_PDFLATEX], test -n "$PDFLATEX")
dnl inspired by rsync's configure.ac
AC_CHECK_FUNCS(fchmod setmode open64 mkstemp64)
AC_CACHE_CHECK([for secure mkstemp],csync_cv_HAVE_SECURE_MKSTEMP,[
AC_TRY_RUN([#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
main() {
struct stat st;
char tpl[20]="/tmp/test.XXXXXX";
int fd = mkstemp(tpl);
if (fd == -1) exit(1);
unlink(tpl);
if (fstat(fd, &st) != 0) exit(1);
if ((st.st_mode & 0777) != 0600) exit(1);
exit(0);
}],
csync_cv_HAVE_SECURE_MKSTEMP=yes,
csync_cv_HAVE_SECURE_MKSTEMP=no,
csync_cv_HAVE_SECURE_MKSTEMP=cross)])
if test x"$csync_cv_HAVE_SECURE_MKSTEMP" = x"yes"; then
case $host_os in
hpux*)
dnl HP-UX has a broken mkstemp() implementation they refuse to fix,
dnl so we noisily skip using it. See HP change request JAGaf34426
dnl for details. (sbonds)
AC_MSG_WARN(Skipping broken HP-UX mkstemp() -- using mktemp() instead)
;;
*)
AC_DEFINE(HAVE_SECURE_MKSTEMP, 1, [Define to 1 if mkstemp() is available and works right])
;;
esac
fi
# check for large file support
AC_SYS_LARGEFILE
# Check for librsync.
AC_ARG_WITH([librsync-source],
AS_HELP_STRING([--with-librsync-source=source-tar-file],
[build this librsync and link statically against it (hack! hack!)]),
AC_SUBST([librsync_source_file], $withval),
AC_CHECK_LIB([rsync], [rs_sig_file], , [AC_MSG_ERROR(librsync is required)])
)
AM_CONDITIONAL([PRIVATE_LIBRSYNC], [test -n "$librsync_source_file"])
AC_ARG_ENABLE([sqlite],
[AC_HELP_STRING([--enable-sqlite],
[enable/disable sqlite 2 support (default is disabled)])],
[], [ enable_sqlite=no ])
if test "$enable_sqlite" == yes
then
AC_CHECK_HEADERS([sqlite.h], , [AC_MSG_ERROR([[SQLite header not found; install libsqlite-dev and dependencies for SQLite 2 support]])])
AC_DEFINE([HAVE_SQLITE], 1, [Define if sqlite 2 support is wanted])
fi
AC_ARG_ENABLE([sqlite3],
[AC_HELP_STRING([--disable-sqlite3],
[enable/disable sqlite3 support (default is enabled)])],
[], [ enable_sqlite3=yes ])
if test "$enable_sqlite3" == yes
then
AC_CHECK_HEADERS([sqlite3.h], , [AC_MSG_ERROR([[SQLite header not found; install libsqlite3-dev and dependencies for SQLite 3 support]])])
AC_DEFINE([HAVE_SQLITE3], 1, [Define if sqlite3 support is wanted])
fi
AC_ARG_ENABLE([gnutls],
[AS_HELP_STRING([--disable-gnutls],[enable/disable GNU TLS support (default is enabled)])],
[], [ enable_gnutls=yes ])
if test "$enable_gnutls" != no
then
PKG_PROG_PKG_CONFIG
PKG_CHECK_MODULES([LIBGNUTLS], [gnutls >= 2.6.0], [
AC_DEFINE([HAVE_LIBGNUTLS], 1, [Define to 1 when using GNU TLS library])
])
fi
AC_ARG_ENABLE([mysql],
[AC_HELP_STRING([--enable-mysql],
[enable/disable MySQL support (default is disabled)])],
[], [ enable_mysql=no ])
AC_ARG_ENABLE([postgres],
[AC_HELP_STRING([--enable-postgres],
[enable/disable Postgres support (default is disabled)])],
[], [ enable_postgres=no ])
if test "$enable_mysql" == yes
then
# Check for mysql.
# This is a bloody hack for fedora core
CFLAGS="$CFLAGS `mysql_config --cflags`"
# Check MySQL development header
AC_CHECK_HEADERS([mysql/mysql.h], , [AC_MSG_ERROR([[mysql header not found; install mysql-devel and dependencies for MySQL Support]])])
AC_DEFINE([HAVE_MYSQL], 1, [Define if mysql support is wanted])
fi
if test "$enable_postgres" == yes
then
AC_CHECK_HEADERS([libpq-fe.h], , [AC_MSG_ERROR([[postgres header not found; install libpq-dev and dependencies for Postgres support]])])
AC_DEFINE([HAVE_POSTGRES], 1, [Define if postgres support is wanted])
fi
# at least one db backend must be configured.
if test "$enable_postgres" != yes && test "$enable_mysql" != yes &&
test "$enable_sqlite3" != yes && test "$enable_sqlite" != yes
then
AC_MSG_ERROR([No database backend configured. Please enable either sqlite, sqlite3, mysql or postgres.])
fi
AC_CONFIG_FILES([Makefile])
AC_OUTPUT