From owner-freebsd-ports Mon Oct 15 19:19:16 2001 Delivered-To: freebsd-ports@freebsd.org Received: from hermes.pressenter.com (hermes.pressenter.com [209.224.20.19]) by hub.freebsd.org (Postfix) with ESMTP id 394BD37B407 for ; Mon, 15 Oct 2001 19:19:09 -0700 (PDT) Received: from [209.224.22.160] (helo=daggar) by hermes.pressenter.com with smtp (Exim 3.16 #1) id 15tJox-0006am-00 for freebsd-ports@FreeBSD.org; Mon, 15 Oct 2001 21:19:08 -0500 From: "Stephen Hilton" To: Subject: Apache13-fp port problem Date: Mon, 15 Oct 2001 21:19:31 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Importance: Normal Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I tried to install the apache13-fp port last week on FreeBSD snapshot 4.4-20011010 and had to make some changes to the ports Makefile to get it to compile. This is for FrontPage 2000 support. Changed this in the Makefile: .if ${OSVERSION} < 500016 pre-extract: @if ! ${LDCONFIG} -r | ${GREP} -q -e "-ldescrypt"; then \ ${ECHO} ; \ ${ECHO} "WARNING: MS FrontPage Extentions require the DES Library" To: .if ${OSVERSION} < 500016 pre-extract: @if ! ${LDCONFIG} -r | ${GREP} -q -e "-lcrypt"; then \ ${ECHO} ; \ ${ECHO} "WARNING: MS FrontPage Extentions require the DES Library" Changed the "-ldescrypt" to "-lcrypt" Then edited my /etc/login.conf and uncommented the last example for "des_users" to activate it, then ran the "cap_mkdb /etc/login.conf" command. Then I took my FrontPage user who was already added with the default md5 style password and added the login class to their passwd file entry with vipw. Example: From: webborg:$2$Ogfr3HH/$ou812YtzNcnKRnIrtU0G3/:1100:1100::0:0:FP-2000 user:/home/webborg :/sbin/nologin To: webborg:$2$Ogfr3HH/$ou812YtzNcnKRnIrtU0G3/:1100:1100:des_user:0:0:FP-2000 user:/home/webborg:/sbin/nologin Now I logged in as webborg and changed my password with "passwd", this then gave this user a DES based password, and connection with FrontPage went fine from a W2k PC. Regards, Stephen Hilton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message