From owner-freebsd-questions Tue Apr 1 18:23:35 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id SAA27181 for questions-outgoing; Tue, 1 Apr 1997 18:23:35 -0800 (PST) Received: from relay.rv.tis.com (firewall-user@relay.rv.tis.com [204.254.155.2]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id SAA27170 for ; Tue, 1 Apr 1997 18:23:29 -0800 (PST) Received: by relay.rv.tis.com; id VAA27032; Tue, 1 Apr 1997 21:35:55 -0500 (EST) Received: from dhcp0.ex.tis.com(192.94.214.120) by relay.rv.tis.com via smap (3.2) id xma027030; Tue, 1 Apr 97 21:35:53 -0500 Message-Id: <3.0.1.32.19970401210845.006f8754@pop.rv.tis.com> X-Sender: rick@pop.rv.tis.com X-Mailer: Windows Eudora Pro Version 3.0.1 (32) Date: Tue, 01 Apr 1997 21:08:45 -0500 To: "Pat McPartland" From: Rick Murphy Subject: Re: Installing tfwtk-2.0 Cc: , "FBSD questions" In-Reply-To: <199704012039.PAA02489@fireball.blast.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-questions@freebsd.org X-Loop: FreeBSD.org Precedence: bulk At 03:34 PM 4/1/97 -0500, Pat McPartland wrote: >pass.c:39: Undefined symbol `_crypt' referenced from text segment The FWTK authserver password authentication code uses "crypt()" to perform a secure one-way hash of a password. Due to export restrictions, FreeBSD doesn't have a crypt() function but it does have equivalent code (that uses MD5 if I recall). You'll need to replace the crypt() calls in pass.c with something that's delivered with FreeBSD. Why I'm copying this to the FreeBSD list is that I'll be happy to make the changes conditionally compiled in the FWTK code if someone just tells me what the changes are :-) -Rick