Changes between Initial Version and Version 1 of Ticket #63916, comment 1


Ignore:
Timestamp:
Nov 12, 2021, 4:20:34 AM (3 years ago)
Author:
reneeotten (Renee Otten)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #63916, comment 1

    initial v1  
    11I think the sip here is a red herring. It seems to me that the issue is with {{{pdal}}}, there are all kind of references to {{{Referenced from: /opt/local/lib/libpdalcpp.12.dylib}}} in the build log and indeed also to {{{openssl}}} (e.g., {{{#define PDAL_VERSION_MAJOR "dyld: Library not loaded: /opt/local/lib/libssl.1.1.dylib}}}.
    22
    3 I think the issue is that {{{pdal}}} does not declare a dependency on OpenSSL, but does link to it; so please try to add a dependency on {{{openssl}}}, revbump the port and rebuild it first before installing {{{qgis3}}}. If that solves the problem that fix can be committed then.
     3I think the issue is that {{{pdal}}} does not declare a dependency on OpenSSL, but does link to it:
     4{{{
     5 % otool -L `port contents pdal | grep dylib` | grep crypto
     6        /opt/local/lib/libcrypto.1.1.dylib (compatibility version 1.1.0, current version 1.1.0)
     7        /opt/local/lib/libcrypto.1.1.dylib (compatibility version 1.1.0, current version 1.1.0)
     8        /opt/local/lib/libcrypto.1.1.dylib (compatibility version 1.1.0, current version 1.1.0)
     9}}}
     10
     11So please try to add a dependency on {{{openssl}}}, revbump the port and rebuild it first before installing {{{qgis3}}}. If that solves the problem that fix can be committed then.