mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-22 15:50:59 -05:00
fixup unbound control compilation on windows.
git-svn-id: file:///svn/unbound/trunk@1314 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
00f301d35f
commit
2a6846f30c
2 changed files with 5 additions and 0 deletions
|
|
@ -14,6 +14,7 @@
|
||||||
so that if a zone is bad on one server but not another, it is
|
so that if a zone is bad on one server but not another, it is
|
||||||
likely to pick up the 'correct' one after a couple minutes,
|
likely to pick up the 'correct' one after a couple minutes,
|
||||||
and if the TTL is big enough that solves validation for the zone.
|
and if the TTL is big enough that solves validation for the zone.
|
||||||
|
- fixup unbound-control compilation on windows.
|
||||||
|
|
||||||
17 October 2008: Wouter
|
17 October 2008: Wouter
|
||||||
- port Leopard/G5: fixup type conversion size_t/uint32.
|
- port Leopard/G5: fixup type conversion size_t/uint32.
|
||||||
|
|
|
||||||
|
|
@ -302,6 +302,10 @@ int main(int argc, char* argv[])
|
||||||
int c, ret;
|
int c, ret;
|
||||||
char* cfgfile = CONFIGFILE;
|
char* cfgfile = CONFIGFILE;
|
||||||
char* svr = NULL;
|
char* svr = NULL;
|
||||||
|
#ifdef USE_WINSOCK
|
||||||
|
int r;
|
||||||
|
WSADATA wsa_data;
|
||||||
|
#endif
|
||||||
#ifdef USE_THREAD_DEBUG
|
#ifdef USE_THREAD_DEBUG
|
||||||
/* stop the file output from unbound-control, overwites the servers */
|
/* stop the file output from unbound-control, overwites the servers */
|
||||||
extern int check_locking_order;
|
extern int check_locking_order;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue