Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 24 Feb 2004 06:49:54 -0800 (PST)
From:      Yuri Khotyaintsev <yuri@irfu.se>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/63308: diradmin fails to detect SSL/TLS
Message-ID:  <200402241449.i1OEnshk003334@www.freebsd.org>
Resent-Message-ID: <200402241450.i1OEo87d023984@freefall.freebsd.org>

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

>Number:         63308
>Category:       ports
>Synopsis:       diradmin fails to detect SSL/TLS
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Tue Feb 24 06:50:08 PST 2004
>Closed-Date:
>Last-Modified:
>Originator:     Yuri Khotyaintsev
>Release:        5.2.1-RELEASE
>Organization:
Swedish Institute of Space Physics
>Environment:
FreeBSD ice.irfu.se 5.2.1-RELEASE FreeBSD 5.2.1-RELEASE #2: Mon Feb 23 10:56:38 CET 2004     root@ic.irfu.se:/usr/obj/usr/src/sys/ICE  i386

>Description:
Configure script fails to detect SSL/TLS because /usr/local/lib is missing in the test library path.
>How-To-Repeat:
cd /usr/ports/net/diradmin
make install
try enabling a TLS connection

>Fix:
The following patch to configure solves the problem for me.

--- configure.orig      Tue Feb 24 15:16:37 2004
+++ configure   Tue Feb 24 15:18:08 2004
@@ -5413,7 +5413,7 @@



-        LDFLAGS="$LDFLAGS -llber -lldap -lcrypt"
+        LDFLAGS="$LDFLAGS -L/usr/local/lib -llber -lldap -lcrypt"



@@ -5625,7 +5625,7 @@

 fi

-PACKAGE_PIXMAPS_DIR="/share/pixmaps/${PACKAGE}"
+PACKAGE_PIXMAPS_DIR="/share/gnome/pixmaps/${PACKAGE}"

 PACKAGE_APPLNK_DIR="/share/applications"
 SYSTEM_MENU_DIR="/lib/menu"
  
>Release-Note:
>Audit-Trail:
>Unformatted:



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