summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorTatsuo Ishii2001-02-19 05:16:40 +0000
committerTatsuo Ishii2001-02-19 05:16:40 +0000
commit87117f5d9e33d5a6157f62287160585588e5e62a (patch)
treef372d06a1a6b13c6541885ec45281d15cb189d34 /configure.in
parenta276392e5223a9cdb3160ecde8e4baa43e45cd66 (diff)
Fix nasty bug in configure.
STRTOL='strtoul.o' --> STRTOUL='strtoul.o'
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 063bb18564e..194ff03e7d4 100644
--- a/configure.in
+++ b/configure.in
@@ -865,7 +865,7 @@ AC_CHECK_FUNC(strtol,
AC_SUBST(STRTOL)
AC_CHECK_FUNC(strtoul,
AC_DEFINE(HAVE_STRTOUL),
- STRTOL='strtoul.o')
+ STRTOUL='strtoul.o')
AC_SUBST(STRTOUL)
AC_CHECK_FUNC(strcasecmp,
AC_DEFINE(HAVE_STRCASECMP),