mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 10:32:13 -04:00
more win32 build fixes
This commit is contained in:
parent
da520bccdd
commit
9edd523c22
4 changed files with 10 additions and 5 deletions
|
|
@ -14,7 +14,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: dnssec-dsfromkey.c,v 1.9 2009/07/19 04:18:04 each Exp $ */
|
||||
/* $Id: dnssec-dsfromkey.c,v 1.10 2009/07/19 05:06:48 each Exp $ */
|
||||
|
||||
/*! \file */
|
||||
|
||||
|
|
@ -51,7 +51,7 @@
|
|||
#include "dnssectool.h"
|
||||
|
||||
#ifndef PATH_MAX
|
||||
#define PATH_MAX 1024 /* AIX and others don't define this. */
|
||||
#define PATH_MAX 1024 /* AIX, WIN32, and others don't define this. */
|
||||
#endif
|
||||
|
||||
const char *program = "dnssec-dsfromkey";
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: dnssec-settime.c,v 1.2 2009/07/19 04:18:04 each Exp $ */
|
||||
/* $Id: dnssec-settime.c,v 1.3 2009/07/19 05:06:48 each Exp $ */
|
||||
|
||||
/*! \file */
|
||||
|
||||
|
|
@ -23,7 +23,7 @@
|
|||
#include <libgen.h>
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/errno.h>
|
||||
#include <errno.h>
|
||||
#include <time.h>
|
||||
|
||||
#include <isc/buffer.h>
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@
|
|||
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: dnssec-signzone.c,v 1.221 2009/07/19 04:18:04 each Exp $ */
|
||||
/* $Id: dnssec-signzone.c,v 1.222 2009/07/19 05:06:48 each Exp $ */
|
||||
|
||||
/*! \file */
|
||||
|
||||
|
|
@ -87,6 +87,10 @@
|
|||
|
||||
#include "dnssectool.h"
|
||||
|
||||
#ifndef PATH_MAX
|
||||
#define PATH_MAX 1024 /* AIX, WIN32, and others don't define this. */
|
||||
#endif
|
||||
|
||||
const char *program = "dnssec-signzone";
|
||||
int verbose;
|
||||
|
||||
|
|
|
|||
|
|
@ -38,6 +38,7 @@ cfg_parse_file
|
|||
cfg_parser_create
|
||||
cfg_parser_destroy
|
||||
cfg_parser_setcallback
|
||||
cfg_print
|
||||
cfg_tuple_get
|
||||
|
||||
; Exported Data
|
||||
|
|
|
|||
Loading…
Reference in a new issue