Hi all,
attached you find a patch for OpenSSH 3.0.2p1 configure which enables OpenSSH
to again compile under ReliantUnix (due to utimes it is again needed to
include /usr/ucblib/libucb.a)
Sorry for not testing it before the release ;-(
Best regards
--
Udo Schweigert, Siemens AG | Voice : +49 89 636 42170
CT IC 3, Siemens CERT | Fax : +49 89 636 41166
D-81730 Muenchen / Germany | email : udo.schweigert at siemens.com
-------------- next part --------------
--- configure.ac.orig Sat Nov 3 20:09:33 2001
+++ configure.ac Tue Dec 11 17:38:26 2001
@@ -187,13 +187,12 @@
;;
*-sni-sysv*)
CPPFLAGS="$CPPFLAGS -I/usr/local/include"
- # /usr/ucblib MUST NOT be searched on ReliantUNIX
LDFLAGS="$LDFLAGS -L/usr/local/lib"
+ LIBS="$LIBS /usr/ucblib/libucb.a"
IPADDR_IN_DISPLAY=yes
AC_DEFINE(USE_PIPES)
AC_DEFINE(IP_TOS_IS_BROKEN)
AC_DEFINE(HAVE_BOGUS_SYS_QUEUE_H)
- # /usr/ucblib/libucb.a no longer needed on ReliantUNIX
# Attention: always take care to bind libsocket and libnsl before libc,
# otherwise you will find lots of "SIOCGPGRP errno 22" on syslog
;;
--- configure.orig Sun Dec 2 00:38:55 2001
+++ configure Tue Dec 11 08:29:06 2001
@@ -3732,8 +3732,8 @@
;;
*-sni-sysv*)
CPPFLAGS="$CPPFLAGS -I/usr/local/include"
- # /usr/ucblib MUST NOT be searched on ReliantUNIX
LDFLAGS="$LDFLAGS -L/usr/local/lib"
+ LIBS="$LIBS /usr/ucblib/libucb.a"
IPADDR_IN_DISPLAY=yes
cat >>confdefs.h <<\_ACEOF
#define USE_PIPES 1
@@ -3747,7 +3747,6 @@
#define HAVE_BOGUS_SYS_QUEUE_H 1
_ACEOF
- # /usr/ucblib/libucb.a no longer needed on ReliantUNIX
# Attention: always take care to bind libsocket and libnsl before libc,
# otherwise you will find lots of "SIOCGPGRP errno 22" on syslog
;;