]> git.ipfire.org Git - thirdparty/ldns.git/commitdiff
removed the isblank stuff. this was added because of solaris, but
authorMiek Gieben <miekg@NLnetLabs.nl>
Wed, 11 Jan 2006 15:03:13 +0000 (15:03 +0000)
committerMiek Gieben <miekg@NLnetLabs.nl>
Wed, 11 Jan 2006 15:03:13 +0000 (15:03 +0000)
with the -D stuff removed it doesn't seem to be needed. It was not
neeed on Linux/FreeBSD so removing it

configure.ac
ldns/util.h.in

index ae0289feb5f8054c8e7a077f50494fd4c6db7db1..5fd00e7ca77520da32de76daf1b2957d8786a9eb 100644 (file)
@@ -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)
index d2c7b1c658948f20ad584908a56bda84d2341671..8b8a9ec5d3c0ec7591bbfddcd0c18812d0b55257 100644 (file)
@@ -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)