summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--acinclude.m46
1 files changed, 0 insertions, 6 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 8277f2ff84..9a67959a57 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -1564,20 +1564,14 @@ AC_DEFUN([AC_WIRESHARK_CHECK_64BIT_FORMAT],
AC_LANG_SOURCE(
[[
#include <glib.h>
- #if GTK_MAJOR_VERSION >= 2
#include <glib/gprintf.h>
- #endif
#include <stdio.h>
main()
{
guint64 t = 1;
char strbuf[16+1];
- #if GTK_MAJOR_VERSION >= 2
g_snprintf(strbuf, sizeof strbuf, "%016$1x", t << 32);
- #else
- snprintf(strbuf, sizeof strbuf, "%016$1x", t << 32);
- #endif
if (strcmp(strbuf, "0000000100000000") == 0)
exit(0);
else