diff options
author | dholland <dholland@pkgsrc.org> | 2015-01-01 09:43:44 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2015-01-01 09:43:44 +0000 |
commit | 02fdfdef2e2376e15c9f0d42eba30756744e2e16 (patch) | |
tree | 01e97b396977ddc7c40fe5acae3b7da0248a9d6e | |
parent | a4ef9a05339e81e51f49ec37e1fa2b114dfc3d82 (diff) | |
download | pkgsrc-02fdfdef2e2376e15c9f0d42eba30756744e2e16.tar.gz |
Remove obsolete restriction based on a.out shared libraries not working.
Even if they still don't (it was noted ten years ago) I don't think we
have any a.out platforms left in pkgsrc. (Do we?)
-rw-r--r-- | databases/libpqxx/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/databases/libpqxx/Makefile b/databases/libpqxx/Makefile index 49dc0a993bd..9117d572a22 100644 --- a/databases/libpqxx/Makefile +++ b/databases/libpqxx/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.28 2014/05/09 07:36:56 wiz Exp $ +# $NetBSD: Makefile,v 1.29 2015/01/01 09:43:44 dholland Exp $ PYTHON_VERSIONS_INCOMPATIBLE= 33 34 # not yet ported as of 4.0.1 @@ -6,7 +6,11 @@ PYTHON_VERSIONS_INCOMPATIBLE= 33 34 # not yet ported as of 4.0.1 COMMENT= C++ interface to postgresql-lib -NOT_FOR_PLATFORM= NetBSD-*-pc532 +# Apparently (at least as of 2004) this package's shared libraries are +# messed up on a.out platforms. But AFAIK we don't have any in pkgsrc +# any more. Leave this here for documentation just in case. +# - dholland 20150101 +#NOT_FOR_PLATFORM= ${AOUTPLATFORMS} USE_LANGUAGES= c c++ USE_LIBTOOL= yes |