diff options
author | Tim Rice <tim@multitalents.net> | 2001-10-27 19:45:36 +0200 |
---|---|---|
committer | Tim Rice <tim@multitalents.net> | 2001-10-27 19:45:36 +0200 |
commit | ffdf4aa10f59d540003b17877d174982ef3cfe43 (patch) | |
tree | 58d10bdb438fe6267bd0bd4a1ff9887e00e012f8 /configure.ac | |
parent | Fix install: when building outside of source (diff) | |
download | openssh-ffdf4aa10f59d540003b17877d174982ef3cfe43.tar.xz openssh-ffdf4aa10f59d540003b17877d174982ef3cfe43.zip |
[configure.ac] Fixes for ReliantUNIX (don't use libucb)
Patch by Robert Dahlem <Robert.Dahlem@siemens.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 10cca440c..39654a270 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -# $Id: configure.ac,v 1.2 2001/10/25 17:01:31 tim Exp $ +# $Id: configure.ac,v 1.3 2001/10/27 17:45:37 tim Exp $ AC_INIT AC_CONFIG_SRCDIR([ssh.c]) @@ -187,12 +187,15 @@ mips-sony-bsd|mips-sony-newsos4) ;; *-sni-sysv*) CPPFLAGS="$CPPFLAGS -I/usr/local/include" - LDFLAGS="$LDFLAGS -L/usr/local/lib -L/usr/ucblib" + # /usr/ucblib MUST NOT be searched on ReliantUNIX + LDFLAGS="$LDFLAGS -L/usr/local/lib" IPADDR_IN_DISPLAY=yes AC_DEFINE(USE_PIPES) AC_DEFINE(IP_TOS_IS_BROKEN) AC_DEFINE(HAVE_BOGUS_SYS_QUEUE_H) - LIBS="$LIBS -lgen -lnsl -lucb" + # /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 ;; *-*-sysv4.2*) CPPFLAGS="$CPPFLAGS -I/usr/local/include" |