diff options
author | phk <phk@FreeBSD.org> | 2005-08-06 16:53:55 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2005-08-06 16:53:55 +0000 |
commit | 5a523760659dee07f955efb61a4021045eddd231 (patch) | |
tree | fa34f9b44f1829407f52de3d636b3504b99bc02b /include | |
parent | ce947d44964b100c7f8084329b66b8a1a539452d (diff) | |
download | FreeBSD-src-5a523760659dee07f955efb61a4021045eddd231.zip FreeBSD-src-5a523760659dee07f955efb61a4021045eddd231.tar.gz |
Respect the YES_HESIOD build variable.
Diffstat (limited to 'include')
-rw-r--r-- | include/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/Makefile b/include/Makefile index d336eaa..59856c1 100644 --- a/include/Makefile +++ b/include/Makefile @@ -9,7 +9,7 @@ INCS= a.out.h ar.h assert.h bitstring.h complex.h cpio.h _ctype.h ctype.h \ db.h \ dirent.h dlfcn.h elf.h elf-hints.h err.h fmtmsg.h fnmatch.h fstab.h \ fts.h ftw.h getopt.h glob.h grp.h \ - hesiod.h histedit.h ieeefp.h ifaddrs.h \ + histedit.h ieeefp.h ifaddrs.h \ inttypes.h iso646.h kenv.h langinfo.h libgen.h limits.h link.h \ locale.h malloc.h memory.h monetary.h mpool.h ndbm.h netconfig.h \ netdb.h nl_types.h nlist.h nss.h nsswitch.h objformat.h paths.h \ @@ -55,6 +55,10 @@ LSUBDIRS= cam/scsi \ _dev_ieee488= dev/ieee488 .endif +.if defined(YES_HESIOD) +INCS+= hesiod.h +.endif + .if !defined(NO_BLUETOOTH) LSUBSUBDIRS= netgraph/bluetooth/include .endif |