diff options
author | Marcus von Appen <mva@FreeBSD.org> | 2014-12-22 09:47:36 +0000 |
---|---|---|
committer | Marcus von Appen <mva@FreeBSD.org> | 2014-12-22 09:47:36 +0000 |
commit | 4a19da7af950fd5aee03d4a723472ca13f433048 (patch) | |
tree | a39c4d7fe9da35859d4e8f0b8b084595283dd3c2 /lang/python33/Makefile | |
parent | 130b6117585677ef7549e26d73a1d384f001b466 (diff) |
- Python 3.x: try to improve the NIS detection for FreeBSD
PR: 193650
With hat: python
Notes
Notes:
svn path=/head/; revision=375221
Diffstat (limited to 'lang/python33/Makefile')
-rw-r--r-- | lang/python33/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/python33/Makefile b/lang/python33/Makefile index 61706e10b759..1e9b2e75ff67 100644 --- a/lang/python33/Makefile +++ b/lang/python33/Makefile @@ -85,8 +85,8 @@ PLIST_FILES+= libdata/pkgconfig/python-3.3%%ABI%%.pc CFLAGS+= -DPYTHON_DEFAULT_RECURSION_LIMIT=900 .endif -# See http://bugs.freebsd.org/115940 -.if !exists(/usr/bin/ypcat) || defined(WITHOUT_NIS) # the world with NO_NIS +# See http://bugs.freebsd.org/115940 and http://bugs.freebsd.org/193650 +.if defined(WITHOUT_NIS) || !exists(/usr/include/rpcsvc/yp_prot.h) PLIST_SUB+= NO_NIS="@comment " .else PLIST_SUB+= NO_NIS="" |