mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
version 5 of acx_nlnetlabs.m4
git-svn-id: file:///svn/unbound/trunk@1962 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
28af5566b2
commit
be7105336a
2 changed files with 16 additions and 2 deletions
|
|
@ -2,8 +2,8 @@
|
||||||
# Copyright 2009, Wouter Wijngaards, NLnet Labs.
|
# Copyright 2009, Wouter Wijngaards, NLnet Labs.
|
||||||
# BSD licensed.
|
# BSD licensed.
|
||||||
#
|
#
|
||||||
# Version 4
|
# Version 5
|
||||||
# Changelog
|
# 2010-01-20 added AHX_COONFIG_STRLCAT
|
||||||
# 2009-07-14 U_CHAR detection improved for windows crosscompile.
|
# 2009-07-14 U_CHAR detection improved for windows crosscompile.
|
||||||
# added ACX_FUNC_MALLOC
|
# added ACX_FUNC_MALLOC
|
||||||
# fixup some #if to #ifdef
|
# fixup some #if to #ifdef
|
||||||
|
|
@ -55,6 +55,7 @@
|
||||||
# AHX_CONFIG_INET_NTOP - inet_ntop compat prototype
|
# AHX_CONFIG_INET_NTOP - inet_ntop compat prototype
|
||||||
# AHX_CONFIG_INET_ATON - inet_aton compat prototype
|
# AHX_CONFIG_INET_ATON - inet_aton compat prototype
|
||||||
# AHX_CONFIG_MEMMOVE - memmove compat prototype
|
# AHX_CONFIG_MEMMOVE - memmove compat prototype
|
||||||
|
# AHX_CONFIG_STRLCAT - strlcat compat prototype
|
||||||
# AHX_CONFIG_STRLCPY - strlcpy compat prototype
|
# AHX_CONFIG_STRLCPY - strlcpy compat prototype
|
||||||
# AHX_CONFIG_GMTIME_R - gmtime_r compat prototype
|
# AHX_CONFIG_GMTIME_R - gmtime_r compat prototype
|
||||||
# AHX_CONFIG_W32_SLEEP - w32 compat for sleep
|
# AHX_CONFIG_W32_SLEEP - w32 compat for sleep
|
||||||
|
|
@ -1088,6 +1089,16 @@ void *memmove(void *dest, const void *src, size_t n);
|
||||||
#endif
|
#endif
|
||||||
])
|
])
|
||||||
|
|
||||||
|
dnl provide strlcat compat prototype.
|
||||||
|
dnl $1: unique name for compat code
|
||||||
|
AC_DEFUN([AHX_CONFIG_STRLCAT],
|
||||||
|
[
|
||||||
|
#ifndef HAVE_STRLCAT
|
||||||
|
#define strlcat strlcat_$1
|
||||||
|
size_t strlcat(char *dst, const char *src, size_t siz);
|
||||||
|
#endif
|
||||||
|
])
|
||||||
|
|
||||||
dnl provide strlcpy compat prototype.
|
dnl provide strlcpy compat prototype.
|
||||||
dnl $1: unique name for compat code
|
dnl $1: unique name for compat code
|
||||||
AC_DEFUN([AHX_CONFIG_STRLCPY],
|
AC_DEFUN([AHX_CONFIG_STRLCPY],
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,6 @@
|
||||||
|
21 January 2010: Wouter
|
||||||
|
- acx_nlnetlabs.m4 synchronised with nsd's version.
|
||||||
|
|
||||||
20 January 2010: Wouter
|
20 January 2010: Wouter
|
||||||
- Fixup lookup trouble for parent-child domains on the first query.
|
- Fixup lookup trouble for parent-child domains on the first query.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue