summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2010-03-09 17:01:40 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2010-03-09 17:01:40 +0000
commit967823bcbc807492f562c85260a653a39eed2e23 (patch)
tree53515263f2d11dc84efbb475f7f340f9c3672513
parent250a3ddc63de137b12903959e6aba30a21674d51 (diff)
downloadpcre-967823bcbc807492f562c85260a653a39eed2e23.tar.gz
Fix "srtoq" typo in configure.ac.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@506 2f5784b3-3f2a-0410-8824-cb99058d5e15
-rw-r--r--ChangeLog2
-rw-r--r--configure.ac2
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 6097440..c56871b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -62,6 +62,8 @@ Version 8.02 01-Mar-2010
overrun had occurred. This is a "should never occur" error, but it can be
triggered by pathological patterns such as hundreds of nested parentheses.
The checks now trigger 100 bytes before the end of the workspace.
+
+15. Fix typo in configure.ac: "srtoq" should be "strtoq".
Version 8.01 19-Jan-2010
diff --git a/configure.ac b/configure.ac
index f478f43..7d93840 100644
--- a/configure.ac
+++ b/configure.ac
@@ -354,7 +354,7 @@ AH_TEMPLATE(HAVE_STRTOLL, [Define to 1 if you have `strtoll'.])
AH_TEMPLATE(HAVE__STRTOI64, [Define to 1 if you have `_strtoi64'.])
AH_TEMPLATE(HAVE_STRTOIMAX, [Define to 1 if you have `strtoimax'.])
have_strto_fn=0
-for fn in srtoq strtoll _strtoi64 strtoimax; do
+for fn in strtoq strtoll _strtoi64 strtoimax; do
AC_MSG_CHECKING([for $fn])
if test "$fn" = strtoimax; then
include=stdint.h