-
Notifications
You must be signed in to change notification settings - Fork 5
/
configure.ac
217 lines (190 loc) · 5.82 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
dnl configure.in
dnl
dnl $Id: configure.ac,v 1.3 2004/03/16 01:51:40 jp Exp $
dnl
dnl Copyright (c) 2001 Jean-Pierre Lefebvre <[email protected]>
dnl and Remi Lefebvre <[email protected]>
dnl
dnl atftp is free software; you can redistribute them and/or modify them
dnl under the terms of the GNU General Public License as published by the
dnl Free Software Foundation; either version 2 of the License, or (at your
dnl option) any later version.
AC_INIT([atftp],[0.8.0])
AC_CONFIG_SRCDIR([tftp.c])
AM_INIT_AUTOMAKE
AC_SUBST(VERSION)
AC_CONFIG_HEADERS(config.h)
ISODATE=`date +%Y-%m-%d`
AC_SUBST(ISODATE)
dnl canonicalize the host
AC_CANONICAL_HOST
dnl AC_CANONICAL_TARGET
PLATFORM="${host_vendor}-${host_cpu}-${host_os}"
AC_SUBST(PLATFORM)
dnl Additional argument
AC_ARG_ENABLE(libreadline,
[ --enable-libreadline enable readline support in client],
[ case "${enableval}" in
yes) libreadline=true ;;
no) libreadline=false ;;
esac], [libreadline=true])
AC_ARG_ENABLE(libwrap,
[ --enable-libwrap enable libwrap support in server],
[ case "${enableval}" in
yes) libwrap=true ;;
no) libwrap=false ;;
esac], [libwrap=true])
AC_ARG_ENABLE(libpcre,
[ --enable-libpcre enable libpcre2 support in server],
[ case "${enableval}" in
yes) libpcre=true ;;
no) libpcre=false ;;
esac], [libpcre=true])
AC_ARG_ENABLE(mtftp,
[ --enable-mtftp enable mtftp support in server],
[ case "${enableval}" in
yes) mtftp=true ;;
no) mtftp=false ;;
esac], [mtftp=true])
AC_ARG_ENABLE(debug,
[ --enable-debug enable debug code in server/client],
[ case "${enableval}" in
yes) debug=true ;;
no) debug=false ;;
esac], [debug=false])
dnl Check for programs
AC_PROG_CC
AC_GNU_SOURCE
dnl Check for AIX
AC_AIX
CFLAGS="$CFLAGS -g -Wall -D_REENTRANT"
if test x$debug = xtrue; then
CFLAGS="$CFLAGS -O0 -DDEBUG"
else
if test -n "$auto_cflags"; then
if test -n "$GCC"; then
CFLAGS="$CFLAGS -g -O2 -Wall -Wno-implicit"
else
case "$host_os" in
*hpux*) CFLAGS="$CFLAGS +O3"
;;
*ultrix* | *osf*) CFLAGS="$CFLAGS -O -Olimit 2000"
;;
*) CFLAGS="$CFLAGS -O2"
;;
esac
fi
else
CFLAGS="$CFLAGS -O2"
fi
fi
case "$CC" in
gcc*|clang*) CFLAGS="$CFLAGS -std=gnu89"
;;
esac
AC_PROG_MAKE_SET
AC_PROG_INSTALL
dnl enable mtftp support
if test x$mtftp = xtrue; then
AC_DEFINE([HAVE_MTFTP], 1, "Support MTFTP protocol")
fi
dnl Checks for libraries
dnl Thread support is needed in the server
AC_CHECK_LIB(pthread, pthread_create, [LIBPTHREAD=-lpthread],
[AC_MSG_ERROR(not found)])
AC_SUBST(LIBPTHREAD)
dnl If we want libreadline support
if test x$libreadline = xtrue; then
dnl Debian's readline is already linked to ncurses. It is not the case for
dnl all other systems.
AC_CHECK_LIB(readline, tgetent, LIBTERMCAP="",
AC_CHECK_LIB(ncurses, tgetent, LIBTERMCAP=-lncurses,
AC_CHECK_LIB(curses, tgetent, LIBTERMCAP=-lcurses,
AC_CHECK_LIB(termcap, tgetent, LIBTERMCAP=-ltermcap,
AC_MSG_RESULT(no)))))
AC_SUBST(LIBTERMCAP)
dnl Check for readline
AC_CHECK_LIB(readline, readline,
[LIBREADLINE=-lreadline]
[AC_DEFINE([HAVE_READLINE], 1,
"Support for readline in tftp client")],
AC_MSG_RESULT(no), $LIBTERMCAP)
AC_SUBST(LIBREADLINE)
dnl Verify readline has completion support (this function changes from
dnl release to release :(
AC_CHECK_LIB(readline, rl_completion_matches,
AC_DEFINE([HAVE_RL_COMPLETION_MATCHES], 1, "Use completion"),
AC_CHECK_LIB(readline, completion_matches,
AC_DEFINE([HAVE_COMPLETION_MATCHES], 1,
"Use completion"),
AC_MSG_RESULT(no), $LIBTERMCAP),
$LIBTERMCAP)
fi
dnl If we want to compile libwrap stuff, check for libraries
if test x$libwrap = xtrue; then
dnl Checking to libwrap. Some systems don't define default values for
dnl allow_severity and deny_severity so we need a somewhat more complicated
dnl test here. We automatically link against nsl since libwrap is not
dnl already linked with it on all systems.
orig_LIBS="$LIBS"
LIBS="-lnsl -lwrap"
AC_MSG_CHECKING([for hosts_ctl in -lwrap])
AC_TRY_LINK([
#include <tcpd.h>
int allow_severity;
int deny_severity;
],
hosts_ctl("", STRING_UNKNOWN, STRING_UNKNOWN, STRING_UNKNOWN);
,
LIBWRAP="-lnsl -lwrap"
LIBS="$orig_LIBS"
AC_MSG_RESULT(yes)
AC_DEFINE([HAVE_WRAP], 1, "Support for libwrap")
,
LIBWRAP=""
LIBS="$orig_LIBS"
AC_MSG_RESULT(no)
)
AC_SUBST(LIBWRAP)
fi
dnl If we want to compile pcre2 stuff, check for libraries
if test x$libpcre = xtrue; then
dnl Checking to pcre2.
AC_CHECK_LIB(pcre2-8, pcre2_config_8,
[LIBPCRE=-lpcre2-8]
[AC_DEFINE([HAVE_PCRE], 1,
"Support for libpcre2 pattern substitution")])
AC_SUBST(LIBPCRE)
fi
dnl Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS(sys/time.h sys/types.h sys/socket.h)
AC_CHECK_HEADERS(arpa/inet.h arpa/tftp.h)
AC_CHECK_HEADERS(getopt.h unistd.h signal.h pthread.h argz.h)
AC_CHECK_HEADERS(netdb.h)
AC_CHECK_HEADERS(readline/readline.h)
AC_CHECK_HEADERS(readline/history.h)
if test x$libwrap = xtrue; then
AC_CHECK_HEADERS(tcpd.h)
fi
if test x$libpcre = xtrue; then
AC_CHECK_HEADERS([pcre2.h],[],[],[#define PCRE2_CODE_UNIT_WIDTH 8])
fi
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_TYPE_SIZE_T
AC_HEADER_TIME
AC_TYPE_SIGNAL
dnl Checks for library functions.
AC_CHECK_FUNCS(strchr memcpy strstr strcmp strncmp strncpy strlen)
AC_CHECK_FUNCS(strncasecmp strcasecmp strncmp)
AC_CHECK_FUNCS(socket gethostbyname gethostbyname_r gethostbyaddr)
dnl Write platform to file for support reporting
AC_OUTPUT_COMMANDS([
outfile=PLATFORM
tmpfile=${outfile}
cat > $tmpfile << _EOF_
$PLATFORM
_EOF_
], [PLATFORM=$PLATFORM])
AC_OUTPUT(Makefile test/Makefile redhat/atftp.spec)