diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2007-04-16 07:11:45 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2007-04-16 07:11:45 +0000 |
commit | cd121fcc5f2a1ce24c057d8775a24f5497f03a36 (patch) | |
tree | 1571040d72b55f78238118755f0a84789ce55da0 /net | |
parent | [patch] cleanup non-supported FreeBSD versions (diff) |
Fix breagake due to recent BIND9 changes to resolver.
Notes
Notes:
svn path=/head/; revision=190080
Diffstat (limited to 'net')
-rw-r--r-- | net/openpbx.org/files/patch-corelib::utils.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/net/openpbx.org/files/patch-corelib::utils.c b/net/openpbx.org/files/patch-corelib::utils.c new file mode 100644 index 000000000000..afe27a3b6574 --- /dev/null +++ b/net/openpbx.org/files/patch-corelib::utils.c @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- corelib/utils.c ++++ corelib/utils.c +@@ -61,7 +61,7 @@ + static char base64[64]; + static char b2a[256]; + +-#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined( __NetBSD__ ) || defined(__APPLE__) || defined(__CYGWIN__) ++#if (defined(__FreeBSD__) && __FreeBSD_version < 601103) || defined(__OpenBSD__) || defined( __NetBSD__ ) || defined(__APPLE__) || defined(__CYGWIN__) + + /* duh? ERANGE value copied from web... */ + #define ERANGE 34 |