OpenSSH 2.4?

Corinna Vinschen vinschen at redhat.com
Fri Feb 2 09:49:50 EST 2001


On Wed, Jan 31, 2001 at 05:32:23PM -0600, mouring at etoh.eviladmin.org wrote:
> Current list of problems I know of:
> 
> * Cray & HP/UX -- sigaction vs signal
> * SCO w/ native compiler -- No sftp-server due to lack of 64bit
> * NeXTStep -- Report it's broken, no verification yet. (No compile
> 		warnings)
> * DG/UX -- regcomp/regexec issues(?)
> 
> ?? More ??

Yep. The openbsd-compat subdirectory doesn't build if the builddir
is not the sourcedir:

/src/openssh/bin[41]$ make
(cd `dirname openbsd-compat/libopenbsd-compat.a`; make)
make[1]: Entering directory `/src/openssh/bin/openbsd-compat'
make[1]: *** No rule to make target `bsd-arc4random.o', needed by `libopenbsd-compat.a'.  Stop.
make[1]: Leaving directory `/src/openssh/bin/openbsd-compat'
make: *** [openbsd-compat/libopenbsd-compat.a] Error 2

Patch attached.

Corinna

-- 
Corinna Vinschen
Cygwin Developer
Red Hat, Inc.
mailto:vinschen at redhat.com
-------------- next part --------------
Index: Makefile.in
===================================================================
RCS file: /cvs/openssh_cvs/Makefile.in,v
retrieving revision 1.139
diff -u -p -r1.139 Makefile.in
--- Makefile.in	2001/02/01 14:06:11	1.139
+++ Makefile.in	2001/02/01 22:48:11
@@ -19,7 +19,7 @@ CC=@CC@
 LD=@LD@
 PATHS=-DETCDIR=\"$(sysconfdir)\" -D_PATH_SSH_PROGRAM=\"$(SSH_PROGRAM)\" -D_PATH_SSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\"
 CFLAGS=@CFLAGS@
-CPPFLAGS=@CPPFLAGS@ -I. -Iopenbsd-compat/ -I$(srcdir) $(PATHS) @DEFS@
+CPPFLAGS=@CPPFLAGS@ -I. -I$(srcdir)/openbsd-compat -I$(srcdir) $(PATHS) @DEFS@
 LIBS=@LIBS@
 AR=@AR@
 RANLIB=@RANLIB@
Index: openbsd-compat/Makefile.in
===================================================================
RCS file: /cvs/openssh_cvs/openbsd-compat/Makefile.in,v
retrieving revision 1.1
diff -u -p -r1.1 Makefile.in
--- openbsd-compat/Makefile.in	2001/01/31 21:52:03	1.1
+++ openbsd-compat/Makefile.in	2001/02/01 22:48:11
@@ -3,10 +3,11 @@ piddir=@piddir@
 srcdir=@srcdir@
 top_srcdir=@top_srcdir@
 
+VPATH=@srcdir@
 CC=@CC@
 LD=@LD@
 CFLAGS=@CFLAGS@
-CPPFLAGS=@CPPFLAGS@ -I. -I.. -I$(srcdir) @DEFS@
+CPPFLAGS=@CPPFLAGS@ -I. -I.. -I$(srcdir) -I$(srcdir)/.. @DEFS@
 LIBS=@LIBS@
 AR=@AR@
 RANLIB=@RANLIB@


More information about the openssh-unix-dev mailing list