-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
229 lines (191 loc) · 9.07 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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
#
# Tiny TACACS+ Client Library
# Copyright (C) 2022 David M. Syzdek <[email protected]>.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of David M. Syzdek nor the
# names of its contributors may be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
# IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL DAVID M SYZDEK BE LIABLE FOR
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
# configure.in - automate compiling on a unix platform
#
AC_PREREQ([2.65])
AC_COPYRIGHT([Copyright (C) 2022 David M. Syzdek <[email protected]>.])
AC_REVISION(0.1)
AC_INIT([Tiny TACACS+ Client Library],[0.0],[[email protected]],[tinytac],[https://github.com/syzdek/tinytac/])
AC_SUBST([RELEASE_MONTH],["April 2022"])
# directory locations
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_SRCDIR([build-aux/git-tar-name.txt])
#AC_CONFIG_LIBOBJ_DIR(compat)
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIR([m4])
# determines host type
AC_CANONICAL_BUILD
AC_CANONICAL_HOST
AC_CANONICAL_TARGET
# configures for automake
AM_INIT_AUTOMAKE(gnu std-options subdir-objects foreign)
# Compilers
AC_PROG_CC
#AC_PROG_OBJC
AC_PROG_CXX
AM_PROG_CC_C_O
AC_PROG_INSTALL
AC_PROG_MAKE_SET
AC_USE_SYSTEM_EXTENSIONS # replaces AC_AIX AC_GNU_SOURCE AC_MINIX
AC_C_BIGENDIAN
AC_C_INLINE
AC_C_RESTRICT
# Version Info:
# Current -- the current version number of this API
# Revision -- the revision of the implementation of the API version
# Age -- How many seqential past API versions is supported by
# this implementation
# Format => Current:Revision:Age
# Convenience macro:
# AC_BINDLE_LIBTOOL_VERSION_INFO(current, revision, age)
AC_BINDLE_LIBTOOL_VERSION_INFO(0, 0, 0)
# binary locations
AC_PATH_PROG([SHELL], sh bash, [AC_MSG_ERROR([missing "sh"])], [$PATH])
AC_CHECK_TOOLS(AR, ar gar, [AC_MSG_ERROR([missing binutil "ar"])])
AC_CHECK_TOOLS(LD, ld gld, [AC_MSG_ERROR([missing binutil "ld"])])
AC_CHECK_TOOLS(NM, nm gnm, [AC_MSG_ERROR([missing binutil "nm"])])
AC_CHECK_TOOLS(RANLIB, ranlib granlib, [AC_MSG_ERROR([missing binutil "ranlib"])])
AC_CHECK_TOOLS(STRIP, strip gstrip, [AC_MSG_ERROR([missing binutil "strip"])])
# shell programs
AC_PROG_AWK
AC_PROG_EGREP
AC_PROG_FGREP
#AM_PROG_LEX
AC_PROG_LN_S
AC_PROG_CPP
# check for common functions
AC_FUNC_FORK
AC_FUNC_MALLOC
AC_FUNC_REALLOC
AC_FUNC_STRERROR_R
AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK
# Type checks
AC_TYPE_INT8_T
AC_TYPE_INT16_T
AC_TYPE_INT32_T
AC_TYPE_INT64_T
AC_TYPE_MODE_T
AC_TYPE_OFF_T
AC_TYPE_SIZE_T
AC_TYPE_SSIZE_T
AC_TYPE_UID_T
AC_TYPE_UINT8_T
AC_TYPE_UINT16_T
AC_TYPE_UINT32_T
AC_TYPE_UINT64_T
# check for required functions
AC_CHECK_FUNCS([clock_gettime], [], [AC_MSG_ERROR([missing required functions])])
AC_CHECK_FUNCS([getcwd], [], [AC_MSG_ERROR([missing required functions])])
AC_CHECK_FUNCS([memset], [], [AC_MSG_ERROR([missing required functions])])
AC_CHECK_FUNCS([random], [], [AC_MSG_ERROR([missing required functions])])
AC_CHECK_FUNCS([socket], [], [AC_MSG_ERROR([missing required functions])])
AC_CHECK_FUNCS([srandom], [], [AC_MSG_ERROR([missing required functions])])
AC_CHECK_FUNCS([strcasecmp], [], [AC_MSG_ERROR([missing required functions])])
AC_CHECK_FUNCS([strchr], [], [AC_MSG_ERROR([missing required functions])])
AC_CHECK_FUNCS([strerror], [], [AC_MSG_ERROR([missing required functions])])
AC_CHECK_FUNCS([strncasecmp], [], [AC_MSG_ERROR([missing required functions])])
AC_CHECK_FUNCS([strrchr], [], [AC_MSG_ERROR([missing required functions])])
AC_CHECK_FUNCS([strtol], [], [AC_MSG_ERROR([missing required functions])])
AC_CHECK_FUNCS([strtoul], [], [AC_MSG_ERROR([missing required functions])])
AC_CHECK_FUNCS([strtoull], [], [AC_MSG_ERROR([missing required functions])])
AC_CHECK_FUNCS([strtoumax], [], [AC_MSG_ERROR([missing required functions])])
AC_CHECK_FUNCS([uname], [], [AC_MSG_ERROR([missing required functions])])
# check for headers
AC_CHECK_HEADERS([arpa/inet.h], [], [AC_MSG_ERROR([missing required headers])])
AC_CHECK_HEADERS([assert.h], [], [AC_MSG_ERROR([missing required headers])])
AC_CHECK_HEADERS([ctype.h], [], [AC_MSG_ERROR([missing required headers])])
AC_CHECK_HEADERS([errno.h], [], [AC_MSG_ERROR([missing required headers])])
AC_CHECK_HEADERS([fcntl.h], [], [AC_MSG_ERROR([missing required headers])])
AC_CHECK_HEADERS([features.h], [], [])
AC_CHECK_HEADERS([getopt.h], [], [AC_MSG_ERROR([missing required headers])])
AC_CHECK_HEADERS([inttypes.h], [], [AC_MSG_ERROR([missing required headers])])
AC_CHECK_HEADERS([limits.h], [], [AC_MSG_ERROR([missing required headers])])
AC_CHECK_HEADERS([netdb.h], [], [AC_MSG_ERROR([missing required headers])])
AC_CHECK_HEADERS([netinet/in.h], [], [AC_MSG_ERROR([missing required headers])])
AC_CHECK_HEADERS([stdarg.h], [], [AC_MSG_ERROR([missing required headers])])
AC_CHECK_HEADERS([stdatomic.h], [], [AC_MSG_ERROR([missing required headers])])
AC_CHECK_HEADERS([stddef.h], [], [AC_MSG_ERROR([missing required headers])])
AC_CHECK_HEADERS([stdint.h], [], [AC_MSG_ERROR([missing required headers])])
AC_CHECK_HEADERS([stdio.h], [], [AC_MSG_ERROR([missing required headers])])
AC_CHECK_HEADERS([stdlib.h], [], [AC_MSG_ERROR([missing required headers])])
AC_CHECK_HEADERS([string.h], [], [AC_MSG_ERROR([missing required headers])])
AC_CHECK_HEADERS([strings.h], [], [AC_MSG_ERROR([missing required headers])])
AC_CHECK_HEADERS([sys/ioctl.h], [], [AC_MSG_ERROR([missing required headers])])
AC_CHECK_HEADERS([sys/socket.h], [], [AC_MSG_ERROR([missing required headers])])
AC_CHECK_HEADERS([sys/time.h], [], [AC_MSG_ERROR([missing required headers])])
AC_CHECK_HEADERS([sys/types.h], [], [AC_MSG_ERROR([missing required headers])])
AC_CHECK_HEADERS([sys/stat.h], [], [AC_MSG_ERROR([missing required headers])])
AC_CHECK_HEADERS([syslog.h], [], [AC_MSG_ERROR([missing required headers])])
AC_CHECK_HEADERS([termios.h], [], [AC_MSG_ERROR([missing required headers])])
AC_CHECK_HEADERS([time.h], [], [AC_MSG_ERROR([missing required headers])])
AC_CHECK_HEADERS([unistd.h], [], [AC_MSG_ERROR([missing required headers])])
# check for data types
AC_CHECK_TYPES([atomic_intmax_t], [], [AC_MSG_ERROR([missing required data type])], [#include <stdatomic.h>])
AC_CHECK_TYPES([atomic_uintmax_t], [], [AC_MSG_ERROR([missing required data type])], [#include <stdatomic.h>])
# GNU Libtool Support
LT_INIT(dlopen disable-fast-install)
# initiates bindle tools macros
AC_BINDLE(contrib/bindletools)
# determine PACKAGE_VERSION via Git
AC_BINDLE_GIT_PACKAGE_VERSION([contrib/bindletools/build-aux/git-package-version.sh])
# custom configure options
AC_BINDLE_ENABLE_WARNINGS([-Wno-unknown-pragmas -Wno-missing-format-attribute -Wno-poison-system-directories], [], [c11])
AC_BINDLE_LIBBINDLE([tinytacb_])
AC_TINYTAC_OPENSSL
AC_TINYTAC_IPV4
AC_TINYTAC_IPV6
AC_TINYTAC_LIBTINYTAC
AC_TINYTAC_TINYTAC
AC_TINYTAC_EXAMPLES
AC_TINYTAC_DOCUMENTATION
# Creates outputs
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
# Show local config
AC_MSG_NOTICE([ ])
AC_MSG_NOTICE([ Tiny TACACS+ Client Library $GIT_PACKAGE_VERSION ($GIT_PACKAGE_BUILD)])
AC_MSG_NOTICE([ ])
AC_MSG_NOTICE([ Features:])
AC_MSG_NOTICE([ Debug Output ${USE_DEBUG}])
AC_MSG_NOTICE([ IPv4 Networking ${WITH_IPV4}])
AC_MSG_NOTICE([ IPv6 Networking ${WITH_IPV6}])
AC_MSG_NOTICE([ ])
AC_MSG_NOTICE([ Options:])
AC_MSG_NOTICE([ Build examples ${ENABLE_EXAMPLES}])
AC_MSG_NOTICE([ Install extra docs ${ENABLE_DOCUMENATION}])
AC_MSG_NOTICE([ Install libtinytac.la ${ENABLE_LIBTINYTAC}])
AC_MSG_NOTICE([ Install tinytac ${ENABLE_TINYTAC}])
AC_MSG_NOTICE([ ])
AC_MSG_NOTICE([ Please send suggestions to: $PACKAGE_BUGREPORT])
AC_MSG_NOTICE([ ])
AC_MSG_NOTICE([ run 'make all'])
AC_MSG_NOTICE([ ])
# end of configure.ac