From: Miek Gieben Date: Wed, 11 Jan 2006 15:03:13 +0000 (+0000) Subject: removed the isblank stuff. this was added because of solaris, but X-Git-Tag: release-1.1.0~432 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6afc467484c710791777bef04d77a3dbae213100;p=thirdparty%2Fldns.git removed the isblank stuff. this was added because of solaris, but with the -D stuff removed it doesn't seem to be needed. It was not neeed on Linux/FreeBSD so removing it --- diff --git a/configure.ac b/configure.ac index ae0289fe..5fd00e7c 100644 --- a/configure.ac +++ b/configure.ac @@ -128,7 +128,6 @@ AC_CHECK_HEADERS(sys/param.h sys/mount.h,,, ]) AC_FUNC_MALLOC -AC_CHECK_FUNCS(isblank) AC_REPLACE_FUNCS(b64_pton) AC_REPLACE_FUNCS(b64_ntop) diff --git a/ldns/util.h.in b/ldns/util.h.in index d2c7b1c6..8b8a9ec5 100644 --- a/ldns/util.h.in +++ b/ldns/util.h.in @@ -105,15 +105,6 @@ ldns_write_uint32(void *dst, uint32_t data) #endif } -#ifndef HAVE_ISBLANK -/* gnuism */ -int -isblank(int c) -{ - return (c==' ') || (c=='\t'); -} -#endif - /* warning. */ INLINE void ldns_write_uint64_as_uint48(void *dst, uint64_t data)