-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathconfigure.ac
70 lines (59 loc) · 1.94 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
# configure.ac
# (C) 2018, all rights reserved,
#
# 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 3 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, see <http://www.gnu.org/licenses/>.
AC_INIT(reqrypt, 0)
AC_SUBST(PACKAGE_NAME_LONG, "ReQrypt")
AC_SUBST(PACKAGE_VERSION, `cat VERSION`)
AC_SUBST(PACKAGE_VERSION_SHORT, `cat VERSION`)
error=no
server=yes
AC_PROG_CC([], [true], [error=yes])
AC_PROG_CC_C99
if test "$ac_cv_prog_cc_c99" = "no"
then
AC_MSG_NOTICE([*** compiler does not support C99.])
error=yes
fi
AC_CHECK_FILE(/usr/include/linux/netfilter.h, [true], [error=yes])
AC_CHECK_FILE(/usr/include/linux/netfilter/nfnetlink.h, [true], [error=yes])
AC_CHECK_FILE(/usr/include/linux/netfilter/nfnetlink_queue.h, [true],
[error=yes])
AC_CHECK_FILE(/usr/include/linux/netlink.h, [true], [error=yes])
AC_CHECK_HEADER(pthread.h, [true], [error=yes])
AC_CHECK_HEADER(gmp.h, [true], [server=no])
AC_CHECK_HEADER(openssl/rsa.h, [true], [server=no])
if test "$error" = "yes"
then
AC_MSG_NOTICE([*** correct the above errors first ***])
exit 1;
fi
if test "$server" = "no"
then
AC_MSG_NOTICE([*** WARNING: missing SSL or GMP -- cannot build server ***])
fi
case `uname -m` in
i?86)
AC_SUBST(BITS, 32)
AC_SUBST(ARCH, x86)
;;
*)
AC_SUBST(BITS, 64)
AC_SUBST(ARCH, x86_64)
;;
esac
AC_SUBST(ROOT, `pwd`)
AC_SUBST(PLATFORM_CAPS, LINUX)
AC_SUBST(PLATFORM, linux)
AC_OUTPUT([cfg.mk src/cfg.h src/tools/init.d.sh])