diff options
author | dfr <dfr@FreeBSD.org> | 2000-09-10 12:15:30 +0000 |
---|---|---|
committer | dfr <dfr@FreeBSD.org> | 2000-09-10 12:15:30 +0000 |
commit | f7c899ec29a293e3020f768d501d7e8661678e9d (patch) | |
tree | 20b17ce574fbab972f06916719d5d2dd1b1c6732 /sys/boot/ficl/words.c | |
parent | c5a4794750331e1d26923da6e7013ab459f5e3a6 (diff) | |
download | FreeBSD-src-f7c899ec29a293e3020f768d501d7e8661678e9d.zip FreeBSD-src-f7c899ec29a293e3020f768d501d7e8661678e9d.tar.gz |
Only build PnP parts if the platform supports PnP.
Diffstat (limited to 'sys/boot/ficl/words.c')
-rw-r--r-- | sys/boot/ficl/words.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/boot/ficl/words.c b/sys/boot/ficl/words.c index 0136610..36ea902 100644 --- a/sys/boot/ficl/words.c +++ b/sys/boot/ficl/words.c @@ -4833,8 +4833,10 @@ void ficlCompileCore(FICL_DICT *dp) dictAppendWord(dp, "copyin", ficlCopyin, FW_DEFAULT); dictAppendWord(dp, "copyout", ficlCopyout, FW_DEFAULT); dictAppendWord(dp, "findfile", ficlFindfile, FW_DEFAULT); +#ifdef HAVE_PNP dictAppendWord(dp, "pnpdevices",ficlPnpdevices, FW_DEFAULT); dictAppendWord(dp, "pnphandlers",ficlPnphandlers, FW_DEFAULT); +#endif dictAppendWord(dp, "ccall", ficlCcall, FW_DEFAULT); #endif |