aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2008-06-04 01:30:40 +0000
committerGuy Harris <guy@alum.mit.edu>2008-06-04 01:30:40 +0000
commit160a305efab63b3b0050a473af3e0cd5bb9ff0bc (patch)
treec4facb25570cdb685efef6ea7fd0dcfcb001e743 /configure.in
parent9fb914942aeb9c81d23de8f2e5e9db7855170109 (diff)
downloadwireshark-160a305efab63b3b0050a473af3e0cd5bb9ff0bc.tar.gz
wireshark-160a305efab63b3b0050a473af3e0cd5bb9ff0bc.tar.bz2
wireshark-160a305efab63b3b0050a473af3e0cd5bb9ff0bc.zip
g_ascii_strtoull() is in GLib 2.2 and later, and we require GLib 2.4 or
later, so there's no longer any need to have our own g_ascii_strtoull. svn path=/trunk/; revision=25423
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in22
1 files changed, 0 insertions, 22 deletions
diff --git a/configure.in b/configure.in
index 7e7fb6f2b0..1faa82a783 100644
--- a/configure.in
+++ b/configure.in
@@ -1280,28 +1280,6 @@ fi
AC_SUBST(MKSTEMP_C)
AC_SUBST(MKSTEMP_O)
-ac_save_LIBS="$LIBS"
-LIBS="$GLIB_LIBS $LIBS"
-G_ASCII_STRTOULL_C=""
-G_ASCII_STRTOULL_O=""
-G_ASCII_STRTOULL_LO=""
-AC_CHECK_FUNC(g_ascii_strtoull,
- [G_ASCII_STRTOULL_O=""
- G_ASCII_STRTOULL_LO=""],
- [G_ASCII_STRTOULL_O="g_ascii_strtoull.o"
- G_ASCII_STRTOULL_LO="g_ascii_strtoull.lo"
- AC_DEFINE(NEED_G_ASCII_STRTOULL_H, 1, [Define if g_ascii_strtoull.h needs to be included])
-])
-LIBS="$ac_save_LIBS"
-if test "$ac_cv_func_g_ascii_strtoull" = no ; then
- G_ASCII_STRTOULL_C="g_ascii_strtoull.c"
- G_ASCII_STRTOULL_O="g_ascii_strtoull.o"
- G_ASCII_STRTOULL_LO="g_ascii_strtoull.lo"
-fi
-AC_SUBST(G_ASCII_STRTOULL_C)
-AC_SUBST(G_ASCII_STRTOULL_O)
-AC_SUBST(G_ASCII_STRTOULL_LO)
-
AC_CHECK_FUNC(inet_aton,
[INET_ATON_O=""
INET_ATON_LO=""],