From owner-freebsd-questions Sat May 20 13:00:09 1995 Return-Path: questions-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id NAA07190 for questions-outgoing; Sat, 20 May 1995 13:00:09 -0700 Received: from westhill.cdrom.com (westhill.cdrom.com [192.216.223.57]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id NAA07184 for ; Sat, 20 May 1995 13:00:07 -0700 Received: from localhost (localhost [127.0.0.1]) by westhill.cdrom.com (8.6.11/8.6.11) with SMTP id NAA14309 ; Sat, 20 May 1995 13:00:00 -0700 X-Authentication-Warning: westhill.cdrom.com: Host localhost didn't use HELO protocol To: "Thomas D. Simes" cc: freebsd-questions@FreeBSD.org Subject: Re: RADIUS help In-reply-to: Your message of "Sat, 20 May 1995 10:30:14 PDT." Date: Sat, 20 May 1995 13:00:00 -0700 Message-ID: <14305.801000000@westhill.cdrom.com> From: Gary Palmer Sender: questions-owner@FreeBSD.org Precedence: bulk In message , "Thomas D. Simes" writes: >gcc -O -DNOSHADOW -o radiusd radiusd.o dict.o users.o util.o md5.o >attrprint.o acct.o version.o >radiusd.o: Undefined symbol `_crypt' referenced from text segment >*** Error code 1 Add -lcrypt to the LDFLAGS if it has one, or add it by hand to the line in question in the Makefile. FreeBSD doesn't build it's crypt routines into the libc for various reasons, and it can be found in the libcrypt file. This should allow it to compile, although I'm not sure if it will work. You may need to ``tweak'' it concept of password verification if it uses the system password file. Gary