[Bug 200557] [patch] make www/links1 obey WITH_OPENSSL_PORT=yes

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Sun May 31 22:43:16 UTC 2015


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200557

            Bug ID: 200557
           Summary: [patch] make www/links1 obey WITH_OPENSSL_PORT=yes
           Product: Ports & Packages
           Version: Latest
          Hardware: Any
                OS: Any
            Status: New
          Keywords: patch
          Severity: Affects Only Me
          Priority: ---
         Component: Individual Port(s)
          Assignee: demon at FreeBSD.org
          Reporter: truckman at FreeBSD.org
          Keywords: patch
          Assignee: demon at FreeBSD.org
             Flags: maintainer-feedback?(demon at FreeBSD.org)

Created attachment 157317
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=157317&action=edit
patch to make www/links1 obey WITH_OPENSSL_PORT=yes

If www/links1 is built with WITH_OPENSSL_PORT=yes in /etc/make.conf, the
package says that it depends on OPENSSL_PORT, but the links executable is
actually linked to libcrypto.so and libssl.so from base.

Before patch:

% ldd /usr/local/bin/links
/usr/local/bin/links:
    libssl.so.6 => /usr/lib/libssl.so.6 (0x33d2b000)
    libcrypto.so.6 => /lib/libcrypto.so.6 (0x33d77000)
    libz.so.5 => /lib/libz.so.5 (0x33ed3000)
    libc.so.7 => /lib/libc.so.7 (0x33ee5000)

After patch:

% ldd /usr/local/bin/links
/usr/local/bin/links:
    libssl.so.8 => /usr/local/lib/libssl.so.8 (0x33d2b000)
    libcrypto.so.8 => /usr/local/lib/libcrypto.so.8 (0x33d8d000)
    libz.so.5 => /lib/libz.so.5 (0x33f1b000)
    libc.so.7 => /lib/libc.so.7 (0x33f2d000)
    libthr.so.3 => /lib/libthr.so.3 (0x34049000)

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the freebsd-ports-bugs mailing list