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 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
|
AC_INIT(pptpmanager.c)
AM_CONFIG_HEADER(config.h)
AM_INIT_AUTOMAKE(pptpd,1.3.4)
# check common command line options early
AC_DEFINE(PPP_BINARY, "/usr/sbin/pppd")
AC_MSG_CHECKING(command line for use of BSD PPP)
AC_ARG_WITH(bsdppp,
[ --with-bsdppp Use BSD user-space ppp ],
[
case "$withval" in
yes)
AC_MSG_RESULT(BSD user-space ppp)
AC_DEFINE(BSDUSER_PPP)
BSDUSER_PPP=$with_bsdppp
AC_DEFINE(PPP_BINARY, "/usr/sbin/ppp")
break;
;;
no)
AC_MSG_RESULT(explicit standard pppd)
;;
*)
# only yes or no are expected for this option
AC_MSG_RESULT(unrecognised... terminating)
exit 1
;;
esac
], [AC_MSG_RESULT(default standard pppd)])
AC_MSG_CHECKING(command line for use of SLIRP)
AC_ARG_WITH(slirp,
[ --with-slirp Use SLIRP instead of pppd ],
[
case "$withval" in
yes)
AC_MSG_RESULT(yes)
AC_DEFINE(SLIRP)
SLIRP=$with_slirp
AC_DEFINE(PPP_BINARY, "/bin/slirp")
break;
;;
no)
AC_MSG_RESULT(explicit no)
;;
*)
# only yes or no are expected for this option
AC_MSG_RESULT(unrecognised... terminating)
exit 1
;;
esac
], [AC_MSG_RESULT(default no)])
AC_MSG_CHECKING(command line for syslog facility name)
AC_ARG_ENABLE(facility,
[ --enable-facility=name Use another syslog facility, default LOG_DAEMON ],
[
AC_MSG_RESULT($enableval)
AC_DEFINE_UNQUOTED(PPTP_FACILITY, $enableval)
],
[
AC_MSG_RESULT(default LOG_DAEMON)
AC_DEFINE_UNQUOTED(PPTP_FACILITY, LOG_DAEMON)
])
AC_MSG_CHECKING(command line for bcrelay build)
AC_ARG_ENABLE(bcrelay,
[ --enable-bcrelay Enable broadcast relay function ],
[
case "$enableval" in
yes)
AC_MSG_RESULT(yes)
AC_DEFINE(BCRELAY)
BCRELAY=$enableval
break;
;;
no)
AC_MSG_RESULT(explicit no)
;;
*)
# only yes or no are expected for this option
AC_MSG_RESULT(unrecognised... terminating)
exit 1
;;
esac
], [AC_MSG_RESULT(default no)])
AC_PROG_CC
AC_PROG_RANLIB
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_C_CONST
AC_C_INLINE
AC_EXEEXT
AC_OBJEXT
AC_SYS_INTERPRETER
AC_CHECK_FUNCS(setsid daemon setproctitle getservbyname strlcpy fork memmove strerror writev)
AC_CHECK_HEADERS(pty.h)
AC_CHECK_HEADERS(string.h)
AC_CHECK_HEADERS(syslog.h)
AC_CHECK_HEADERS(libintl.h)
AC_CHECK_HEADERS(libutil.h)
AC_CHECK_HEADERS(sys/uio.h)
AC_CHECK_TYPE(size_t, unsigned int)
AC_CHECK_TYPE(ssize_t, int)
AC_CHECK_TYPE(u_int8_t, unsigned char)
AC_CHECK_TYPE(u_int16_t, unsigned short)
AC_CHECK_TYPE(u_int32_t, unsigned int)
dnl Check for type in sys/socket.h - from Squid source (GPL)
AC_CACHE_CHECK(for socklen_t, ac_cv_type_socklen_t, [
AC_EGREP_CPP([socklen_t[^a-zA-Z_0-9]], [#include <sys/types.h>
#include <sys/socket.h>
#if STDC_HEADERS
#include <stdlib.h>
#include <stddef.h>
#endif],
ac_cv_type_socklen_t=yes,
ac_cv_type_socklen_t=no)
])
if test $ac_cv_type_socklen_t = no; then
AC_DEFINE(socklen_t, int)
fi
dnl Check for libwrap (black magic check)
AC_ARG_WITH(libwrap,
[ --with-libwrap Use libwrap (tcp wrappers) ],
[
if test "$with_libwrap" = "yes"; then
XYZZY_LIBS="$LIBS"
AC_MSG_CHECKING(for libwrap alone)
LIBS="$XYZZY_LIBS -lwrap"
AC_TRY_LINK([ int allow_severity, deny_severity; ],
[ hosts_access(); ],
[ AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_LIBWRAP)
LIBWRAP="yes"
XTRALIBS_MGR="-lwrap" ],
[ AC_MSG_RESULT(no)
LIBS="$XYZZY_LIBS -lwrap -lnsl"
AC_MSG_CHECKING(for libwrap with libnsl)
AC_TRY_LINK([ int allow_severity, deny_severity; ],
[ hosts_access(); ],
[ AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_LIBWRAP)
LIBWRAP="yes"
XTRALIBS_MGR="-lwrap -lnsl" ],
[ AC_MSG_RESULT(no) ])
])
LIBS="$XYZZY_LIBS"
fi
])
dnl More ugliness; -lnsl, -lutil and -lsocket
XYZZY_LIBS="$LIBS"
AC_CHECK_LIB(c, accept)
AC_CHECK_LIB(c, gethostbyname)
AC_CHECK_LIB(c, openpty)
AC_CHECK_LIB(c, gettext)
AC_CHECK_LIB(socket, accept)
AC_CHECK_LIB(nsl, gethostbyname)
AC_CHECK_LIB(util, openpty)
AC_CHECK_LIB(intl, gettext)
LIBS="$XYZZY_LIBS"
if test "$ac_cv_lib_c_accept" = no; then
if test "$ac_cv_lib_socket_accept" = yes; then
LIBS="$LIBS -lsocket"
else
echo "Couldn't find a usable accept!" 1>&2
exit 1
fi
fi
if test "$ac_cv_lib_c_gethostbyname" = no; then
if test "$ac_cv_lib_nsl_gethostbyname" = yes; then
LIBS="$LIBS -lnsl"
if test "$XTRALIBS_MGR" = "-lwrap -lnsl"; then
XTRALIBS_MGR="-lwrap"
fi
else
echo "Couldn't find a usable gethostbyname!" 1>&2
exit 1
fi
fi
if test "$ac_cv_lib_c_openpty" = yes; then
AC_DEFINE(HAVE_OPENPTY)
else
if test "$ac_cv_lib_util_openpty" = yes; then
AC_DEFINE(HAVE_OPENPTY)
XTRALIBS_CTRL="-lutil"
fi
fi
if test "$ac_cv_header_libintl_h" = yes; then
if test "$ac_cv_lib_c_gettext" = no; then
if test "$ac_cv_lib_intl_gettext" = yes; then
XTRALIBS_MGR = "$XTRALIBS_MGR -lintl"
else
echo "Have libintl.h but no usable gettext!" 1>&2
exit 1
fi
fi
fi
AC_SUBST(XTRALIBS_CTRL)
AC_SUBST(XTRALIBS_MGR)
AC_SUBST(HAVE_OPENPTY)
if test "$BCRELAY" = "yes"; then
if test "$BCRELAY" = "yes"; then
XTRA_PROG="bcrelay"
true
else
echo "No BCrelay selected." 1>&2
fi
fi
AC_SUBST(XTRA_PROG)
echo '==============================================================================='
echo 'Configuration chosen:'
echo -n ' PPPd: '
if test "$BSDUSER_PPP" = "yes"; then
echo 'BSD user-space PPPd.'
else
if test "$SLIRP" = "yes"; then
echo 'SLIRP.'
else
echo 'Standard.'
fi
fi
echo -n ' LIBWRAP security: '
if test "$LIBWRAP" = "yes"; then
echo 'Yes.'
else
echo 'No.'
fi
echo -n ' Broadcast Relay: '
if test "$BCRELAY" = "yes"; then
echo 'Yes.'
else
echo 'No.'
fi
AC_CACHE_SAVE
AC_OUTPUT(Makefile)
|