mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- Fix 780: MAP_ANON not defined in HP-UX 11.31.
git-svn-id: file:///svn/unbound/trunk@3790 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
5a478514ee
commit
e7030b6b87
3 changed files with 8 additions and 1 deletions
|
|
@ -48,6 +48,9 @@
|
||||||
#else /* !__GNUC__ */
|
#else /* !__GNUC__ */
|
||||||
#define inline
|
#define inline
|
||||||
#endif /* !__GNUC__ */
|
#endif /* !__GNUC__ */
|
||||||
|
#ifndef MAP_ANON
|
||||||
|
#define MAP_ANON MAP_ANONYMOUS
|
||||||
|
#endif
|
||||||
|
|
||||||
#define KEYSZ 32
|
#define KEYSZ 32
|
||||||
#define IVSZ 8
|
#define IVSZ 8
|
||||||
|
|
|
||||||
|
|
@ -60,6 +60,9 @@
|
||||||
#include <sys/auxv.h>
|
#include <sys/auxv.h>
|
||||||
#endif
|
#endif
|
||||||
#include <sys/vfs.h>
|
#include <sys/vfs.h>
|
||||||
|
#ifndef MAP_ANON
|
||||||
|
#define MAP_ANON MAP_ANONYMOUS
|
||||||
|
#endif
|
||||||
|
|
||||||
#define REPEAT 5
|
#define REPEAT 5
|
||||||
#define min(a, b) (((a) < (b)) ? (a) : (b))
|
#define min(a, b) (((a) < (b)) ? (a) : (b))
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,8 @@
|
||||||
null delete for wsaevent.
|
null delete for wsaevent.
|
||||||
- Fix spelling in freebind option man page text.
|
- Fix spelling in freebind option man page text.
|
||||||
- Fix windows link of ssl with crypt32.
|
- Fix windows link of ssl with crypt32.
|
||||||
- Fix 779: Union casting is non-portable.
|
- Fix 779: Union casting is non-portable.
|
||||||
|
- Fix 780: MAP_ANON not defined in HP-UX 11.31.
|
||||||
|
|
||||||
13 June 2016: Ralph
|
13 June 2016: Ralph
|
||||||
- Use QTYPE=A for QNAME minimisation.
|
- Use QTYPE=A for QNAME minimisation.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue