-
Notifications
You must be signed in to change notification settings - Fork 83
/
configure-freebsd.ac
66 lines (55 loc) · 1.58 KB
/
configure-freebsd.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
# 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
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_HEADER(pthread.h, [true], [error=yes])
if test "$error" = "yes"
then
AC_MSG_NOTICE([*** correct the above errors first ***])
exit 1;
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
case `uname -s` in
Darwin)
AC_SUBST(PLATFORM_CAPS, MACOSX)
AC_SUBST(PLATFORM, macosx)
;;
*)
AC_SUBST(PLATFORM_CAPS, FREEBSD)
AC_SUBST(PLATFORM, freebsd)
;;
esac
AC_SUBST(ROOT, `pwd`)
AC_OUTPUT([cfg.mk src/cfg.h])