mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-23 08:10:30 -05:00
- Fix unintended use of gcc extension for incomplete enum types,
compile with pedantic c99 compliance (from Daniel Dickman). git-svn-id: file:///svn/unbound/trunk@3321 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
c9a20c4a33
commit
15d16580a8
2 changed files with 6 additions and 1 deletions
|
|
@ -1,3 +1,7 @@
|
||||||
|
26 January 2015: Wouter
|
||||||
|
- Fix unintended use of gcc extension for incomplete enum types,
|
||||||
|
compile with pedantic c99 compliance (from Daniel Dickman).
|
||||||
|
|
||||||
23 January 2015: Wouter
|
23 January 2015: Wouter
|
||||||
- windows port fixes, no AF_LOCAL, no chown, no chmod(grp).
|
- windows port fixes, no AF_LOCAL, no chown, no chmod(grp).
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -41,8 +41,9 @@
|
||||||
* and do the library calls (for the crypto library in use).
|
* and do the library calls (for the crypto library in use).
|
||||||
*/
|
*/
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "validator/val_secalgo.h"
|
/* packed_rrset on top to define enum types (forced by c99 standard) */
|
||||||
#include "util/data/packed_rrset.h"
|
#include "util/data/packed_rrset.h"
|
||||||
|
#include "validator/val_secalgo.h"
|
||||||
#include "util/log.h"
|
#include "util/log.h"
|
||||||
#include "ldns/rrdef.h"
|
#include "ldns/rrdef.h"
|
||||||
#include "ldns/keyraw.h"
|
#include "ldns/keyraw.h"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue