mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-12 07:59:59 -04:00
Fix missing config.h in win32/socket.c and replace config.h with <config.h>
(cherry picked from commit d87c1a120d)
This commit is contained in:
parent
bae00dc3a2
commit
bfd31e282a
5 changed files with 7 additions and 3 deletions
|
|
@ -9,7 +9,7 @@
|
|||
* information regarding copyright ownership.
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include <config.h>
|
||||
|
||||
#ifndef HAVE_LMDB
|
||||
#error This program requires the LMDB library.
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
/*! \file isc/aes.c */
|
||||
|
||||
#include "config.h"
|
||||
#include <config.h>
|
||||
|
||||
#include <isc/assertions.h>
|
||||
#include <isc/aes.h>
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
/*! \file */
|
||||
|
||||
#include "config.h"
|
||||
#include <config.h>
|
||||
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
|
|
|
|||
|
|
@ -9,6 +9,8 @@
|
|||
* information regarding copyright ownership.
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include <stdbool.h>
|
||||
|
||||
#include <isc/print.h>
|
||||
|
|
|
|||
|
|
@ -24,6 +24,8 @@
|
|||
* XXXPDM 5 August, 2002
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#define MAKE_EXTERNAL 1
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
|||
Loading…
Reference in a new issue