OpenSSH 2.4?

Tim Rice tim at multitalents.net
Fri Feb 2 16:52:58 EST 2001


On Wed, 31 Jan 2001 mouring at etoh.eviladmin.org wrote:

[snip]
> BTW.. I just commited a reorder patch.  All the bsd-*, fake-*, next-*,
> and cygwin* files have been moved to openbsd-compat/.  (Something I've
> been wanting to do for months <smile>.)  So if anyone has problems let
> me know.

Here is a patch for Makefile.in that changes make to $(MAKE)
for those of us that use gmake because our make is broken

> 
> 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(?)

Don't forget the test -S problem.

> 
> ?? More ??
> 
> - Ben
> 
> 

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

-------------- next part --------------
--- Makefile.in.old	Thu Feb  1 16:00:54 2001
+++ Makefile.in	Thu Feb  1 21:45:50 2001
@@ -79,7 +79,7 @@
 
 LIBCOMPAT=openbsd-compat/libopenbsd-compat.a
 $(LIBCOMPAT): 
-	(cd `dirname $@`; make)
+	(cd `dirname $@`; $(MAKE))
 
 libssh.a: $(LIBSSH_OBJS)
 	$(AR) rv $@ $(LIBSSH_OBJS)
@@ -117,12 +117,12 @@
 	$(FIXPATHSCMD) $(srcdir)/$@
 
 clean:
-	(cd openbsd-compat; make clean)
+	(cd openbsd-compat; $(MAKE) clean)
 	rm -f *.o *.a $(TARGETS) logintest config.cache config.log 
 	rm -f *.out core
 
 distclean: clean
-	(cd openbsd-compat; make distclean)
+	(cd openbsd-compat; $(MAKE) distclean)
 	rm -f Makefile config.h config.status ssh_prng_cmds *~
 
 mrproper: distclean


More information about the openssh-unix-dev mailing list