|
Lines 518-523
main() { if (NSVersionOfRunTimeLibrary("
Link Here
|
| 518 |
AC_DEFINE(SSH_TUN_PREPEND_AF, 1, |
518 |
AC_DEFINE(SSH_TUN_PREPEND_AF, 1, |
| 519 |
[Prepend the address family to IP tunnel traffic]) |
519 |
[Prepend the address family to IP tunnel traffic]) |
| 520 |
fi |
520 |
fi |
|
|
521 |
# transparent dynamic port forwarding |
| 522 |
AC_CHECK_HEADERS([linux/netfilter_ipv4.h], [], [], |
| 523 |
[ #include <limits.h> ]) |
| 524 |
AC_CHECK_DECL(SO_ORIGINAL_DST, |
| 525 |
[ |
| 526 |
TRANSPROXY=netfilter |
| 527 |
AC_DEFINE(TRANSPARENT_PROXY_NETFILTER, 1, |
| 528 |
[Transparent redirection support via netfilter]) |
| 529 |
], [], |
| 530 |
[AC_LANG_SOURCE([[ |
| 531 |
#include <limits.h> |
| 532 |
#include <linux/netfilter_ipv4.h> |
| 533 |
]])]) |
| 521 |
;; |
534 |
;; |
| 522 |
mips-sony-bsd|mips-sony-newsos4) |
535 |
mips-sony-bsd|mips-sony-newsos4) |
| 523 |
AC_DEFINE(NEED_SETPGRP, 1, [Need setpgrp to acquire controlling tty]) |
536 |
AC_DEFINE(NEED_SETPGRP, 1, [Need setpgrp to acquire controlling tty]) |
|
Lines 562-567
mips-sony-bsd|mips-sony-newsos4)
Link Here
|
| 562 |
AC_DEFINE(SSH_TUN_OPENBSD, 1, [Open tunnel devices the OpenBSD way]) |
575 |
AC_DEFINE(SSH_TUN_OPENBSD, 1, [Open tunnel devices the OpenBSD way]) |
| 563 |
AC_DEFINE(SYSLOG_R_SAFE_IN_SIGHAND, 1, |
576 |
AC_DEFINE(SYSLOG_R_SAFE_IN_SIGHAND, 1, |
| 564 |
[syslog_r function is safe to use in in a signal handler]) |
577 |
[syslog_r function is safe to use in in a signal handler]) |
|
|
578 |
AC_CHECK_HEADERS([net/pfvar.h], [ |
| 579 |
TRANSPROXY=pf |
| 580 |
AC_DEFINE(TRANSPARENT_PROXY_PF, 1, |
| 581 |
[Transparent redirection support via pf]) |
| 582 |
], [], [AC_LANG_SOURCE([[ |
| 583 |
#include <sys/types.h> |
| 584 |
#include <sys/socket.h> |
| 585 |
#include <sys/ioctl.h> |
| 586 |
#include <sys/fcntl.h> |
| 587 |
#include <net/if.h> |
| 588 |
#include <netinet/in.h> |
| 589 |
#include <net/pfvar.h> |
| 590 |
]])]) |
| 565 |
;; |
591 |
;; |
| 566 |
*-*-solaris*) |
592 |
*-*-solaris*) |
| 567 |
if test "x$withval" != "xno" ; then |
593 |
if test "x$withval" != "xno" ; then |
|
Lines 3989-3994
echo " TCP Wrappers support
Link Here
|
| 3989 |
echo " MD5 password support: $MD5_MSG" |
4015 |
echo " MD5 password support: $MD5_MSG" |
| 3990 |
echo " libedit support: $LIBEDIT_MSG" |
4016 |
echo " libedit support: $LIBEDIT_MSG" |
| 3991 |
echo " Solaris process contract support: $SPC_MSG" |
4017 |
echo " Solaris process contract support: $SPC_MSG" |
|
|
4018 |
if test ! -z "$TRANSPROXY" ; then |
| 4019 |
echo " Transparent proxy support: $TRANSPROXY" |
| 4020 |
fi |
| 3992 |
echo " IP address in \$DISPLAY hack: $DISPLAY_HACK_MSG" |
4021 |
echo " IP address in \$DISPLAY hack: $DISPLAY_HACK_MSG" |
| 3993 |
echo " Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG" |
4022 |
echo " Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG" |
| 3994 |
echo " BSD Auth support: $BSD_AUTH_MSG" |
4023 |
echo " BSD Auth support: $BSD_AUTH_MSG" |