2
0
mirror of https://github.com/xcat2/xNBA.git synced 2024-12-14 15:21:32 +00:00

Added DNS resolver configuration option.

This commit is contained in:
Michael Brown 2005-04-30 14:39:21 +00:00
parent 0780ecf1b6
commit 6cd0fa5807
2 changed files with 18 additions and 0 deletions

View File

@ -64,6 +64,16 @@
/* @END isa.h */
/* @BEGIN general.h
*
* Name resolution modules
*
*/
#define DNS_RESOLVER /* DNS resolver */
/* @END general.h */
/* @BEGIN general.h
*
* Obscure configuration options

View File

@ -169,3 +169,11 @@ REQUIRE_OBJECT ( pc_kbd );
#ifdef RELOCATE
REQUIRE_OBJECT ( relocate );
#endif
/*
* Drag in any required resolvers
*
*/
#ifdef DNS_RESOLVER
REQUIRE_OBJECT ( dns_resolver );
#endif