diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 2005-08-06 16:53:55 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2005-08-06 16:53:55 +0000 |
commit | 3d86554c200f9b77f945e231b725ec8f902dba25 (patch) | |
tree | fa34f9b44f1829407f52de3d636b3504b99bc02b /rescue/librescue/Makefile | |
parent | 0c8eca7560e0862fca3303501ca7668e33d8e4f2 (diff) | |
download | src-3d86554c200f9b77f945e231b725ec8f902dba25.tar.gz src-3d86554c200f9b77f945e231b725ec8f902dba25.zip |
Respect the YES_HESIOD build variable.
Notes
Notes:
svn path=/head/; revision=148796
Diffstat (limited to 'rescue/librescue/Makefile')
-rw-r--r-- | rescue/librescue/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/rescue/librescue/Makefile b/rescue/librescue/Makefile index f73984cd83a0..0cc5bfade19f 100644 --- a/rescue/librescue/Makefile +++ b/rescue/librescue/Makefile @@ -33,7 +33,9 @@ CFLAGS+= -DBROKEN_DES -DPORTMAP -DDES_BUILTIN .if !defined(NO_NIS) CFLAGS+= -DYP .endif +.if defined(YES_HESIOD) CFLAGS+= -DHESIOD +.endif CFLAGS+= -I${.CURDIR}/../../lib/libc/include .include <bsd.lib.mk> |