From owner-freebsd-questions@FreeBSD.ORG Sun Jul 24 03:53:06 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7AA5C16A420 for ; Sun, 24 Jul 2005 03:53:06 +0000 (GMT) (envelope-from ptaylor@addressplus.net) Received: from sccrmhc14.comcast.net (sccrmhc14.comcast.net [204.127.202.59]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1060D43D48 for ; Sun, 24 Jul 2005 03:53:05 +0000 (GMT) (envelope-from ptaylor@addressplus.net) Received: from addressplus.net (c-24-129-120-74.hsd1.fl.comcast.net[24.129.120.74]) by comcast.net (sccrmhc14) with ESMTP id <2005072403530501400k6rq2e>; Sun, 24 Jul 2005 03:53:05 +0000 Received: from [192.168.111.99] ([192.168.111.99]) by addressplus.net ([127.0.0.1]) with SMTP (MDaemon.PRO.v6.5.2.R) for ; Sat, 23 Jul 2005 23:53:12 -0400 Mime-Version: 1.0 (Apple Message framework v733) Content-Transfer-Encoding: 7bit Message-Id: Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed To: freebsd-questions@freebsd.org From: Paul Taylor Date: Sat, 23 Jul 2005 23:51:49 -0400 X-Mailer: Apple Mail (2.733) X-MDRemoteIP: 192.168.111.99 X-Return-Path: ptaylor@addressplus.net X-MDaemon-Deliver-To: freebsd-questions@freebsd.org Subject: DHCP3 Server on FreeBSD 4.11 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Jul 2005 03:53:06 -0000 Hi, I'm new to FreeBSD, so there is a good possibility that this is just something stupid that I'm doing wrong... I've had bad timing with linux software that I've tried installing in the past (just happened to try to install while there was a broken distribution, etc.) and I'm starting to think that is my situation here... I'm trying to install the ports version of isc-dhcp3-server... According to what I've read, it should be as simple as: cd /usr/ports/net/isc-dhcp3-server make (Set options in the dialog box, in my case unselect everything, then let it run the config, make, etc.) install -s work/dhcp-*/work.freebsd/server/dhcpd /usr/local/sbin Now, my problem starts with the make... When I run it, this is what I get: # make ===> Vulnerability check disabled, database not found ===> Found saved configuration for isc-dhcp3-server-3.0.2_8 => dhcp-3.0.2.tar.gz doesn't seem to exist in /usr/ports/distfiles/. => Attempting to fetch from ftp://ftp.isc.org/isc/dhcp/. fetch: ftp://ftp.isc.org/isc/dhcp/dhcp-3.0.2.tar.gz: File unavailable (e.g., file not found, no access) => Attempting to fetch from ftp://ftp.isc.org/isc/dhcp/dhcp-3.0- history/. dhcp-3.0.2.tar.gz 100% of 833 kB 408 kBps ===> Extracting for isc-dhcp3-server-3.0.2_8 => Checksum OK for dhcp-3.0.2.tar.gz. ===> Patching for isc-dhcp3-server-3.0.2_8 ===> Configuring for isc-dhcp3-server-3.0.2_8 Unexpected argument: server System Type: --subsys No build directory for freebsd - please run ./configure. ===> Building for isc-dhcp3-server-3.0.2_8 make: don't know how to make all.server. Stop *** Error code 2 Stop in /usr/ports/net/isc-dhcp3-server. So, it looks like it works correctly up until the Configure section... This output: Unexpected argument: server System Type: --subsys No build directory for freebsd - please run ./configure. is from the Configure script, in the /usr/ports/net/isc-dhcp3-server/ work/dhcp-3.0.2 directory... It doesn't appear to be expecting the "--subsys server" that is passed. Now, I ran a "make -n" to get the actual commands that it is issuing, and it does appear to be running "./configure --subsys server" and I also noticed that the last make it runs is: "make -f Makefile all.server". That probably explains the "make: don't know how to make all.server. Stop" error... Now, the real question is how to I fix this? Am I missing some sort of environment variable? Is this port broken? Also, note that I have tried manually running ./configure and performing a "make all"... But I get this far in the make, then: make: don't know how to make omshell.c. Stop *** Error code 1 Stop in /usr/ports/net/isc-dhcp3-server/work/dhcp-3.0.2/work.freebsd. *** Error code 1 Stop in /usr/ports/net/isc-dhcp3-server/work/dhcp-3.0.2. So, I'm hoping someone out there can assist me... Thanks, Paul