Skip to content

Build fails with libressl 2.7.x #105

@dropwhile

Description

@dropwhile

netatalk currently fails to build with libressl > 2.7.0

I believe a change is required to etc/uams/openssl_compat.h

Currently:

#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) 

I think this is appropriate:

#if OPENSSL_VERSION_NUMBER < 0x10100000L || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x2070000fL)

Once changed, build is successful for me.

ref: my freebsd-ports bug report

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions