Date: Mon, 30 Mar 1998 12:10:05 -0800 (PST) From: "Scot W. Hetzel" <hetzels@westbend.net> To: freebsd-ports Subject: Re: ports/4878: Apache w/FrontPage Module Port Message-ID: <199803302010.MAA09550@hub.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/4878; it has been noted by GNATS. From: "Scot W. Hetzel" <hetzels@westbend.net> To: <freebsd-gnats-submit@freebsd.org> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199803302010.MAA09550>