aboutsummaryrefslogtreecommitdiffstats
path: root/epan/configure.in
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-10-28 01:27:59 +0000
committerGuy Harris <guy@alum.mit.edu>2001-10-28 01:27:59 +0000
commit594c839f55a2adbdda0367f08213d3e186ce2851 (patch)
treebf1112032d9bc65094eaf0ff42f5cb5f2fc9119f /epan/configure.in
parent6eb4ae7a7dd92192f4bfc9dfb052f8ea21676e69 (diff)
Check, in the configure script in the epan directory, whether we have
"strptime()" and, if not, define NEED_STRPTIME_H. svn path=/trunk/; revision=4093
Diffstat (limited to 'epan/configure.in')
-rw-r--r--epan/configure.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/epan/configure.in b/epan/configure.in
index e2beeac93d..872061c11b 100644
--- a/epan/configure.in
+++ b/epan/configure.in
@@ -1,4 +1,4 @@
-# $Id: configure.in,v 1.13 2001/10/12 17:17:05 gerald Exp $
+# $Id: configure.in,v 1.14 2001/10/28 01:27:59 guy Exp $
dnl
dnl Process this file with autoconf 2.13 or later to produce a
dnl configure script; 2.12 doesn't generate a "configure" script that
@@ -156,6 +156,8 @@ fi
AC_SUBST(INET_NTOP_C)
AC_SUBST(INET_NTOP_O)
+AC_CHECK_FUNC(strptime, , [AC_DEFINE(NEED_STRPTIME_H)])
+
#
# Check whether GLib modules are supported, to determine whether we
# can support plugins.