chiark / gitweb /
site: dynamically create and destroy transform instances
[secnet.git] / configure.in
index 6959e2854a0cd610dbc2437190da82e3a9340b76..747d901c457c3113c08312c5bc2ebf11c2c4cf1b 100644 (file)
@@ -70,9 +70,6 @@ AC_CHECK_LIB(resolv,inet_aton)
 AC_CHECK_LIB(adns,adns_init)
 REQUIRE_HEADER([adns.h])
 
-dnl check for getopt in standard library
-AC_REPLACE_FUNCS([snprintf])
-
 AC_OUTPUT(Makefile,echo timestamp >stamp-h)
 
 AH_TOP([
@@ -132,12 +129,6 @@ typedef unsigned char uint8_t;
 #endif
 #endif
 
-#ifndef HAVE_SNPRINTF
-#include <stdio.h>
-#include <stdarg.h>
-#include "snprintf.h"
-#endif
-
 #ifdef __GNUC__
 #define NORETURN(_x) void _x __attribute__ ((noreturn))
 #define FORMAT(_a,_b,_c) __attribute__ ((format (_a,_b,_c)))