diff options
author | jfieber <jfieber@FreeBSD.org> | 1997-07-07 03:27:30 +0800 |
---|---|---|
committer | jfieber <jfieber@FreeBSD.org> | 1997-07-07 03:27:30 +0800 |
commit | 56d5c79c362eea23d71a2cd33265828833f5c003 (patch) | |
tree | ee6ecc2bbd0774eaae32f872d94f2b64197410c4 /textproc | |
parent | 2ee8b1efe23c80d38b51d0901a43bf731e4499d3 (diff) | |
download | freebsd-ports-graphics-56d5c79c362eea23d71a2cd33265828833f5c003.tar.gz freebsd-ports-graphics-56d5c79c362eea23d71a2cd33265828833f5c003.tar.zst freebsd-ports-graphics-56d5c79c362eea23d71a2cd33265828833f5c003.zip |
Disable the generation of the shared libsp for all systems. It seems
that some change between 2.2.1 and 2.2.2 is causing problems.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/sp/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/textproc/sp/Makefile b/textproc/sp/Makefile index 4d9e5948f85..4b8deb1b640 100644 --- a/textproc/sp/Makefile +++ b/textproc/sp/Makefile @@ -3,7 +3,7 @@ # Date created: April 26, 1997 # Whom: jfieber # -# $Id: Makefile,v 1.2 1997/04/27 01:06:45 asami Exp $ +# $Id: Makefile,v 1.3 1997/06/22 17:40:42 jfieber Exp $ # DISTNAME= sp-1.1.1 @@ -13,10 +13,11 @@ MASTER_SITES= ftp://ftp.jclark.com/pub/sp/ MAINTAINER= jfieber@FreeBSD.ORG # The shared libsp only works on post 2.1.x systems. -.if exists(/usr/lib/libstdc++.a) -PLIST= ${PKGDIR}/PLIST-shared -post-install: - ${LDCONFIG} -m ${PREFIX}/lib -.endif +# shared C++ libraries appear to be broken on post 2.2.1 system too... +#.if exists(/usr/lib/libstdc++.a) +#PLIST= ${PKGDIR}/PLIST-shared +#post-install: +# ${LDCONFIG} -m ${PREFIX}/lib +#.endif .include <bsd.port.mk> |