Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 15 Feb 2000 02:51:18 +0900 (JST)
From:      nobutaka@nobutaka.com
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   ports/16711: Fix port: www/w3m
Message-ID:  <200002141751.CAA30550@nobutaka.com>

next in thread | raw e-mail | index | archive | help

>Number:         16711
>Category:       ports
>Synopsis:       Fix port: www/w3m
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Feb 14 10:00:01 PST 2000
>Closed-Date:
>Last-Modified:
>Originator:     MANTANI Nobutaka
>Release:        FreeBSD 4.0-CURRENT i386
>Organization:
Hiroshima University
>Environment:
>Description:

Fix build error when defined(USE_OPENSSL) && !defined(OPENSSL_RSAREF) .

>How-To-Repeat:
>Fix:

diff -urN w3m.old/Makefile w3m/Makefile
--- w3m.old/Makefile	Tue Feb 15 02:42:09 2000
+++ w3m/Makefile	Tue Feb 15 02:43:23 2000
@@ -50,10 +50,10 @@
 SED_CMD+=	-e "s,undef USE_SSL,define USE_SSL,g"
 
 .if defined(OPENSSL_RSAREF)
-EXTRA_SSL_LIBS=	-lRSAglue -L${LOCALBASE}/lib -lrsaref
+EXTRA_SSL_LIBS=	-lRSAglue -lrsaref
 .endif
 MAKE_FLAGS+=	DEFS="${SSL_CFLAGS} -I${LOCALBASE}/include" \
-		LIBS="${SSL_LIBS} ${EXTRA_SSL_LIBS}"
+		LIBS="${SSL_LIBS} ${EXTRA_SSL_LIBS} -L${LOCALBASE}/lib"
 .else
 MAKE_FLAGS+=	DEFS="-I${LOCALBASE}/include" LIBS="-L${LOCALBASE}/lib"
 .endif

>Release-Note:
>Audit-Trail:
>Unformatted:


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




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