Lets try this push again.. 2.5.1p2 bugs left.

Tim Rice tim at multitalents.net
Fri Feb 23 15:01:01 EST 2001


On Thu, 22 Feb 2001 mouring at etoh.eviladmin.org wrote:

> Anything else I'm missing for brokeness that was introduced between 
> 2.3.0p1 and 2.5.1p1 that needs to be corrected?  I'm expecting that
> 2.5.1p2 will stand for a long time.  So speak up now.  I want to put p2
> to rest with the next week and half so we can catch back up with the
> OpenBSD tree and head on to bigger and better problems. =) 
> 
Here is a patch to fix double -I
Preprocessor flags:  -I/usr/local/include -I/usr/local/ssl/include -I/usr/local/
ssl/include
> 

-- 
Tim Rice				Multitalents	(707) 887-1469
tim at multitalents.net

-------------- next part --------------
--- openssh_cvs/configure.in.old	Thu Feb 22 15:42:00 2001
+++ openssh_cvs/configure.in	Thu Feb 22 16:00:03 2001
@@ -619,9 +619,9 @@
 			# Try to use $ssldir/include if it exists, otherwise 
 			# $ssldir
 			if test -d "$ssldir/include" ; then
-				CPPFLAGS="$CPPFLAGS -I$ssldir/include"
+				CPPFLAGS="$saved_CPPFLAGS -I$ssldir/include"
 			else
-				CPPFLAGS="$CPPFLAGS -I$ssldir"
+				CPPFLAGS="$saved_CPPFLAGS -I$ssldir"
 			fi
 		fi
 
@@ -681,9 +681,9 @@
 		# Try to use $ssldir/include if it exists, otherwise 
 		# $ssldir
 		if test -d "$ssldir/include" ; then
-			CPPFLAGS="$CPPFLAGS -I$ssldir/include"
+			CPPFLAGS="$saved_CPPFLAGS -I$ssldir/include"
 		else
-			CPPFLAGS="$CPPFLAGS -I$ssldir"
+			CPPFLAGS="$saved_CPPFLAGS -I$ssldir"
 		fi
 	fi
 fi


More information about the openssh-unix-dev mailing list