[Bug 2178] New: Modify configure to define BROKEN_BSM_API on Solaris version > 11

bugzilla-daemon at mindrot.org bugzilla-daemon at mindrot.org
Fri Dec 6 21:31:57 EST 2013


https://bugzilla.mindrot.org/show_bug.cgi?id=2178

            Bug ID: 2178
           Summary: Modify configure to define BROKEN_BSM_API on Solaris
                    version > 11
           Product: Portable OpenSSH
           Version: 6.4p1
          Hardware: Sparc
                OS: Solaris
            Status: NEW
          Severity: enhancement
          Priority: P5
         Component: Build system
          Assignee: unassigned-bugs at mindrot.org
          Reporter: tomas.kuthan at oracle.com

Created attachment 2384
  --> https://bugzilla.mindrot.org/attachment.cgi?id=2384&action=edit
Modify configure to define BROKEN_BSM_API on Solaris version > 11

There is a code in audit-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.


More information about the openssh-bugs mailing list