[Pcre-svn] [506] code/trunk: Fix "srtoq" typo in configure.a…

Página Inicial
Delete this message
Autor: Subversion repository
Data:  
Para: pcre-svn
Assunto: [Pcre-svn] [506] code/trunk: Fix "srtoq" typo in configure.ac.
Revision: 506
          http://vcs.pcre.org/viewvc?view=rev&revision=506
Author:   ph10
Date:     2010-03-09 17:01:40 +0000 (Tue, 09 Mar 2010)


Log Message:
-----------
Fix "srtoq" typo in configure.ac.

Modified Paths:
--------------
    code/trunk/ChangeLog
    code/trunk/configure.ac


Modified: code/trunk/ChangeLog
===================================================================
--- code/trunk/ChangeLog    2010-03-09 16:50:47 UTC (rev 505)
+++ code/trunk/ChangeLog    2010-03-09 17:01:40 UTC (rev 506)
@@ -62,6 +62,8 @@
     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

Modified: code/trunk/configure.ac
===================================================================
--- code/trunk/configure.ac    2010-03-09 16:50:47 UTC (rev 505)
+++ code/trunk/configure.ac    2010-03-09 17:01:40 UTC (rev 506)
@@ -354,7 +354,7 @@
 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