Typo in configure.in

Pavel Roskin proski at gnu.org
Thu Oct 26 03:20:53 EST 2000


Hello!

In configure.in from openssh-2.2.0p1 you are using $xno and $xyes several
times. However, those variables are not defined. I guess you mean literals
"xno" and "xyes" in all those cases.

If that's correct please apply the patch at the end of this message.

Regards,
Pavel Roskin

_____________________
--- configure.in	Wed Aug 30 18:20:05 2000
+++ configure.in	Wed Oct 25 12:17:19 2000
@@ -326,7 +326,7 @@
 AC_ARG_WITH(ssl-dir,
 	[  --with-ssl-dir=PATH     Specify path to OpenSSL installation ],
 	[
-		if test "x$withval" != "$xno" ; then
+		if test "x$withval" != "xno" ; then
 			tryssldir=$withval
 		fi
 	]
@@ -824,7 +824,7 @@
 AC_ARG_WITH(xauth,
 	[  --with-xauth=PATH       Specify path to xauth program ],
 	[
-		if test "x$withval" != "$xno" ; then
+		if test "x$withval" != "xno" ; then
 			xauth_path=$withval
 		fi
 	],
@@ -950,7 +950,7 @@
 	[
 		if test "x$withval" != "xno" ; then
 	
-			if test "x$withval" != "$xyes" ; then
+			if test "x$withval" != "xyes" ; then
 				CFLAGS="$CFLAGS -I${withval}/include"
 				LDFLAGS="$LDFLAGS -L${withval}/lib"
 				if test ! -z "$need_dash_r" ; then
@@ -990,7 +990,7 @@
 	[
 		if test "x$withval" != "xno" ; then
 
-			if test "x$withval" != "$xyes" ; then
+			if test "x$withval" != "xyes" ; then
 				CFLAGS="$CFLAGS -I${withval}/include"
 				LFLAGS="$LFLAGS -L${withval}/lib"
 			fi
_____________________






More information about the openssh-unix-dev mailing list