summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-01-17 19:22:36 +1100
committerDamien Miller <djm@mindrot.org>2000-01-17 19:22:36 +1100
commitd426ed6e51b1802e2d47a5ed291232a659dc251a (patch)
treed427acfbe9526a57d4c7bf9894504a7d448e4dcf /configure.in
parent19fe9c7fd8e4a0e68f943f86b8164683fe327479 (diff)
- Fix --with-ipaddr-display option test. Fix from Jarno Huuskonen
<jhuuskon@hytti.uku.fi>
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 7b8b46b42..7c0b1491b 100644
--- a/configure.in
+++ b/configure.in
@@ -636,7 +636,7 @@ dnl Use ip address instead of hostname in $DISPLAY
636AC_ARG_WITH(ipaddr-display, 636AC_ARG_WITH(ipaddr-display,
637 [ --with-ipaddr-display Use ip address instead of hostname in \$DISPLAY], 637 [ --with-ipaddr-display Use ip address instead of hostname in \$DISPLAY],
638 [ 638 [
639 if test "x$withval" = "xno" ; then 639 if test "x$withval" != "xno" ; then
640 AC_DEFINE(IPADDR_IN_DISPLAY) 640 AC_DEFINE(IPADDR_IN_DISPLAY)
641 fi 641 fi
642 ] 642 ]