- Fix --with-ipaddr-display option test. Fix from Jarno Huuskonen

<jhuuskon@hytti.uku.fi>
This commit is contained in:
Damien Miller 2000-01-17 19:22:36 +11:00
parent 19fe9c7fd8
commit d426ed6e51
3 changed files with 4 additions and 1 deletions

View File

@ -16,6 +16,7 @@ David Rankin <drankin@bohemians.lexington.ky.us> - libwrap, NetBSD fixes
Gary E. Miller <gem@rellim.com> - SCO support Gary E. Miller <gem@rellim.com> - SCO support
Holger Trapp <Holger.Trapp@Informatik.TU-Chemnitz.DE> - KRB4/AFS config patch Holger Trapp <Holger.Trapp@Informatik.TU-Chemnitz.DE> - KRB4/AFS config patch
Jani Hakala <jahakala@cc.jyu.fi> - Patches Jani Hakala <jahakala@cc.jyu.fi> - Patches
Jarno Huuskonen <jhuuskon@hytti.uku.fi> - Bugfixes
Jim Knoble <jmknoble@pobox.com> - Many patches Jim Knoble <jmknoble@pobox.com> - Many patches
jonchen (email unknown) - the original author of PAM support of SSH jonchen (email unknown) - the original author of PAM support of SSH
Juergen Keil <jk@tools.de> - scp bugfixing Juergen Keil <jk@tools.de> - scp bugfixing

View File

@ -10,6 +10,8 @@
- Released 1.2.1pre27 - Released 1.2.1pre27
- Fix rresvport_af failure errors (logic error in bsd-bindresvport.c) - Fix rresvport_af failure errors (logic error in bsd-bindresvport.c)
- Fix --with-ipaddr-display option test. Fix from Jarno Huuskonen
<jhuuskon@hytti.uku.fi>
20000116 20000116
- Renamed --with-xauth-path to --with-xauth - Renamed --with-xauth-path to --with-xauth

View File

@ -636,7 +636,7 @@ dnl Use ip address instead of hostname in $DISPLAY
AC_ARG_WITH(ipaddr-display, AC_ARG_WITH(ipaddr-display,
[ --with-ipaddr-display Use ip address instead of hostname in \$DISPLAY], [ --with-ipaddr-display Use ip address instead of hostname in \$DISPLAY],
[ [
if test "x$withval" = "xno" ; then if test "x$withval" != "xno" ; then
AC_DEFINE(IPADDR_IN_DISPLAY) AC_DEFINE(IPADDR_IN_DISPLAY)
fi fi
] ]