search for: sol2ver

Displaying 5 results from an estimated 5 matches for "sol2ver".

Did you mean: oliver
2002 Mar 08
1
Solaris 2.6 needs '#define HAVE_BOGUS_SYS_QUEUE_H 1' to build OpenSSH 3.1p1
...et OpenSSH 3.1p1 to properly build under Solaris 2.6. Without it, the system <sys/queue.h> is included rather than using the openbsd-compat/fake-queue.h and the various TAILQ_* macros are not defined. I suspect that the configure.ac file needs to be updated to add the lines: if test "$sol2ver" -eq 6; then AC_DEFINE(HAVE_BOGUS_SYS_QUEUE_H) fi under the *-*-solaris* entry. -- Mark
2013 Dec 06
4
[Bug 2178] New: Modify configure to define BROKEN_BSM_API on Solaris version > 11
...it-bsm.c to deal with Solaris 11 API changes in audit. This code is guarded by BROKEN_BSM_API defines. configure defines this symbol iff Solaris version equals 11. Attached patch based on 6.4p1 modifies configure.ac and configure, changing the equality for greater-or-equal: - if test "$sol2ver" -eq 11; then + if test "$sol2ver" -ge 11; then -- You are receiving this mail because: You are watching the assignee of the bug.
2006 Jul 17
2
SMF/process contracts in Solaris 10
I've searched the archive for this mailing list and the bug list for OpenSSH for this, and I'm finding nothing. I'd appreciate it if somoene could point me to an existing thread about this. (I know that other people are aware of the problem, though, so I'm a bit surprised to find nothing.) We're running OpenSSH under Solaris 10 using SMF instead of a legacy init script. SMF
2000 Aug 26
0
New chroot patch, for 2.1.1p4
...echo $ac_n "checking for obsolete utmp and wtmp in solaris2.x""... $ac_c" 1>&6 -echo "configure:1378: checking for obsolete utmp and wtmp in solaris2.x" >&5 +echo "configure:1380: checking for obsolete utmp and wtmp in solaris2.x" >&5 sol2ver=`echo "$host"| sed -e 's/.*[0-9]\.//'` if test "$sol2ver" -ge 8; then echo "$ac_t""yes" 1>&6 @@ -1395,12 +1397,12 @@ for ac_func in getpwanam do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "...
2000 Oct 04
0
2.2.0p1 chroot patch
...echo $ac_n "checking for obsolete utmp and wtmp in solaris2.x""... $ac_c" 1>&6 -echo "configure:1433: checking for obsolete utmp and wtmp in solaris2.x" >&5 +echo "configure:1435: checking for obsolete utmp and wtmp in solaris2.x" >&5 sol2ver=`echo "$host"| sed -e 's/.*[0-9]\.//'` if test "$sol2ver" -ge 8; then echo "$ac_t""yes" 1>&6 @@ -1450,12 +1452,12 @@ for ac_func in getpwanam do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "...