diff options
| author | roy <roy@NetBSD.org> | 2019-04-24 10:28:17 +0000 |
|---|---|---|
| committer | roy <roy@NetBSD.org> | 2019-04-24 10:28:17 +0000 |
| commit | b2548c8edea5ccfca3dbbfa7a10389e89c024bc3 (patch) | |
| tree | e7d47dbe4309f783e39f6578b3183eae4c5664fb /external | |
| parent | 2bdb98a4865e41cb5c14ab2a395fca29ad9eac26 (diff) | |
Fix building am-utils with MKYP=no
Diffstat (limited to 'external')
| -rw-r--r-- | external/bsd/am-utils/Makefile.inc | 4 | ||||
| -rw-r--r-- | external/bsd/am-utils/include/config.h | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/external/bsd/am-utils/Makefile.inc b/external/bsd/am-utils/Makefile.inc index fde2c3c5039..0ed22a278eb 100644 --- a/external/bsd/am-utils/Makefile.inc +++ b/external/bsd/am-utils/Makefile.inc @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.inc,v 1.7 2015/02/02 16:18:27 christos Exp $ +# $NetBSD: Makefile.inc,v 1.8 2019/04/24 10:28:17 roy Exp $ .ifndef AMU_MAKEFILE_INC AMU_MAKEFILE_INC= @@ -30,7 +30,7 @@ CPPFLAGS+=-DLDAP_DEPRECATED=1 # OpenLDAP 2.2 deprecated ldap_unbind() .endif .if (${USE_YP} != "no") -CPPFLAGS+=-DHAVE_MAP_NIS=1 +CPPFLAGS+=-DHAVE_MAP_NIS=1 -DYP .endif .if !defined(LIB) || empty(LIB) diff --git a/external/bsd/am-utils/include/config.h b/external/bsd/am-utils/include/config.h index 9ccfec42023..f5667ba0f0d 100644 --- a/external/bsd/am-utils/include/config.h +++ b/external/bsd/am-utils/include/config.h @@ -869,11 +869,13 @@ /* Define to 1 if you have the <rpcsvc/nis.h> header file. */ /* #undef HAVE_RPCSVC_NIS_H */ +#ifdef YP /* Define to 1 if you have the <rpcsvc/ypclnt.h> header file. */ #define HAVE_RPCSVC_YPCLNT_H 1 /* Define to 1 if you have the <rpcsvc/yp_prot.h> header file. */ #define HAVE_RPCSVC_YP_PROT_H 1 +#endif /* Define to 1 if you have the <rpc/auth_des.h> header file. */ /* #undef HAVE_RPC_AUTH_DES_H */ |
