diff options
author | Ronnie Sahlberg <ronnie_sahlberg@ozemail.com.au> | 2006-07-20 10:19:47 +0000 |
---|---|---|
committer | Ronnie Sahlberg <ronnie_sahlberg@ozemail.com.au> | 2006-07-20 10:19:47 +0000 |
commit | 950bd739489f5b44bf0f70655908199bed0b5dd1 (patch) | |
tree | a652b22219b1a809c1d52687e6e95b9ed0d04370 /configure.in | |
parent | e27d8be9d3cd16b990f6fa3e7ef6f86736fc4c47 (diff) | |
download | wireshark-950bd739489f5b44bf0f70655908199bed0b5dd1.tar.gz wireshark-950bd739489f5b44bf0f70655908199bed0b5dd1.tar.bz2 wireshark-950bd739489f5b44bf0f70655908199bed0b5dd1.zip |
we dont need our own snprintf any more since we always use g_snprintf() instead.
svn path=/trunk/; revision=18771
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/configure.in b/configure.in index 42ede6deab..d4f915e5aa 100644 --- a/configure.in +++ b/configure.in @@ -1064,21 +1064,6 @@ fi AC_SUBST(GETOPT_C) AC_SUBST(GETOPT_O) -# If there's a system out there that has snprintf and _doesn't_ have vsnprintf, -# then this won't work. -SNPRINTF_C="" -SNPRINTF_O="" -AC_CHECK_FUNC(snprintf, SNPRINTF_O="", - [SNPRINTF_O="snprintf.o" - AC_DEFINE(NEED_SNPRINTF_H, 1, [Define if sprintf.h needs to be included]) -]) -if test "$ac_cv_func_snprintf" = no ; then - SNPRINTF_C="snprintf.c" - SNPRINTF_O="snprintf.o" -fi -AC_SUBST(SNPRINTF_C) -AC_SUBST(SNPRINTF_O) - AC_CHECK_FUNC(strerror, STRERROR_O="", [STRERROR_O="strerror.o" AC_DEFINE(NEED_STRERROR_H, 1, [Define if strerror.h needs to be included]) |