Date: Mon, 9 Nov 1998 17:20:01 -0800 (PST) From: Cy Schubert <cschuber@uumail.gov.bc.ca> To: freebsd-ports@FreeBSD.ORG Subject: Re: ports/8601: krb5 port krb5kdc bus errror Message-ID: <199811100120.RAA16416@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/8601; it has been noted by GNATS. From: Cy Schubert <cschuber@uumail.gov.bc.ca> To: freebsd-gnats-submit@freebsd.org, cschuber@uumail.gov.bc.ca Cc: cy@uumail.gov.bc.ca Subject: Re: ports/8601: krb5 port krb5kdc bus errror Date: Sun, 08 Nov 1998 10:28:46 -0800 Solution: Replace patch-ab with the following. (Tabs may not have been replicated properly in this submission). --- util/makeshlib.sh.orig Fri Feb 6 19:45:49 1998 +++ util/makeshlib.sh Sun Nov 8 09:35:09 1998 @@ -17,6 +17,23 @@ VERSION="$1" ; shift case $host in +*-*-freebsd*) + FILES=`for i + do + sed -e "s;^;$i/shared/;" -e "s; ; $i/shared/;g" -e "s;^$i/shared/\$;;" $i/DONE + done` + if test "$PORTOBJFORMAT" = "elf"; then + # Hack to deal with the fact that with cc options are different + # from ld... + ldflags="$ldflags -soname $library" + echo ld -Bshareable $ldflags -o $library $FILES $libdirfl $liblist + ld -Bshareable $ldflags -o $library $FILES $libdirfl $liblist + else + echo $CC -shared -Wl,-x $ldflags $libdirfl $liblist -o $library `lorder $FILES | tsort -q` + $CC -shared -Wl,-x $ldflags $libdirfl $liblist -o $library `lorder $FILES | tsort -q` + fi + stat=$? + ;; *-*-netbsd*) FILES=`for i do 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?199811100120.RAA16416>