Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 31 May 2015 22:43:15 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   [Bug 200557] [patch] make www/links1 obey WITH_OPENSSL_PORT=yes
Message-ID:  <bug-200557-13@https.bugs.freebsd.org/bugzilla/>

next in thread | raw e-mail | index | archive | help
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@FreeBSD.org
          Reporter: truckman@FreeBSD.org
          Keywords: patch
          Assignee: demon@FreeBSD.org
             Flags: maintainer-feedback?(demon@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.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-200557-13>