aboutsummaryrefslogtreecommitdiffstats
path: root/acinclude.m4
diff options
context:
space:
mode:
authorStephen Fisher <steve@stephen-fisher.com>2008-04-07 04:38:59 +0000
committerStephen Fisher <steve@stephen-fisher.com>2008-04-07 04:38:59 +0000
commit545d54ae745aa147ffa2e883dd0b982b56f86761 (patch)
treef121fab095b6c8e6f5099a41afcad665296ac0d3 /acinclude.m4
parent13802b1d8427da55fb2290b953b1453a9c43095c (diff)
Remove GTK1 code.
svn path=/trunk/; revision=24828
Diffstat (limited to 'acinclude.m4')
-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