Date: Tue, 2 Oct 2001 17:23:06 -0700 From: "Chad R. Larson" <chad@DCFinc.com> To: ports@FreeBSD.org Subject: bzip2 make breakage Message-ID: <20011002172306.A26342@freeway.dcfinc.com>
next in thread | raw e-mail | index | archive | help
I had to make the following edit to get bzip2 to build on my 2.2.8-STABLE system. It doesn't look to me like this is an O/S version issue, however. We were passing the name of the shared object being built to the linker as an option. Can't work, doesn't exist yet. And wouldn't make much sense even if it did. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= *** -patch-aa Tue Oct 2 17:10:46 2001 --- patch-aa Tue Oct 2 17:11:32 2001 *************** *** 40,46 **** fi +libbz2.so.1: $(SO_OBJS) ! + $(CC) -shared -Wl,-soname -Wl,libbz2.so.1 -o libbz2.so.1 $(SO_OBJS) + ln -sf libbz2.so.1 libbz2.so + test: bzip2 --- 40,46 ---- fi +libbz2.so.1: $(SO_OBJS) ! + $(CC) -shared -Wl,-soname -o libbz2.so.1 $(SO_OBJS) + ln -sf libbz2.so.1 libbz2.so + test: bzip2 -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= -crl -- Chad R. Larson (CRL15) 602-953-1392 Brother, can you paradigm? chad@dcfinc.com chad@larsons.org larson1@home.com DCF, Inc. - 14623 North 49th Place, Scottsdale, Arizona 85254-2207 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?20011002172306.A26342>