Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 15 Oct 2001 21:19:31 -0500
From:      "Stephen Hilton" <nospam@hiltonbsd.com>
To:        <freebsd-ports@FreeBSD.org>
Subject:   Apache13-fp port problem
Message-ID:  <KPEMJADBBBFPDEDOIOMBMEHHDDAA.nospam@hiltonbsd.com>

next in thread | raw e-mail | index | archive | help
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




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