From owner-freebsd-ports Mon Mar 30 12:10:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA09586 for freebsd-ports-outgoing; Mon, 30 Mar 1998 12:10:11 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA09550; Mon, 30 Mar 1998 12:10:05 -0800 (PST) (envelope-from gnats) Date: Mon, 30 Mar 1998 12:10:05 -0800 (PST) Message-Id: <199803302010.MAA09550@hub.freebsd.org> To: freebsd-ports Cc: From: "Scot W. Hetzel" Subject: Re: ports/4878: Apache w/FrontPage Module Port Reply-To: "Scot W. Hetzel" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/4878; it has been noted by GNATS. From: "Scot W. Hetzel" To: Cc: Subject: Re: ports/4878: Apache w/FrontPage Module Port Date: Mon, 30 Mar 1998 14:10:19 -0600 The apache-fp port has been updated to check if the link for libcrypt.a is pointing to libdescrypt.a. Another check against libcrypt.so.?.?, should be performed, but I am unsure as how to implement a check for a library that can change its major and/or minor number. The patch location is: ftp://ftp.freebsd.org/pub/FreeBSD/incoming/apache-fp.126_126.a.diff and is also listed below. Scot diff -ruN apache-fp.126/Makefile apache-fp.126.a/Makefile --- apache-fp.126/Makefile Thu Mar 26 14:44:58 1998 +++ apache-fp.126.a/Makefile Mon Mar 30 13:16:57 1998 @@ -48,6 +48,19 @@ ${ECHO} "WARNING: Install the DES Library, then build apache-fp"; \ ${ECHO} ; \ ${FALSE} ; \ + else \ + LN_DES_A=`ls -l /usr/lib/libcrypt.a | awk '{print $$11}'` ; \ + LN_DES_SO=`ls -l /usr/lib/libcrypt.so.* | awk '{print $$11}'` ; \ + if [ ! "$${LN_DES_A}" = "libdescrypt.a" ] ; then \ + ${ECHO} ; \ + ${ECHO} "WARNING: DES not installed properly." ; \ + ${ECHO} "WARNING: Ensure you have the following links in /usr/lib:" ; \ + ${ECHO} ; \ + ${ECHO} " libcrypt.a -> libdescrypt.a" ; \ + ${ECHO} " libcrypt.so.?.? -> libdescrypt.so.?.?" ; \ + ${ECHO} ; \ + ${FALSE} ;\ + fi ; \ fi post-extract: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message