forked from BlockchainCommons/seedtool-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
69 lines (61 loc) · 1.72 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
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT([seedtool-cli], [0.11.0])
AC_CONFIG_SRCDIR([src/seedtool.cpp])
AC_CONFIG_HEADERS([src/config.h])
AC_CONFIG_AUX_DIR([build-aux])
# Checks for programs.
AC_PROG_CXX
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_MAKE_SET
# on windows/msys2/mingw64:
AS_CASE([$(uname -s)],
[*MINGW*], [LIBS=-lws2_32],
[LIBS=]
)
# Checks for libraries.
AC_CHECK_LIB([bc-crypto-base], [sha256_Raw], [], [
echo "### Error! libbc-crypto-base must be installed first."
exit -1
])
AC_CHECK_LIB([bc-shamir], [split_secret], [], [
echo "### Error! libbc-shamir must be installed first."
exit -1
])
AC_CHECK_LIB([bc-sskr], [sskr_generate], [], [
echo "### Error! libbc-sskr must be installed first."
exit -1
])
AC_CHECK_LIB([bc-bip39], [bip39_mnemonic_from_word], [], [
echo "### Error! libbc-bip39 must be installed first."
exit -1
])
AC_CHECK_LIB([bc-ur], [ur_crc32n], [], [
echo "### Error! libbc-ur must be installed first."
exit -1
])
AC_CHECK_LIB([argp], [argp_parse], [], [
echo "### Error! argp must be installed first. Try 'brew install argp-standalone'."
exit -1
])
# Checks for header files.
AC_CHECK_HEADERS([fcntl.h memory.h stdint.h stdlib.h string.h strings.h sys/ioctl.h sys/param.h unistd.h stddef.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_CHECK_HEADER_STDBOOL
AC_C_INLINE
AC_TYPE_SIZE_T
AC_TYPE_SSIZE_T
AC_TYPE_UINT16_T
AC_TYPE_UINT32_T
AC_TYPE_UINT64_T
AC_TYPE_UINT8_T
AC_TYPE_INT16_T
AC_TYPE_INT32_T
# Checks for library functions.
AC_FUNC_MALLOC
AC_CHECK_FUNCS([memset strerror])
AC_CONFIG_FILES([Makefile
src/Makefile])
AC_OUTPUT