diff options
-rw-r--r-- | NEWS | 10 | ||||
-rw-r--r-- | Zend/zend_ini_parser.c | 712 | ||||
-rw-r--r-- | Zend/zend_ini_parser.h | 31 | ||||
-rw-r--r-- | Zend/zend_ini_parser.output | 6 | ||||
-rw-r--r-- | Zend/zend_language_parser.c | 840 | ||||
-rw-r--r-- | Zend/zend_language_parser.h | 31 | ||||
-rw-r--r-- | Zend/zend_language_parser.output | 2578 | ||||
-rwxr-xr-x | configure | 3263 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | generated_lists | 2 | ||||
-rw-r--r-- | main/php_version.h | 6 | ||||
-rw-r--r-- | sapi/cgi/cgi_main.c | 21 | ||||
-rw-r--r-- | sapi/cgi/tests/apache_request_headers.phpt | 49 |
13 files changed, 3771 insertions, 3780 deletions
@@ -1,6 +1,14 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -03 Mar 2012, PHP 5.4.2 +08 May 2012, PHP 5.4.3 + +- CGI + . Re-Fix PHP-CGI query string parameter vulnerability, CVE-2012-1823. + (Stas) + . Fix bug #61807 - Buffer Overflow in apache_request_headers. + (nyt-php at countercultured dot net). + +03 May 2012, PHP 5.4.2 - Fix PHP-CGI query string parameter vulnerability, CVE-2012-1823. (Rasmus) diff --git a/Zend/zend_ini_parser.c b/Zend/zend_ini_parser.c index e0198e37b..d97f68967 100644 --- a/Zend/zend_ini_parser.c +++ b/Zend/zend_ini_parser.c @@ -1,21 +1,24 @@ -/* A Bison parser, made by GNU Bison 2.5. */ +/* A Bison parser, made by GNU Bison 2.3. */ -/* Bison implementation for Yacc-like parsers in C - - Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. - - This program is free software: you can redistribute it and/or modify +/* Skeleton implementation for Bison's Yacc-like parsers in C + + Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 + Free Software Foundation, Inc. + + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - + the Free Software Foundation; either version 2, or (at your option) + any later version. + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU General Public License - along with this program. If not, see <http://www.gnu.org/licenses/>. */ + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work @@ -26,7 +29,7 @@ special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. - + This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ @@ -44,7 +47,7 @@ #define YYBISON 1 /* Bison version. */ -#define YYBISON_VERSION "2.5" +#define YYBISON_VERSION "2.3" /* Skeleton name. */ #define YYSKELETON_NAME "yacc.c" @@ -52,23 +55,58 @@ /* Pure parsers. */ #define YYPURE 1 -/* Push parsers. */ -#define YYPUSH 0 - -/* Pull parsers. */ -#define YYPULL 1 - /* Using locations. */ #define YYLSP_NEEDED 0 /* Substitute the variable and function names. */ -#define yyparse ini_parse -#define yylex ini_lex -#define yyerror ini_error -#define yylval ini_lval -#define yychar ini_char -#define yydebug ini_debug -#define yynerrs ini_nerrs +#define yyparse ini_parse +#define yylex ini_lex +#define yyerror ini_error +#define yylval ini_lval +#define yychar ini_char +#define yydebug ini_debug +#define yynerrs ini_nerrs + + +/* Tokens. */ +#ifndef YYTOKENTYPE +# define YYTOKENTYPE + /* Put the tokens into the symbol table, so that GDB and other debuggers + know about them. */ + enum yytokentype { + TC_SECTION = 258, + TC_RAW = 259, + TC_CONSTANT = 260, + TC_NUMBER = 261, + TC_STRING = 262, + TC_WHITESPACE = 263, + TC_LABEL = 264, + TC_OFFSET = 265, + TC_DOLLAR_CURLY = 266, + TC_VARNAME = 267, + TC_QUOTED_STRING = 268, + BOOL_TRUE = 269, + BOOL_FALSE = 270, + END_OF_LINE = 271 + }; +#endif +/* Tokens. */ +#define TC_SECTION 258 +#define TC_RAW 259 +#define TC_CONSTANT 260 +#define TC_NUMBER 261 +#define TC_STRING 262 +#define TC_WHITESPACE 263 +#define TC_LABEL 264 +#define TC_OFFSET 265 +#define TC_DOLLAR_CURLY 266 +#define TC_VARNAME 267 +#define TC_QUOTED_STRING 268 +#define BOOL_TRUE 269 +#define BOOL_FALSE 270 +#define END_OF_LINE 271 + + /* Copy the first part of user declarations. */ @@ -321,7 +359,6 @@ ZEND_API int zend_parse_ini_string(char *str, zend_bool unbuffered_errors, int s - /* Enabling traces. */ #ifndef YYDEBUG # define YYDEBUG 0 @@ -340,59 +377,20 @@ ZEND_API int zend_parse_ini_string(char *str, zend_bool unbuffered_errors, int s # define YYTOKEN_TABLE 0 #endif - -/* Tokens. */ -#ifndef YYTOKENTYPE -# define YYTOKENTYPE - /* Put the tokens into the symbol table, so that GDB and other debuggers - know about them. */ - enum yytokentype { - TC_SECTION = 258, - TC_RAW = 259, - TC_CONSTANT = 260, - TC_NUMBER = 261, - TC_STRING = 262, - TC_WHITESPACE = 263, - TC_LABEL = 264, - TC_OFFSET = 265, - TC_DOLLAR_CURLY = 266, - TC_VARNAME = 267, - TC_QUOTED_STRING = 268, - BOOL_TRUE = 269, - BOOL_FALSE = 270, - END_OF_LINE = 271 - }; -#endif -/* Tokens. */ -#define TC_SECTION 258 -#define TC_RAW 259 -#define TC_CONSTANT 260 -#define TC_NUMBER 261 -#define TC_STRING 262 -#define TC_WHITESPACE 263 -#define TC_LABEL 264 -#define TC_OFFSET 265 -#define TC_DOLLAR_CURLY 266 -#define TC_VARNAME 267 -#define TC_QUOTED_STRING 268 -#define BOOL_TRUE 269 -#define BOOL_FALSE 270 -#define END_OF_LINE 271 - - - - #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef int YYSTYPE; -# define YYSTYPE_IS_TRIVIAL 1 # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 +# define YYSTYPE_IS_TRIVIAL 1 #endif + /* Copy the second part of user declarations. */ +/* Line 216 of yacc.c. */ + #ifdef short # undef short @@ -467,14 +465,14 @@ typedef short int yytype_int16; #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static int -YYID (int yyi) +YYID (int i) #else static int -YYID (yyi) - int yyi; +YYID (i) + int i; #endif { - return yyi; + return i; } #endif @@ -495,11 +493,11 @@ YYID (yyi) # define alloca _alloca # else # define YYSTACK_ALLOC alloca -# if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ +# if ! defined _ALLOCA_H && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) # include <stdlib.h> /* INFRINGES ON USER NAME SPACE */ -# ifndef EXIT_SUCCESS -# define EXIT_SUCCESS 0 +# ifndef _STDLIB_H +# define _STDLIB_H 1 # endif # endif # endif @@ -522,24 +520,24 @@ YYID (yyi) # ifndef YYSTACK_ALLOC_MAXIMUM # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM # endif -# if (defined __cplusplus && ! defined EXIT_SUCCESS \ +# if (defined __cplusplus && ! defined _STDLIB_H \ && ! ((defined YYMALLOC || defined malloc) \ && (defined YYFREE || defined free))) # include <stdlib.h> /* INFRINGES ON USER NAME SPACE */ -# ifndef EXIT_SUCCESS -# define EXIT_SUCCESS 0 +# ifndef _STDLIB_H +# define _STDLIB_H 1 # endif # endif # ifndef YYMALLOC # define YYMALLOC malloc -# if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ +# if ! defined malloc && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ # endif # endif # ifndef YYFREE # define YYFREE free -# if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ +# if ! defined free && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void free (void *); /* INFRINGES ON USER NAME SPACE */ # endif @@ -555,9 +553,9 @@ void free (void *); /* INFRINGES ON USER NAME SPACE */ /* A type that is properly aligned for any stack member. */ union yyalloc { - yytype_int16 yyss_alloc; - YYSTYPE yyvs_alloc; -}; + yytype_int16 yyss; + YYSTYPE yyvs; + }; /* The size of the maximum gap between one aligned stack and the next. */ # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) @@ -568,27 +566,6 @@ union yyalloc ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \ + YYSTACK_GAP_MAXIMUM) -# define YYCOPY_NEEDED 1 - -/* Relocate STACK from its old location to the new one. The - local variables YYSIZE and YYSTACKSIZE give the old and new number of - elements in the stack, and YYPTR gives the new location of the - stack. Advance YYPTR to a properly aligned location for the next - stack. */ -# define YYSTACK_RELOCATE(Stack_alloc, Stack) \ - do \ - { \ - YYSIZE_T yynewbytes; \ - YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \ - Stack = &yyptr->Stack_alloc; \ - yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ - yyptr += yynewbytes / sizeof (*yyptr); \ - } \ - while (YYID (0)) - -#endif - -#if defined YYCOPY_NEEDED && YYCOPY_NEEDED /* Copy COUNT objects from FROM to TO. The source and destination do not overlap. */ # ifndef YYCOPY @@ -606,7 +583,24 @@ union yyalloc while (YYID (0)) # endif # endif -#endif /* !YYCOPY_NEEDED */ + +/* Relocate STACK from its old location to the new one. The + local variables YYSIZE and YYSTACKSIZE give the old and new number of + elements in the stack, and YYPTR gives the new location of the + stack. Advance YYPTR to a properly aligned location for the next + stack. */ +# define YYSTACK_RELOCATE(Stack) \ + do \ + { \ + YYSIZE_T yynewbytes; \ + YYCOPY (&yyptr->Stack, Stack, yysize); \ + Stack = &yyptr->Stack; \ + yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ + yyptr += yynewbytes / sizeof (*yyptr); \ + } \ + while (YYID (0)) + +#endif /* YYFINAL -- State number of the termination state. */ #define YYFINAL 2 @@ -711,7 +705,7 @@ static const char *const yytname[] = "$end", "error", "$undefined", "TC_SECTION", "TC_RAW", "TC_CONSTANT", "TC_NUMBER", "TC_STRING", "TC_WHITESPACE", "TC_LABEL", "TC_OFFSET", "TC_DOLLAR_CURLY", "TC_VARNAME", "TC_QUOTED_STRING", "BOOL_TRUE", - "BOOL_FALSE", "END_OF_LINE", "'='", "':'", "','", "'.'", "'\"'", "'\\''", + "BOOL_FALSE", "END_OF_LINE", "'='", "':'", "','", "'.'", "'\"'", "'''", "'^'", "'+'", "'-'", "'/'", "'*'", "'%'", "'$'", "'~'", "'<'", "'>'", "'?'", "'@'", "'{'", "'}'", "'|'", "'&'", "'!'", "']'", "'('", "')'", "$accept", "statement_list", "statement", "section_string_or_value", @@ -754,8 +748,8 @@ static const yytype_uint8 yyr2[] = 1, 1, 1, 1, 1, 1, 1, 1, 1 }; -/* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM. - Performed when YYTABLE doesn't specify something else to do. Zero +/* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state + STATE-NUM when YYTABLE doesn't specify something else to do. Zero means the default is an error. */ static const yytype_uint8 yydefact[] = { @@ -798,7 +792,8 @@ static const yytype_int8 yypgoto[] = /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If positive, shift that token. If negative, reduce the rule which - number is the opposite. If YYTABLE_NINF, syntax error. */ + number is the opposite. If zero, do what YYDEFACT says. + If YYTABLE_NINF, syntax error. */ #define YYTABLE_NINF -1 static const yytype_uint8 yytable[] = { @@ -815,12 +810,6 @@ static const yytype_uint8 yytable[] = 0, 0, 4, 5, 0, 47, 0, 68, 0, 6 }; -#define yypact_value_is_default(yystate) \ - ((yystate) == (-36)) - -#define yytable_value_is_error(yytable_value) \ - YYID (0) - static const yytype_int8 yycheck[] = { 3, 25, 37, 38, 4, 5, 6, 7, 8, 33, @@ -861,18 +850,9 @@ static const yytype_uint8 yystos[] = /* Like YYERROR except do call yyerror. This remains here temporarily to ease the transition to the new meaning of YYERROR, for GCC. - Once GCC version 2 has supplanted version 1, this can go. However, - YYFAIL appears to be in use. Nevertheless, it is formally deprecated - in Bison 2.4.2's NEWS entry, where a plan to phase it out is - discussed. */ + Once GCC version 2 has supplanted version 1, this can go. */ #define YYFAIL goto yyerrlab -#if defined YYFAIL - /* This is here to suppress warnings from the GCC cpp's - -Wunused-macros. Normally we don't worry about that warning, but - some users do, and we want to make it easy for users to remove - YYFAIL uses, which will produce warnings from Bison 2.5. */ -#endif #define YYRECOVERING() (!!yyerrstatus) @@ -882,6 +862,7 @@ do \ { \ yychar = (Token); \ yylval = (Value); \ + yytoken = YYTRANSLATE (yychar); \ YYPOPSTACK (1); \ goto yybackup; \ } \ @@ -923,10 +904,19 @@ while (YYID (0)) #endif -/* This macro is provided for backward compatibility. */ +/* YY_LOCATION_PRINT -- Print the location on the stream. + This macro was not mandated originally: define only if we know + we won't break user code: when these are the locations we know. */ #ifndef YY_LOCATION_PRINT -# define YY_LOCATION_PRINT(File, Loc) ((void) 0) +# if defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL +# define YY_LOCATION_PRINT(File, Loc) \ + fprintf (File, "%d.%d-%d.%d", \ + (Loc).first_line, (Loc).first_column, \ + (Loc).last_line, (Loc).last_column) +# else +# define YY_LOCATION_PRINT(File, Loc) ((void) 0) +# endif #endif @@ -1030,20 +1020,17 @@ yy_symbol_print (yyoutput, yytype, yyvaluep) #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void -yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop) +yy_stack_print (yytype_int16 *bottom, yytype_int16 *top) #else static void -yy_stack_print (yybottom, yytop) - yytype_int16 *yybottom; - yytype_int16 *yytop; +yy_stack_print (bottom, top) + yytype_int16 *bottom; + yytype_int16 *top; #endif { YYFPRINTF (stderr, "Stack now"); - for (; yybottom <= yytop; yybottom++) - { - int yybot = *yybottom; - YYFPRINTF (stderr, " %d", yybot); - } + for (; bottom <= top; ++bottom) + YYFPRINTF (stderr, " %d", *bottom); YYFPRINTF (stderr, "\n"); } @@ -1077,11 +1064,11 @@ yy_reduce_print (yyvsp, yyrule) /* The symbols being reduced. */ for (yyi = 0; yyi < yynrhs; yyi++) { - YYFPRINTF (stderr, " $%d = ", yyi + 1); + fprintf (stderr, " $%d = ", yyi + 1); yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi], &(yyvsp[(yyi + 1) - (yynrhs)]) ); - YYFPRINTF (stderr, "\n"); + fprintf (stderr, "\n"); } } @@ -1118,6 +1105,7 @@ int yydebug; # define YYMAXDEPTH 10000 #endif + #if YYERROR_VERBOSE @@ -1220,142 +1208,115 @@ yytnamerr (char *yyres, const char *yystr) } # endif -/* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message - about the unexpected token YYTOKEN for the state stack whose top is - YYSSP. - - Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is - not large enough to hold the message. In that case, also set - *YYMSG_ALLOC to the required number of bytes. Return 2 if the - required number of bytes is too large to store. */ -static int -yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg, - yytype_int16 *yyssp, int yytoken) +/* Copy into YYRESULT an error message about the unexpected token + YYCHAR while in state YYSTATE. Return the number of bytes copied, + including the terminating null byte. If YYRESULT is null, do not + copy anything; just return the number of bytes that would be + copied. As a special case, return 0 if an ordinary "syntax error" + message will do. Return YYSIZE_MAXIMUM if overflow occurs during + size calculation. */ +static YYSIZE_T +yysyntax_error (char *yyresult, int yystate, int yychar) { - YYSIZE_T yysize0 = yytnamerr (0, yytname[yytoken]); - YYSIZE_T yysize = yysize0; - YYSIZE_T yysize1; - enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; - /* Internationalized format string. */ - const char *yyformat = 0; - /* Arguments of yyformat. */ - char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; - /* Number of reported tokens (one for the "unexpected", one per - "expected"). */ - int yycount = 0; - - /* There are many possibilities here to consider: - - Assume YYFAIL is not used. It's too flawed to consider. See - <http://lists.gnu.org/archive/html/bison-patches/2009-12/msg00024.html> - for details. YYERROR is fine as it does not invoke this - function. - - If this state is a consistent state with a default action, then - the only way this function was invoked is if the default action - is an error action. In that case, don't check for expected - tokens because there are none. - - The only way there can be no lookahead present (in yychar) is if - this state is a consistent state with a default action. Thus, - detecting the absence of a lookahead is sufficient to determine - that there is no unexpected or expected token to report. In that - case, just report a simple "syntax error". - - Don't assume there isn't a lookahead just because this state is a - consistent state with a default action. There might have been a - previous inconsistent state, consistent state with a non-default - action, or user semantic action that manipulated yychar. - - Of course, the expected token list depends on states to have - correct lookahead information, and it depends on the parser not - to perform extra reductions after fetching a lookahead from the - scanner and before detecting a syntax error. Thus, state merging - (from LALR or IELR) and default reductions corrupt the expected - token list. However, the list is correct for canonical LR with - one exception: it will still contain any token that will not be - accepted due to an error action in a later state. - */ - if (yytoken != YYEMPTY) - { - int yyn = yypact[*yyssp]; - yyarg[yycount++] = yytname[yytoken]; - if (!yypact_value_is_default (yyn)) - { - /* Start YYX at -YYN if negative to avoid negative indexes in - YYCHECK. In other words, skip the first -YYN actions for - this state because they are default actions. */ - int yyxbegin = yyn < 0 ? -yyn : 0; - /* Stay within bounds of both yycheck and yytname. */ - int yychecklim = YYLAST - yyn + 1; - int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS; - int yyx; - - for (yyx = yyxbegin; yyx < yyxend; ++yyx) - if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR - && !yytable_value_is_error (yytable[yyx + yyn])) - { - if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) - { - yycount = 1; - yysize = yysize0; - break; - } - yyarg[yycount++] = yytname[yyx]; - yysize1 = yysize + yytnamerr (0, yytname[yyx]); - if (! (yysize <= yysize1 - && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) - return 2; - yysize = yysize1; - } - } - } + int yyn = yypact[yystate]; - switch (yycount) + if (! (YYPACT_NINF < yyn && yyn <= YYLAST)) + return 0; + else { -# define YYCASE_(N, S) \ - case N: \ - yyformat = S; \ - break - YYCASE_(0, YY_("syntax error")); - YYCASE_(1, YY_("syntax error, unexpected %s")); - YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s")); - YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s")); - YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s")); - YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s")); -# undef YYCASE_ - } + int yytype = YYTRANSLATE (yychar); + YYSIZE_T yysize0 = yytnamerr (0, yytname[yytype]); + YYSIZE_T yysize = yysize0; + YYSIZE_T yysize1; + int yysize_overflow = 0; + enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; + char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; + int yyx; + +# if 0 + /* This is so xgettext sees the translatable formats that are + constructed on the fly. */ + YY_("syntax error, unexpected %s"); + YY_("syntax error, unexpected %s, expecting %s"); + YY_("syntax error, unexpected %s, expecting %s or %s"); + YY_("syntax error, unexpected %s, expecting %s or %s or %s"); + YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"); +# endif + char *yyfmt; + char const *yyf; + static char const yyunexpected[] = "syntax error, unexpected %s"; + static char const yyexpecting[] = ", expecting %s"; + static char const yyor[] = " or %s"; + char yyformat[sizeof yyunexpected + + sizeof yyexpecting - 1 + + ((YYERROR_VERBOSE_ARGS_MAXIMUM - 2) + * (sizeof yyor - 1))]; + char const *yyprefix = yyexpecting; + + /* Start YYX at -YYN if negative to avoid negative indexes in + YYCHECK. */ + int yyxbegin = yyn < 0 ? -yyn : 0; + + /* Stay within bounds of both yycheck and yytname. */ + int yychecklim = YYLAST - yyn + 1; + int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS; + int yycount = 1; + + yyarg[0] = yytname[yytype]; + yyfmt = yystpcpy (yyformat, yyunexpected); + + for (yyx = yyxbegin; yyx < yyxend; ++yyx) + if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR) + { + if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) + { + yycount = 1; + yysize = yysize0; + yyformat[sizeof yyunexpected - 1] = '\0'; + break; + } + yyarg[yycount++] = yytname[yyx]; + yysize1 = yysize + yytnamerr (0, yytname[yyx]); + yysize_overflow |= (yysize1 < yysize); + yysize = yysize1; + yyfmt = yystpcpy (yyfmt, yyprefix); + yyprefix = yyor; + } - yysize1 = yysize + yystrlen (yyformat); - if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) - return 2; - yysize = yysize1; + yyf = YY_(yyformat); + yysize1 = yysize + yystrlen (yyf); + yysize_overflow |= (yysize1 < yysize); + yysize = yysize1; - if (*yymsg_alloc < yysize) - { - *yymsg_alloc = 2 * yysize; - if (! (yysize <= *yymsg_alloc - && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM)) - *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM; - return 1; - } + if (yysize_overflow) + return YYSIZE_MAXIMUM; - /* Avoid sprintf, as that infringes on the user's name space. - Don't have undefined behavior even if the translation - produced a string with the wrong number of "%s"s. */ - { - char *yyp = *yymsg; - int yyi = 0; - while ((*yyp = *yyformat) != '\0') - if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount) - { - yyp += yytnamerr (yyp, yyarg[yyi++]); - yyformat += 2; - } - else - { - yyp++; - yyformat++; - } - } - return 0; + if (yyresult) + { + /* Avoid sprintf, as that infringes on the user's name space. + Don't have undefined behavior even if the translation + produced a string with the wrong number of "%s"s. */ + char *yyp = yyresult; + int yyi = 0; + while ((*yyp = *yyf) != '\0') + { + if (*yyp == '%' && yyf[1] == 's' && yyi < yycount) + { + yyp += yytnamerr (yyp, yyarg[yyi++]); + yyf += 2; + } + else + { + yyp++; + yyf++; + } + } + } + return yysize; + } } #endif /* YYERROR_VERBOSE */ + /*-----------------------------------------------. | Release the memory associated to this symbol. | @@ -1387,9 +1348,10 @@ yydestruct (yymsg, yytype, yyvaluep) break; } } - + /* Prevent warnings from -Wmissing-prototypes. */ + #ifdef YYPARSE_PARAM #if defined __STDC__ || defined __cplusplus int yyparse (void *YYPARSE_PARAM); @@ -1405,6 +1367,10 @@ int yyparse (); #endif /* ! YYPARSE_PARAM */ + + + + /*----------. | yyparse. | `----------*/ @@ -1431,46 +1397,22 @@ yyparse () #endif #endif { -/* The lookahead symbol. */ + /* The look-ahead symbol. */ int yychar; -/* The semantic value of the lookahead symbol. */ +/* The semantic value of the look-ahead symbol. */ YYSTYPE yylval; - /* Number of syntax errors so far. */ - int yynerrs; - - int yystate; - /* Number of tokens to shift before error messages enabled. */ - int yyerrstatus; - - /* The stacks and their tools: - `yyss': related to states. - `yyvs': related to semantic values. - - Refer to the stacks thru separate pointers, to allow yyoverflow - to reallocate them elsewhere. */ - - /* The state stack. */ - yytype_int16 yyssa[YYINITDEPTH]; - yytype_int16 *yyss; - yytype_int16 *yyssp; - - /* The semantic value stack. */ - YYSTYPE yyvsa[YYINITDEPTH]; - YYSTYPE *yyvs; - YYSTYPE *yyvsp; - - YYSIZE_T yystacksize; +/* Number of syntax errors so far. */ +int yynerrs; + int yystate; int yyn; int yyresult; - /* Lookahead token as an internal (translated) token number. */ - int yytoken; - /* The variables used to return semantic value and location from the - action routines. */ - YYSTYPE yyval; - + /* Number of tokens to shift before error messages enabled. */ + int yyerrstatus; + /* Look-ahead token as an internal (translated) token number. */ + int yytoken = 0; #if YYERROR_VERBOSE /* Buffer for error messages, and its allocated size. */ char yymsgbuf[128]; @@ -1478,28 +1420,51 @@ YYSTYPE yylval; YYSIZE_T yymsg_alloc = sizeof yymsgbuf; #endif + /* Three stacks and their tools: + `yyss': related to states, + `yyvs': related to semantic values, + `yyls': related to locations. + + Refer to the stacks thru separate pointers, to allow yyoverflow + to reallocate them elsewhere. */ + + /* The state stack. */ + yytype_int16 yyssa[YYINITDEPTH]; + yytype_int16 *yyss = yyssa; + yytype_int16 *yyssp; + + /* The semantic value stack. */ + YYSTYPE yyvsa[YYINITDEPTH]; + YYSTYPE *yyvs = yyvsa; + YYSTYPE *yyvsp; + + + #define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N)) + YYSIZE_T yystacksize = YYINITDEPTH; + + /* The variables used to return semantic value and location from the + action routines. */ + YYSTYPE yyval; + + /* The number of symbols on the RHS of the reduced rule. Keep to zero when no symbol should be popped. */ int yylen = 0; - yytoken = 0; - yyss = yyssa; - yyvs = yyvsa; - yystacksize = YYINITDEPTH; - YYDPRINTF ((stderr, "Starting parse\n")); yystate = 0; yyerrstatus = 0; yynerrs = 0; - yychar = YYEMPTY; /* Cause a token to be read. */ + yychar = YYEMPTY; /* Cause a token to be read. */ /* Initialize stack pointers. Waste one element of value and location stack so that they stay on the same level as the state stack. The wasted elements are never initialized. */ + yyssp = yyss; yyvsp = yyvs; @@ -1529,6 +1494,7 @@ YYSTYPE yylval; YYSTYPE *yyvs1 = yyvs; yytype_int16 *yyss1 = yyss; + /* Each stack pointer address is followed by the size of the data in use in that stack, in bytes. This used to be a conditional around just the two extra args, but that might @@ -1536,6 +1502,7 @@ YYSTYPE yylval; yyoverflow (YY_("memory exhausted"), &yyss1, yysize * sizeof (*yyssp), &yyvs1, yysize * sizeof (*yyvsp), + &yystacksize); yyss = yyss1; @@ -1558,8 +1525,9 @@ YYSTYPE yylval; (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); if (! yyptr) goto yyexhaustedlab; - YYSTACK_RELOCATE (yyss_alloc, yyss); - YYSTACK_RELOCATE (yyvs_alloc, yyvs); + YYSTACK_RELOCATE (yyss); + YYSTACK_RELOCATE (yyvs); + # undef YYSTACK_RELOCATE if (yyss1 != yyssa) YYSTACK_FREE (yyss1); @@ -1570,6 +1538,7 @@ YYSTYPE yylval; yyssp = yyss + yysize - 1; yyvsp = yyvs + yysize - 1; + YYDPRINTF ((stderr, "Stack size increased to %lu\n", (unsigned long int) yystacksize)); @@ -1579,9 +1548,6 @@ YYSTYPE yylval; YYDPRINTF ((stderr, "Entering state %d\n", yystate)); - if (yystate == YYFINAL) - YYACCEPT; - goto yybackup; /*-----------. @@ -1590,16 +1556,16 @@ YYSTYPE yylval; yybackup: /* Do appropriate processing given the current state. Read a - lookahead token if we need one and don't already have one. */ + look-ahead token if we need one and don't already have one. */ - /* First try to decide what to do without reference to lookahead token. */ + /* First try to decide what to do without reference to look-ahead token. */ yyn = yypact[yystate]; - if (yypact_value_is_default (yyn)) + if (yyn == YYPACT_NINF) goto yydefault; - /* Not known => get a lookahead token if don't already have one. */ + /* Not known => get a look-ahead token if don't already have one. */ - /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */ + /* YYCHAR is either YYEMPTY or YYEOF or a valid look-ahead symbol. */ if (yychar == YYEMPTY) { YYDPRINTF ((stderr, "Reading a token: ")); @@ -1625,22 +1591,26 @@ yybackup: yyn = yytable[yyn]; if (yyn <= 0) { - if (yytable_value_is_error (yyn)) - goto yyerrlab; + if (yyn == 0 || yyn == YYTABLE_NINF) + goto yyerrlab; yyn = -yyn; goto yyreduce; } + if (yyn == YYFINAL) + YYACCEPT; + /* Count tokens shifted since error; after three, turn off error status. */ if (yyerrstatus) yyerrstatus--; - /* Shift the lookahead token. */ + /* Shift the look-ahead token. */ YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc); - /* Discard the shifted token. */ - yychar = YYEMPTY; + /* Discard the shifted token unless it is eof. */ + if (yychar != YYEOF) + yychar = YYEMPTY; yystate = yyn; *++yyvsp = yylval; @@ -1921,20 +1891,10 @@ yyreduce: break; +/* Line 1267 of yacc.c. */ default: break; } - /* User semantic actions sometimes alter yychar, and that requires - that yytoken be updated with the new translation. We take the - approach of translating immediately before every use of yytoken. - One alternative is translating here after every semantic action, - but that translation would be missed if the semantic action invokes - YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or - if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an - incorrect destructor might then be invoked immediately. In the - case of YYERROR or YYBACKUP, subsequent parser actions might lead - to an incorrect destructor call or verbose syntax error message - before the lookahead is translated. */ YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); YYPOPSTACK (yylen); @@ -1943,6 +1903,7 @@ yyreduce: *++yyvsp = yyval; + /* Now `shift' the result of the reduction. Determine what state that goes to, based on the state we popped back to and the rule number reduced by. */ @@ -1962,10 +1923,6 @@ yyreduce: | yyerrlab -- here on detecting error | `------------------------------------*/ yyerrlab: - /* Make sure we have latest lookahead translation. See comments at - user semantic actions for why this is necessary. */ - yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar); - /* If not already recovering from an error, report this error. */ if (!yyerrstatus) { @@ -1973,36 +1930,37 @@ yyerrlab: #if ! YYERROR_VERBOSE yyerror (YY_("syntax error")); #else -# define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \ - yyssp, yytoken) { - char const *yymsgp = YY_("syntax error"); - int yysyntax_error_status; - yysyntax_error_status = YYSYNTAX_ERROR; - if (yysyntax_error_status == 0) - yymsgp = yymsg; - else if (yysyntax_error_status == 1) - { - if (yymsg != yymsgbuf) - YYSTACK_FREE (yymsg); - yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc); - if (!yymsg) - { - yymsg = yymsgbuf; - yymsg_alloc = sizeof yymsgbuf; - yysyntax_error_status = 2; - } - else - { - yysyntax_error_status = YYSYNTAX_ERROR; - yymsgp = yymsg; - } - } - yyerror (yymsgp); - if (yysyntax_error_status == 2) - goto yyexhaustedlab; + YYSIZE_T yysize = yysyntax_error (0, yystate, yychar); + if (yymsg_alloc < yysize && yymsg_alloc < YYSTACK_ALLOC_MAXIMUM) + { + YYSIZE_T yyalloc = 2 * yysize; + if (! (yysize <= yyalloc && yyalloc <= YYSTACK_ALLOC_MAXIMUM)) + yyalloc = YYSTACK_ALLOC_MAXIMUM; + if (yymsg != yymsgbuf) + YYSTACK_FREE (yymsg); + yymsg = (char *) YYSTACK_ALLOC (yyalloc); + if (yymsg) + yymsg_alloc = yyalloc; + else + { + yymsg = yymsgbuf; + yymsg_alloc = sizeof yymsgbuf; + } + } + + if (0 < yysize && yysize <= yymsg_alloc) + { + (void) yysyntax_error (yymsg, yystate, yychar); + yyerror (yymsg); + } + else + { + yyerror (YY_("syntax error")); + if (yysize != 0) + goto yyexhaustedlab; + } } -# undef YYSYNTAX_ERROR #endif } @@ -2010,7 +1968,7 @@ yyerrlab: if (yyerrstatus == 3) { - /* If just tried and failed to reuse lookahead token after an + /* If just tried and failed to reuse look-ahead token after an error, discard it. */ if (yychar <= YYEOF) @@ -2027,7 +1985,7 @@ yyerrlab: } } - /* Else will try to reuse lookahead token after shifting the error + /* Else will try to reuse look-ahead token after shifting the error token. */ goto yyerrlab1; @@ -2061,7 +2019,7 @@ yyerrlab1: for (;;) { yyn = yypact[yystate]; - if (!yypact_value_is_default (yyn)) + if (yyn != YYPACT_NINF) { yyn += YYTERROR; if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR) @@ -2084,6 +2042,9 @@ yyerrlab1: YY_STACK_PRINT (yyss, yyssp); } + if (yyn == YYFINAL) + YYACCEPT; + *++yyvsp = yylval; @@ -2108,7 +2069,7 @@ yyabortlab: yyresult = 1; goto yyreturn; -#if !defined(yyoverflow) || YYERROR_VERBOSE +#ifndef yyoverflow /*-------------------------------------------------. | yyexhaustedlab -- memory exhaustion comes here. | `-------------------------------------------------*/ @@ -2119,14 +2080,9 @@ yyexhaustedlab: #endif yyreturn: - if (yychar != YYEMPTY) - { - /* Make sure we have latest lookahead translation. See comments at - user semantic actions for why this is necessary. */ - yytoken = YYTRANSLATE (yychar); - yydestruct ("Cleanup: discarding lookahead", - yytoken, &yylval); - } + if (yychar != YYEOF && yychar != YYEMPTY) + yydestruct ("Cleanup: discarding lookahead", + yytoken, &yylval); /* Do not reclaim the symbols of the rule which action triggered this YYABORT or YYACCEPT. */ YYPOPSTACK (yylen); diff --git a/Zend/zend_ini_parser.h b/Zend/zend_ini_parser.h index b1538eafd..d883f9d40 100644 --- a/Zend/zend_ini_parser.h +++ b/Zend/zend_ini_parser.h @@ -1,21 +1,24 @@ -/* A Bison parser, made by GNU Bison 2.5. */ +/* A Bison parser, made by GNU Bison 2.3. */ -/* Bison interface for Yacc-like parsers in C - - Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. - - This program is free software: you can redistribute it and/or modify +/* Skeleton interface for Bison's Yacc-like parsers in C + + Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 + Free Software Foundation, Inc. + + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - + the Free Software Foundation; either version 2, or (at your option) + any later version. + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU General Public License - along with this program. If not, see <http://www.gnu.org/licenses/>. */ + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work @@ -26,11 +29,10 @@ special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. - + This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ - /* Tokens. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE @@ -74,11 +76,10 @@ #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef int YYSTYPE; -# define YYSTYPE_IS_TRIVIAL 1 # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 +# define YYSTYPE_IS_TRIVIAL 1 #endif - diff --git a/Zend/zend_ini_parser.output b/Zend/zend_ini_parser.output index fc6468a7f..9f7bcda21 100644 --- a/Zend/zend_ini_parser.output +++ b/Zend/zend_ini_parser.output @@ -1,9 +1,9 @@ -Terminals unused in grammar +Terminals which are not used ':' ',' '.' - '\'' + ''' '^' '+' '-' @@ -90,7 +90,7 @@ $end (0) 0 '$' (36) '%' (37) '&' (38) 33 -'\'' (39) +''' (39) '(' (40) 36 ')' (41) 36 '*' (42) diff --git a/Zend/zend_language_parser.c b/Zend/zend_language_parser.c index 7ffcaa592..b3740aad5 100644 --- a/Zend/zend_language_parser.c +++ b/Zend/zend_language_parser.c @@ -1,21 +1,24 @@ -/* A Bison parser, made by GNU Bison 2.5. */ +/* A Bison parser, made by GNU Bison 2.3. */ -/* Bison implementation for Yacc-like parsers in C - - Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. - - This program is free software: you can redistribute it and/or modify +/* Skeleton implementation for Bison's Yacc-like parsers in C + + Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 + Free Software Foundation, Inc. + + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - + the Free Software Foundation; either version 2, or (at your option) + any later version. + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU General Public License - along with this program. If not, see <http://www.gnu.org/licenses/>. */ + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work @@ -26,7 +29,7 @@ special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. - + This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ @@ -44,7 +47,7 @@ #define YYBISON 1 /* Bison version. */ -#define YYBISON_VERSION "2.5" +#define YYBISON_VERSION "2.3" /* Skeleton name. */ #define YYSKELETON_NAME "yacc.c" @@ -52,96 +55,17 @@ /* Pure parsers. */ #define YYPURE 1 -/* Push parsers. */ -#define YYPUSH 0 - -/* Pull parsers. */ -#define YYPULL 1 - /* Using locations. */ #define YYLSP_NEEDED 0 /* Substitute the variable and function names. */ -#define yyparse zendparse -#define yylex zendlex -#define yyerror zenderror -#define yylval zendlval -#define yychar zendchar -#define yydebug zenddebug -#define yynerrs zendnerrs - - -/* Copy the first part of user declarations. */ - - -/* - +----------------------------------------------------------------------+ - | Zend Engine | - +----------------------------------------------------------------------+ - | Copyright (c) 1998-2012 Zend Technologies Ltd. (http://www.zend.com) | - +----------------------------------------------------------------------+ - | This source file is subject to version 2.00 of the Zend license, | - | that is bundled with this package in the file LICENSE, and is | - | available through the world-wide-web at the following url: | - | http://www.zend.com/license/2_00.txt. | - | If you did not receive a copy of the Zend license and are unable to | - | obtain it through the world-wide-web, please send a note to | - | license@zend.com so we can mail you a copy immediately. | - +----------------------------------------------------------------------+ - | Authors: Andi Gutmans <andi@zend.com> | - | Zeev Suraski <zeev@zend.com> | - +----------------------------------------------------------------------+ -*/ - -/* $Id$ */ - -/* - * LALR shift/reduce conflicts and how they are resolved: - * - * - 2 shift/reduce conflicts due to the dangling elseif/else ambiguity. Solved by shift. - * - */ - - -#include "zend_compile.h" -#include "zend.h" -#include "zend_list.h" -#include "zend_globals.h" -#include "zend_API.h" -#include "zend_constants.h" - -#define YYSIZE_T size_t -#define yytnamerr zend_yytnamerr -static YYSIZE_T zend_yytnamerr(char*, const char*); - -#define YYERROR_VERBOSE -#define YYSTYPE znode -#ifdef ZTS -# define YYPARSE_PARAM tsrm_ls -# define YYLEX_PARAM tsrm_ls -#endif - - - - - -/* Enabling traces. */ -#ifndef YYDEBUG -# define YYDEBUG 0 -#endif - -/* Enabling verbose error messages. */ -#ifdef YYERROR_VERBOSE -# undef YYERROR_VERBOSE -# define YYERROR_VERBOSE 1 -#else -# define YYERROR_VERBOSE 0 -#endif - -/* Enabling the token table. */ -#ifndef YYTOKEN_TABLE -# define YYTOKEN_TABLE 0 -#endif +#define yyparse zendparse +#define yylex zendlex +#define yyerror zenderror +#define yylval zendlval +#define yychar zendchar +#define yydebug zenddebug +#define yynerrs zendnerrs /* Tokens. */ @@ -413,17 +337,91 @@ static YYSIZE_T zend_yytnamerr(char*, const char*); +/* Copy the first part of user declarations. */ + + +/* + +----------------------------------------------------------------------+ + | Zend Engine | + +----------------------------------------------------------------------+ + | Copyright (c) 1998-2012 Zend Technologies Ltd. (http://www.zend.com) | + +----------------------------------------------------------------------+ + | This source file is subject to version 2.00 of the Zend license, | + | that is bundled with this package in the file LICENSE, and is | + | available through the world-wide-web at the following url: | + | http://www.zend.com/license/2_00.txt. | + | If you did not receive a copy of the Zend license and are unable to | + | obtain it through the world-wide-web, please send a note to | + | license@zend.com so we can mail you a copy immediately. | + +----------------------------------------------------------------------+ + | Authors: Andi Gutmans <andi@zend.com> | + | Zeev Suraski <zeev@zend.com> | + +----------------------------------------------------------------------+ +*/ + +/* $Id$ */ + +/* + * LALR shift/reduce conflicts and how they are resolved: + * + * - 2 shift/reduce conflicts due to the dangling elseif/else ambiguity. Solved by shift. + * + */ + + +#include "zend_compile.h" +#include "zend.h" +#include "zend_list.h" +#include "zend_globals.h" +#include "zend_API.h" +#include "zend_constants.h" + +#define YYSIZE_T size_t +#define yytnamerr zend_yytnamerr +static YYSIZE_T zend_yytnamerr(char*, const char*); + +#define YYERROR_VERBOSE +#define YYSTYPE znode +#ifdef ZTS +# define YYPARSE_PARAM tsrm_ls +# define YYLEX_PARAM tsrm_ls +#endif + + + + +/* Enabling traces. */ +#ifndef YYDEBUG +# define YYDEBUG 0 +#endif + +/* Enabling verbose error messages. */ +#ifdef YYERROR_VERBOSE +# undef YYERROR_VERBOSE +# define YYERROR_VERBOSE 1 +#else +# define YYERROR_VERBOSE 0 +#endif + +/* Enabling the token table. */ +#ifndef YYTOKEN_TABLE +# define YYTOKEN_TABLE 0 +#endif + #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef int YYSTYPE; -# define YYSTYPE_IS_TRIVIAL 1 # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 +# define YYSTYPE_IS_TRIVIAL 1 #endif + /* Copy the second part of user declarations. */ +/* Line 216 of yacc.c. */ + #ifdef short # undef short @@ -498,14 +496,14 @@ typedef short int yytype_int16; #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static int -YYID (int yyi) +YYID (int i) #else static int -YYID (yyi) - int yyi; +YYID (i) + int i; #endif { - return yyi; + return i; } #endif @@ -526,11 +524,11 @@ YYID (yyi) # define alloca _alloca # else # define YYSTACK_ALLOC alloca -# if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ +# if ! defined _ALLOCA_H && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) # include <stdlib.h> /* INFRINGES ON USER NAME SPACE */ -# ifndef EXIT_SUCCESS -# define EXIT_SUCCESS 0 +# ifndef _STDLIB_H +# define _STDLIB_H 1 # endif # endif # endif @@ -553,24 +551,24 @@ YYID (yyi) # ifndef YYSTACK_ALLOC_MAXIMUM # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM # endif -# if (defined __cplusplus && ! defined EXIT_SUCCESS \ +# if (defined __cplusplus && ! defined _STDLIB_H \ && ! ((defined YYMALLOC || defined malloc) \ && (defined YYFREE || defined free))) # include <stdlib.h> /* INFRINGES ON USER NAME SPACE */ -# ifndef EXIT_SUCCESS -# define EXIT_SUCCESS 0 +# ifndef _STDLIB_H +# define _STDLIB_H 1 # endif # endif # ifndef YYMALLOC # define YYMALLOC malloc -# if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ +# if ! defined malloc && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ # endif # endif # ifndef YYFREE # define YYFREE free -# if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ +# if ! defined free && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void free (void *); /* INFRINGES ON USER NAME SPACE */ # endif @@ -586,9 +584,9 @@ void free (void *); /* INFRINGES ON USER NAME SPACE */ /* A type that is properly aligned for any stack member. */ union yyalloc { - yytype_int16 yyss_alloc; - YYSTYPE yyvs_alloc; -}; + yytype_int16 yyss; + YYSTYPE yyvs; + }; /* The size of the maximum gap between one aligned stack and the next. */ # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) @@ -599,27 +597,6 @@ union yyalloc ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \ + YYSTACK_GAP_MAXIMUM) -# define YYCOPY_NEEDED 1 - -/* Relocate STACK from its old location to the new one. The - local variables YYSIZE and YYSTACKSIZE give the old and new number of - elements in the stack, and YYPTR gives the new location of the - stack. Advance YYPTR to a properly aligned location for the next - stack. */ -# define YYSTACK_RELOCATE(Stack_alloc, Stack) \ - do \ - { \ - YYSIZE_T yynewbytes; \ - YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \ - Stack = &yyptr->Stack_alloc; \ - yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ - yyptr += yynewbytes / sizeof (*yyptr); \ - } \ - while (YYID (0)) - -#endif - -#if defined YYCOPY_NEEDED && YYCOPY_NEEDED /* Copy COUNT objects from FROM to TO. The source and destination do not overlap. */ # ifndef YYCOPY @@ -637,7 +614,24 @@ union yyalloc while (YYID (0)) # endif # endif -#endif /* !YYCOPY_NEEDED */ + +/* Relocate STACK from its old location to the new one. The + local variables YYSIZE and YYSTACKSIZE give the old and new number of + elements in the stack, and YYPTR gives the new location of the + stack. Advance YYPTR to a properly aligned location for the next + stack. */ +# define YYSTACK_RELOCATE(Stack) \ + do \ + { \ + YYSIZE_T yynewbytes; \ + YYCOPY (&yyptr->Stack, Stack, yysize); \ + Stack = &yyptr->Stack; \ + yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ + yyptr += yynewbytes / sizeof (*yyptr); \ + } \ + while (YYID (0)) + +#endif /* YYFINAL -- State number of the termination state. */ #define YYFINAL 3 @@ -1061,28 +1055,27 @@ static const char *const yytname[] = "\":: (T_PAAMAYIM_NEKUDOTAYIM)\"", "\"namespace (T_NAMESPACE)\"", "\"__NAMESPACE__ (T_NS_C)\"", "\"__DIR__ (T_DIR)\"", "\"\\\\ (T_NS_SEPARATOR)\"", "'('", "')'", "';'", "'{'", "'}'", "'$'", - "']'", "'`'", "'\"'", "$accept", "start", "top_statement_list", "$@1", - "namespace_name", "top_statement", "$@2", "$@3", "use_declarations", - "use_declaration", "constant_declaration", "inner_statement_list", "$@4", - "inner_statement", "statement", "unticked_statement", "$@5", "$@6", - "$@7", "$@8", "$@9", "$@10", "$@11", "$@12", "$@13", "$@14", "$@15", - "$@16", "$@17", "$@18", "$@19", "$@20", "$@21", "$@22", "$@23", "$@24", - "$@25", "$@26", "additional_catches", "non_empty_additional_catches", - "additional_catch", "@27", "$@28", "unset_variables", "unset_variable", + "']'", "'`'", "'\"'", "$accept", "start", "top_statement_list", "@1", + "namespace_name", "top_statement", "@2", "@3", "use_declarations", + "use_declaration", "constant_declaration", "inner_statement_list", "@4", + "inner_statement", "statement", "unticked_statement", "@5", "@6", "@7", + "@8", "@9", "@10", "@11", "@12", "@13", "@14", "@15", "@16", "@17", + "@18", "@19", "@20", "@21", "@22", "@23", "@24", "@25", "@26", + "additional_catches", "non_empty_additional_catches", "additional_catch", + "@27", "@28", "unset_variables", "unset_variable", "function_declaration_statement", "class_declaration_statement", - "is_reference", "unticked_function_declaration_statement", "$@29", - "unticked_class_declaration_statement", "$@30", "$@31", - "class_entry_type", "extends_from", "interface_entry", - "interface_extends_list", "implements_list", "interface_list", - "foreach_optional_arg", "foreach_variable", "for_statement", - "foreach_statement", "declare_statement", "declare_list", - "switch_case_list", "case_list", "$@32", "$@33", "case_separator", - "while_statement", "elseif_list", "$@34", "new_elseif_list", "$@35", - "else_single", "new_else_single", "parameter_list", - "non_empty_parameter_list", "optional_class_type", + "is_reference", "unticked_function_declaration_statement", "@29", + "unticked_class_declaration_statement", "@30", "@31", "class_entry_type", + "extends_from", "interface_entry", "interface_extends_list", + "implements_list", "interface_list", "foreach_optional_arg", + "foreach_variable", "for_statement", "foreach_statement", + "declare_statement", "declare_list", "switch_case_list", "case_list", + "@32", "@33", "case_separator", "while_statement", "elseif_list", "@34", + "new_elseif_list", "@35", "else_single", "new_else_single", + "parameter_list", "non_empty_parameter_list", "optional_class_type", "function_call_parameter_list", "non_empty_function_call_parameter_list", "global_var_list", "global_var", "static_var_list", - "class_statement_list", "class_statement", "$@36", "$@37", + "class_statement_list", "class_statement", "@36", "@37", "trait_use_statement", "trait_list", "trait_adaptations", "trait_adaptation_list", "non_empty_trait_adaptation_list", "trait_adaptation_statement", "trait_precedence", "trait_reference_list", @@ -1090,33 +1083,32 @@ static const char *const yytname[] = "trait_alias", "trait_modifiers", "method_body", "variable_modifiers", "method_modifiers", "non_empty_member_modifiers", "member_modifier", "class_variable_declaration", "class_constant_declaration", - "echo_expr_list", "for_expr", "non_empty_for_expr", "$@38", + "echo_expr_list", "for_expr", "non_empty_for_expr", "@38", "chaining_method_or_property", "chaining_dereference", - "chaining_instance_call", "$@39", "instance_call", "$@40", "new_expr", - "$@41", "expr_without_variable", "$@42", "$@43", "$@44", "$@45", "$@46", - "$@47", "@48", "$@49", "$@50", "$@51", "$@52", "@53", "@54", "function", - "lexical_vars", "lexical_var_list", "function_call", "$@55", "$@56", - "$@57", "$@58", "$@59", "$@60", "$@61", "$@62", "class_name", + "chaining_instance_call", "@39", "instance_call", "@40", "new_expr", + "@41", "expr_without_variable", "@42", "@43", "@44", "@45", "@46", "@47", + "@48", "@49", "@50", "@51", "@52", "@53", "@54", "function", + "lexical_vars", "lexical_var_list", "function_call", "@55", "@56", "@57", + "@58", "@59", "@60", "@61", "@62", "class_name", "fully_qualified_class_name", "class_name_reference", - "dynamic_class_name_reference", "$@63", "$@64", + "dynamic_class_name_reference", "@63", "@64", "dynamic_class_name_variable_properties", "dynamic_class_name_variable_property", "exit_expr", "backticks_expr", "ctor_arguments", "common_scalar", "static_scalar", "static_class_constant", "scalar", "static_array_pair_list", "possible_comma", "non_empty_static_array_pair_list", "expr", - "r_variable", "w_variable", "rw_variable", "variable", "$@65", "$@66", - "variable_properties", "variable_property", "$@67", - "array_method_dereference", "method", "$@68", "method_or_not", + "r_variable", "w_variable", "rw_variable", "variable", "@65", "@66", + "variable_properties", "variable_property", "@67", + "array_method_dereference", "method", "@68", "method_or_not", "variable_without_objects", "static_member", "variable_class_name", - "array_function_dereference", "$@69", - "base_variable_with_function_calls", "base_variable", - "reference_variable", "compound_variable", "dim_offset", - "object_property", "$@70", "object_dim_list", "variable_name", + "array_function_dereference", "@69", "base_variable_with_function_calls", + "base_variable", "reference_variable", "compound_variable", "dim_offset", + "object_property", "@70", "object_dim_list", "variable_name", "simple_indirect_reference", "assignment_list", - "assignment_list_element", "$@71", "array_pair_list", - "non_empty_array_pair_list", "encaps_list", "encaps_var", "$@72", + "assignment_list_element", "@71", "array_pair_list", + "non_empty_array_pair_list", "encaps_list", "encaps_var", "@72", "encaps_var_offset", "internal_functions_in_yacc", "isset_variables", - "$@73", "class_constant", 0 + "@73", "class_constant", 0 }; #endif @@ -1258,8 +1250,8 @@ static const yytype_uint8 yyr2[] = 2, 2, 1, 0, 4, 3, 3 }; -/* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM. - Performed when YYTABLE doesn't specify something else to do. Zero +/* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state + STATE-NUM when YYTABLE doesn't specify something else to do. Zero means the default is an error. */ static const yytype_uint16 yydefact[] = { @@ -1524,7 +1516,8 @@ static const yytype_int16 yypgoto[] = /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If positive, shift that token. If negative, reduce the rule which - number is the opposite. If YYTABLE_NINF, syntax error. */ + number is the opposite. If zero, do what YYDEFACT says. + If YYTABLE_NINF, syntax error. */ #define YYTABLE_NINF -472 static const yytype_int16 yytable[] = { @@ -2062,12 +2055,6 @@ static const yytype_int16 yytable[] = 259, 0, 260 }; -#define yypact_value_is_default(yystate) \ - ((yystate) == (-736)) - -#define yytable_value_is_error(yytable_value) \ - ((yytable_value) == (-472)) - static const yytype_int16 yycheck[] = { 23, 24, 4, 234, 27, 119, 27, 577, 4, 373, @@ -2721,18 +2708,9 @@ static const yytype_uint16 yystos[] = /* Like YYERROR except do call yyerror. This remains here temporarily to ease the transition to the new meaning of YYERROR, for GCC. - Once GCC version 2 has supplanted version 1, this can go. However, - YYFAIL appears to be in use. Nevertheless, it is formally deprecated - in Bison 2.4.2's NEWS entry, where a plan to phase it out is - discussed. */ + Once GCC version 2 has supplanted version 1, this can go. */ #define YYFAIL goto yyerrlab -#if defined YYFAIL - /* This is here to suppress warnings from the GCC cpp's - -Wunused-macros. Normally we don't worry about that warning, but - some users do, and we want to make it easy for users to remove - YYFAIL uses, which will produce warnings from Bison 2.5. */ -#endif #define YYRECOVERING() (!!yyerrstatus) @@ -2742,6 +2720,7 @@ do \ { \ yychar = (Token); \ yylval = (Value); \ + yytoken = YYTRANSLATE (yychar); \ YYPOPSTACK (1); \ goto yybackup; \ } \ @@ -2783,10 +2762,19 @@ while (YYID (0)) #endif -/* This macro is provided for backward compatibility. */ +/* YY_LOCATION_PRINT -- Print the location on the stream. + This macro was not mandated originally: define only if we know + we won't break user code: when these are the locations we know. */ #ifndef YY_LOCATION_PRINT -# define YY_LOCATION_PRINT(File, Loc) ((void) 0) +# if defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL +# define YY_LOCATION_PRINT(File, Loc) \ + fprintf (File, "%d.%d-%d.%d", \ + (Loc).first_line, (Loc).first_column, \ + (Loc).last_line, (Loc).last_column) +# else +# define YY_LOCATION_PRINT(File, Loc) ((void) 0) +# endif #endif @@ -2890,20 +2878,17 @@ yy_symbol_print (yyoutput, yytype, yyvaluep) #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void -yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop) +yy_stack_print (yytype_int16 *bottom, yytype_int16 *top) #else static void -yy_stack_print (yybottom, yytop) - yytype_int16 *yybottom; - yytype_int16 *yytop; +yy_stack_print (bottom, top) + yytype_int16 *bottom; + yytype_int16 *top; #endif { YYFPRINTF (stderr, "Stack now"); - for (; yybottom <= yytop; yybottom++) - { - int yybot = *yybottom; - YYFPRINTF (stderr, " %d", yybot); - } + for (; bottom <= top; ++bottom) + YYFPRINTF (stderr, " %d", *bottom); YYFPRINTF (stderr, "\n"); } @@ -2937,11 +2922,11 @@ yy_reduce_print (yyvsp, yyrule) /* The symbols being reduced. */ for (yyi = 0; yyi < yynrhs; yyi++) { - YYFPRINTF (stderr, " $%d = ", yyi + 1); + fprintf (stderr, " $%d = ", yyi + 1); yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi], &(yyvsp[(yyi + 1) - (yynrhs)]) ); - YYFPRINTF (stderr, "\n"); + fprintf (stderr, "\n"); } } @@ -2978,6 +2963,7 @@ int yydebug; # define YYMAXDEPTH 10000 #endif + #if YYERROR_VERBOSE @@ -3080,142 +3066,115 @@ yytnamerr (char *yyres, const char *yystr) } # endif -/* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message - about the unexpected token YYTOKEN for the state stack whose top is - YYSSP. - - Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is - not large enough to hold the message. In that case, also set - *YYMSG_ALLOC to the required number of bytes. Return 2 if the - required number of bytes is too large to store. */ -static int -yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg, - yytype_int16 *yyssp, int yytoken) +/* Copy into YYRESULT an error message about the unexpected token + YYCHAR while in state YYSTATE. Return the number of bytes copied, + including the terminating null byte. If YYRESULT is null, do not + copy anything; just return the number of bytes that would be + copied. As a special case, return 0 if an ordinary "syntax error" + message will do. Return YYSIZE_MAXIMUM if overflow occurs during + size calculation. */ +static YYSIZE_T +yysyntax_error (char *yyresult, int yystate, int yychar) { - YYSIZE_T yysize0 = yytnamerr (0, yytname[yytoken]); - YYSIZE_T yysize = yysize0; - YYSIZE_T yysize1; - enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; - /* Internationalized format string. */ - const char *yyformat = 0; - /* Arguments of yyformat. */ - char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; - /* Number of reported tokens (one for the "unexpected", one per - "expected"). */ - int yycount = 0; - - /* There are many possibilities here to consider: - - Assume YYFAIL is not used. It's too flawed to consider. See - <http://lists.gnu.org/archive/html/bison-patches/2009-12/msg00024.html> - for details. YYERROR is fine as it does not invoke this - function. - - If this state is a consistent state with a default action, then - the only way this function was invoked is if the default action - is an error action. In that case, don't check for expected - tokens because there are none. - - The only way there can be no lookahead present (in yychar) is if - this state is a consistent state with a default action. Thus, - detecting the absence of a lookahead is sufficient to determine - that there is no unexpected or expected token to report. In that - case, just report a simple "syntax error". - - Don't assume there isn't a lookahead just because this state is a - consistent state with a default action. There might have been a - previous inconsistent state, consistent state with a non-default - action, or user semantic action that manipulated yychar. - - Of course, the expected token list depends on states to have - correct lookahead information, and it depends on the parser not - to perform extra reductions after fetching a lookahead from the - scanner and before detecting a syntax error. Thus, state merging - (from LALR or IELR) and default reductions corrupt the expected - token list. However, the list is correct for canonical LR with - one exception: it will still contain any token that will not be - accepted due to an error action in a later state. - */ - if (yytoken != YYEMPTY) - { - int yyn = yypact[*yyssp]; - yyarg[yycount++] = yytname[yytoken]; - if (!yypact_value_is_default (yyn)) - { - /* Start YYX at -YYN if negative to avoid negative indexes in - YYCHECK. In other words, skip the first -YYN actions for - this state because they are default actions. */ - int yyxbegin = yyn < 0 ? -yyn : 0; - /* Stay within bounds of both yycheck and yytname. */ - int yychecklim = YYLAST - yyn + 1; - int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS; - int yyx; - - for (yyx = yyxbegin; yyx < yyxend; ++yyx) - if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR - && !yytable_value_is_error (yytable[yyx + yyn])) - { - if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) - { - yycount = 1; - yysize = yysize0; - break; - } - yyarg[yycount++] = yytname[yyx]; - yysize1 = yysize + yytnamerr (0, yytname[yyx]); - if (! (yysize <= yysize1 - && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) - return 2; - yysize = yysize1; - } - } - } + int yyn = yypact[yystate]; - switch (yycount) + if (! (YYPACT_NINF < yyn && yyn <= YYLAST)) + return 0; + else { -# define YYCASE_(N, S) \ - case N: \ - yyformat = S; \ - break - YYCASE_(0, YY_("syntax error")); - YYCASE_(1, YY_("syntax error, unexpected %s")); - YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s")); - YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s")); - YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s")); - YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s")); -# undef YYCASE_ - } + int yytype = YYTRANSLATE (yychar); + YYSIZE_T yysize0 = yytnamerr (0, yytname[yytype]); + YYSIZE_T yysize = yysize0; + YYSIZE_T yysize1; + int yysize_overflow = 0; + enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; + char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; + int yyx; + +# if 0 + /* This is so xgettext sees the translatable formats that are + constructed on the fly. */ + YY_("syntax error, unexpected %s"); + YY_("syntax error, unexpected %s, expecting %s"); + YY_("syntax error, unexpected %s, expecting %s or %s"); + YY_("syntax error, unexpected %s, expecting %s or %s or %s"); + YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"); +# endif + char *yyfmt; + char const *yyf; + static char const yyunexpected[] = "syntax error, unexpected %s"; + static char const yyexpecting[] = ", expecting %s"; + static char const yyor[] = " or %s"; + char yyformat[sizeof yyunexpected + + sizeof yyexpecting - 1 + + ((YYERROR_VERBOSE_ARGS_MAXIMUM - 2) + * (sizeof yyor - 1))]; + char const *yyprefix = yyexpecting; + + /* Start YYX at -YYN if negative to avoid negative indexes in + YYCHECK. */ + int yyxbegin = yyn < 0 ? -yyn : 0; + + /* Stay within bounds of both yycheck and yytname. */ + int yychecklim = YYLAST - yyn + 1; + int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS; + int yycount = 1; + + yyarg[0] = yytname[yytype]; + yyfmt = yystpcpy (yyformat, yyunexpected); + + for (yyx = yyxbegin; yyx < yyxend; ++yyx) + if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR) + { + if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) + { + yycount = 1; + yysize = yysize0; + yyformat[sizeof yyunexpected - 1] = '\0'; + break; + } + yyarg[yycount++] = yytname[yyx]; + yysize1 = yysize + yytnamerr (0, yytname[yyx]); + yysize_overflow |= (yysize1 < yysize); + yysize = yysize1; + yyfmt = yystpcpy (yyfmt, yyprefix); + yyprefix = yyor; + } - yysize1 = yysize + yystrlen (yyformat); - if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) - return 2; - yysize = yysize1; + yyf = YY_(yyformat); + yysize1 = yysize + yystrlen (yyf); + yysize_overflow |= (yysize1 < yysize); + yysize = yysize1; - if (*yymsg_alloc < yysize) - { - *yymsg_alloc = 2 * yysize; - if (! (yysize <= *yymsg_alloc - && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM)) - *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM; - return 1; - } + if (yysize_overflow) + return YYSIZE_MAXIMUM; - /* Avoid sprintf, as that infringes on the user's name space. - Don't have undefined behavior even if the translation - produced a string with the wrong number of "%s"s. */ - { - char *yyp = *yymsg; - int yyi = 0; - while ((*yyp = *yyformat) != '\0') - if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount) - { - yyp += yytnamerr (yyp, yyarg[yyi++]); - yyformat += 2; - } - else - { - yyp++; - yyformat++; - } - } - return 0; + if (yyresult) + { + /* Avoid sprintf, as that infringes on the user's name space. + Don't have undefined behavior even if the translation + produced a string with the wrong number of "%s"s. */ + char *yyp = yyresult; + int yyi = 0; + while ((*yyp = *yyf) != '\0') + { + if (*yyp == '%' && yyf[1] == 's' && yyi < yycount) + { + yyp += yytnamerr (yyp, yyarg[yyi++]); + yyf += 2; + } + else + { + yyp++; + yyf++; + } + } + } + return yysize; + } } #endif /* YYERROR_VERBOSE */ + /*-----------------------------------------------. | Release the memory associated to this symbol. | @@ -3247,9 +3206,10 @@ yydestruct (yymsg, yytype, yyvaluep) break; } } - + /* Prevent warnings from -Wmissing-prototypes. */ + #ifdef YYPARSE_PARAM #if defined __STDC__ || defined __cplusplus int yyparse (void *YYPARSE_PARAM); @@ -3265,6 +3225,10 @@ int yyparse (); #endif /* ! YYPARSE_PARAM */ + + + + /*----------. | yyparse. | `----------*/ @@ -3291,46 +3255,22 @@ yyparse () #endif #endif { -/* The lookahead symbol. */ + /* The look-ahead symbol. */ int yychar; -/* The semantic value of the lookahead symbol. */ +/* The semantic value of the look-ahead symbol. */ YYSTYPE yylval; - /* Number of syntax errors so far. */ - int yynerrs; - - int yystate; - /* Number of tokens to shift before error messages enabled. */ - int yyerrstatus; - - /* The stacks and their tools: - `yyss': related to states. - `yyvs': related to semantic values. - - Refer to the stacks thru separate pointers, to allow yyoverflow - to reallocate them elsewhere. */ - - /* The state stack. */ - yytype_int16 yyssa[YYINITDEPTH]; - yytype_int16 *yyss; - yytype_int16 *yyssp; - - /* The semantic value stack. */ - YYSTYPE yyvsa[YYINITDEPTH]; - YYSTYPE *yyvs; - YYSTYPE *yyvsp; - - YYSIZE_T yystacksize; +/* Number of syntax errors so far. */ +int yynerrs; + int yystate; int yyn; int yyresult; - /* Lookahead token as an internal (translated) token number. */ - int yytoken; - /* The variables used to return semantic value and location from the - action routines. */ - YYSTYPE yyval; - + /* Number of tokens to shift before error messages enabled. */ + int yyerrstatus; + /* Look-ahead token as an internal (translated) token number. */ + int yytoken = 0; #if YYERROR_VERBOSE /* Buffer for error messages, and its allocated size. */ char yymsgbuf[128]; @@ -3338,28 +3278,51 @@ YYSTYPE yylval; YYSIZE_T yymsg_alloc = sizeof yymsgbuf; #endif + /* Three stacks and their tools: + `yyss': related to states, + `yyvs': related to semantic values, + `yyls': related to locations. + + Refer to the stacks thru separate pointers, to allow yyoverflow + to reallocate them elsewhere. */ + + /* The state stack. */ + yytype_int16 yyssa[YYINITDEPTH]; + yytype_int16 *yyss = yyssa; + yytype_int16 *yyssp; + + /* The semantic value stack. */ + YYSTYPE yyvsa[YYINITDEPTH]; + YYSTYPE *yyvs = yyvsa; + YYSTYPE *yyvsp; + + + #define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N)) + YYSIZE_T yystacksize = YYINITDEPTH; + + /* The variables used to return semantic value and location from the + action routines. */ + YYSTYPE yyval; + + /* The number of symbols on the RHS of the reduced rule. Keep to zero when no symbol should be popped. */ int yylen = 0; - yytoken = 0; - yyss = yyssa; - yyvs = yyvsa; - yystacksize = YYINITDEPTH; - YYDPRINTF ((stderr, "Starting parse\n")); yystate = 0; yyerrstatus = 0; yynerrs = 0; - yychar = YYEMPTY; /* Cause a token to be read. */ + yychar = YYEMPTY; /* Cause a token to be read. */ /* Initialize stack pointers. Waste one element of value and location stack so that they stay on the same level as the state stack. The wasted elements are never initialized. */ + yyssp = yyss; yyvsp = yyvs; @@ -3389,6 +3352,7 @@ YYSTYPE yylval; YYSTYPE *yyvs1 = yyvs; yytype_int16 *yyss1 = yyss; + /* Each stack pointer address is followed by the size of the data in use in that stack, in bytes. This used to be a conditional around just the two extra args, but that might @@ -3396,6 +3360,7 @@ YYSTYPE yylval; yyoverflow (YY_("memory exhausted"), &yyss1, yysize * sizeof (*yyssp), &yyvs1, yysize * sizeof (*yyvsp), + &yystacksize); yyss = yyss1; @@ -3418,8 +3383,9 @@ YYSTYPE yylval; (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); if (! yyptr) goto yyexhaustedlab; - YYSTACK_RELOCATE (yyss_alloc, yyss); - YYSTACK_RELOCATE (yyvs_alloc, yyvs); + YYSTACK_RELOCATE (yyss); + YYSTACK_RELOCATE (yyvs); + # undef YYSTACK_RELOCATE if (yyss1 != yyssa) YYSTACK_FREE (yyss1); @@ -3430,6 +3396,7 @@ YYSTYPE yylval; yyssp = yyss + yysize - 1; yyvsp = yyvs + yysize - 1; + YYDPRINTF ((stderr, "Stack size increased to %lu\n", (unsigned long int) yystacksize)); @@ -3439,9 +3406,6 @@ YYSTYPE yylval; YYDPRINTF ((stderr, "Entering state %d\n", yystate)); - if (yystate == YYFINAL) - YYACCEPT; - goto yybackup; /*-----------. @@ -3450,16 +3414,16 @@ YYSTYPE yylval; yybackup: /* Do appropriate processing given the current state. Read a - lookahead token if we need one and don't already have one. */ + look-ahead token if we need one and don't already have one. */ - /* First try to decide what to do without reference to lookahead token. */ + /* First try to decide what to do without reference to look-ahead token. */ yyn = yypact[yystate]; - if (yypact_value_is_default (yyn)) + if (yyn == YYPACT_NINF) goto yydefault; - /* Not known => get a lookahead token if don't already have one. */ + /* Not known => get a look-ahead token if don't already have one. */ - /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */ + /* YYCHAR is either YYEMPTY or YYEOF or a valid look-ahead symbol. */ if (yychar == YYEMPTY) { YYDPRINTF ((stderr, "Reading a token: ")); @@ -3485,22 +3449,26 @@ yybackup: yyn = yytable[yyn]; if (yyn <= 0) { - if (yytable_value_is_error (yyn)) - goto yyerrlab; + if (yyn == 0 || yyn == YYTABLE_NINF) + goto yyerrlab; yyn = -yyn; goto yyreduce; } + if (yyn == YYFINAL) + YYACCEPT; + /* Count tokens shifted since error; after three, turn off error status. */ if (yyerrstatus) yyerrstatus--; - /* Shift the lookahead token. */ + /* Shift the look-ahead token. */ YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc); - /* Discard the shifted token. */ - yychar = YYEMPTY; + /* Discard the shifted token unless it is eof. */ + if (yychar != YYEOF) + yychar = YYEMPTY; yystate = yyn; *++yyvsp = yylval; @@ -5832,20 +5800,10 @@ yyreduce: break; +/* Line 1267 of yacc.c. */ default: break; } - /* User semantic actions sometimes alter yychar, and that requires - that yytoken be updated with the new translation. We take the - approach of translating immediately before every use of yytoken. - One alternative is translating here after every semantic action, - but that translation would be missed if the semantic action invokes - YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or - if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an - incorrect destructor might then be invoked immediately. In the - case of YYERROR or YYBACKUP, subsequent parser actions might lead - to an incorrect destructor call or verbose syntax error message - before the lookahead is translated. */ YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); YYPOPSTACK (yylen); @@ -5854,6 +5812,7 @@ yyreduce: *++yyvsp = yyval; + /* Now `shift' the result of the reduction. Determine what state that goes to, based on the state we popped back to and the rule number reduced by. */ @@ -5873,10 +5832,6 @@ yyreduce: | yyerrlab -- here on detecting error | `------------------------------------*/ yyerrlab: - /* Make sure we have latest lookahead translation. See comments at - user semantic actions for why this is necessary. */ - yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar); - /* If not already recovering from an error, report this error. */ if (!yyerrstatus) { @@ -5884,36 +5839,37 @@ yyerrlab: #if ! YYERROR_VERBOSE yyerror (YY_("syntax error")); #else -# define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \ - yyssp, yytoken) { - char const *yymsgp = YY_("syntax error"); - int yysyntax_error_status; - yysyntax_error_status = YYSYNTAX_ERROR; - if (yysyntax_error_status == 0) - yymsgp = yymsg; - else if (yysyntax_error_status == 1) - { - if (yymsg != yymsgbuf) - YYSTACK_FREE (yymsg); - yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc); - if (!yymsg) - { - yymsg = yymsgbuf; - yymsg_alloc = sizeof yymsgbuf; - yysyntax_error_status = 2; - } - else - { - yysyntax_error_status = YYSYNTAX_ERROR; - yymsgp = yymsg; - } - } - yyerror (yymsgp); - if (yysyntax_error_status == 2) - goto yyexhaustedlab; + YYSIZE_T yysize = yysyntax_error (0, yystate, yychar); + if (yymsg_alloc < yysize && yymsg_alloc < YYSTACK_ALLOC_MAXIMUM) + { + YYSIZE_T yyalloc = 2 * yysize; + if (! (yysize <= yyalloc && yyalloc <= YYSTACK_ALLOC_MAXIMUM)) + yyalloc = YYSTACK_ALLOC_MAXIMUM; + if (yymsg != yymsgbuf) + YYSTACK_FREE (yymsg); + yymsg = (char *) YYSTACK_ALLOC (yyalloc); + if (yymsg) + yymsg_alloc = yyalloc; + else + { + yymsg = yymsgbuf; + yymsg_alloc = sizeof yymsgbuf; + } + } + + if (0 < yysize && yysize <= yymsg_alloc) + { + (void) yysyntax_error (yymsg, yystate, yychar); + yyerror (yymsg); + } + else + { + yyerror (YY_("syntax error")); + if (yysize != 0) + goto yyexhaustedlab; + } } -# undef YYSYNTAX_ERROR #endif } @@ -5921,7 +5877,7 @@ yyerrlab: if (yyerrstatus == 3) { - /* If just tried and failed to reuse lookahead token after an + /* If just tried and failed to reuse look-ahead token after an error, discard it. */ if (yychar <= YYEOF) @@ -5938,7 +5894,7 @@ yyerrlab: } } - /* Else will try to reuse lookahead token after shifting the error + /* Else will try to reuse look-ahead token after shifting the error token. */ goto yyerrlab1; @@ -5972,7 +5928,7 @@ yyerrlab1: for (;;) { yyn = yypact[yystate]; - if (!yypact_value_is_default (yyn)) + if (yyn != YYPACT_NINF) { yyn += YYTERROR; if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR) @@ -5995,6 +5951,9 @@ yyerrlab1: YY_STACK_PRINT (yyss, yyssp); } + if (yyn == YYFINAL) + YYACCEPT; + *++yyvsp = yylval; @@ -6019,7 +5978,7 @@ yyabortlab: yyresult = 1; goto yyreturn; -#if !defined(yyoverflow) || YYERROR_VERBOSE +#ifndef yyoverflow /*-------------------------------------------------. | yyexhaustedlab -- memory exhaustion comes here. | `-------------------------------------------------*/ @@ -6030,14 +5989,9 @@ yyexhaustedlab: #endif yyreturn: - if (yychar != YYEMPTY) - { - /* Make sure we have latest lookahead translation. See comments at - user semantic actions for why this is necessary. */ - yytoken = YYTRANSLATE (yychar); - yydestruct ("Cleanup: discarding lookahead", - yytoken, &yylval); - } + if (yychar != YYEOF && yychar != YYEMPTY) + yydestruct ("Cleanup: discarding lookahead", + yytoken, &yylval); /* Do not reclaim the symbols of the rule which action triggered this YYABORT or YYACCEPT. */ YYPOPSTACK (yylen); diff --git a/Zend/zend_language_parser.h b/Zend/zend_language_parser.h index 2bbe07638..152ff00e7 100644 --- a/Zend/zend_language_parser.h +++ b/Zend/zend_language_parser.h @@ -1,21 +1,24 @@ -/* A Bison parser, made by GNU Bison 2.5. */ +/* A Bison parser, made by GNU Bison 2.3. */ -/* Bison interface for Yacc-like parsers in C - - Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. - - This program is free software: you can redistribute it and/or modify +/* Skeleton interface for Bison's Yacc-like parsers in C + + Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 + Free Software Foundation, Inc. + + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - + the Free Software Foundation; either version 2, or (at your option) + any later version. + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU General Public License - along with this program. If not, see <http://www.gnu.org/licenses/>. */ + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work @@ -26,11 +29,10 @@ special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. - + This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ - /* Tokens. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE @@ -302,11 +304,10 @@ #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef int YYSTYPE; -# define YYSTYPE_IS_TRIVIAL 1 # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 +# define YYSTYPE_IS_TRIVIAL 1 #endif - diff --git a/Zend/zend_language_parser.output b/Zend/zend_language_parser.output index 79b9680dd..a67c1a458 100644 --- a/Zend/zend_language_parser.output +++ b/Zend/zend_language_parser.output @@ -1,4 +1,4 @@ -Terminals unused in grammar +Terminals which are not used T_CHARACTER T_BAD_CHARACTER @@ -20,9 +20,9 @@ Grammar 1 start: top_statement_list - 2 $@1: /* empty */ + 2 @1: /* empty */ - 3 top_statement_list: top_statement_list $@1 top_statement + 3 top_statement_list: top_statement_list @1 top_statement 4 | /* empty */ 5 namespace_name: "identifier (T_STRING)" @@ -34,13 +34,13 @@ Grammar 10 | "__halt_compiler (T_HALT_COMPILER)" '(' ')' ';' 11 | "namespace (T_NAMESPACE)" namespace_name ';' - 12 $@2: /* empty */ + 12 @2: /* empty */ - 13 top_statement: "namespace (T_NAMESPACE)" namespace_name '{' $@2 top_statement_list '}' + 13 top_statement: "namespace (T_NAMESPACE)" namespace_name '{' @2 top_statement_list '}' - 14 $@3: /* empty */ + 14 @3: /* empty */ - 15 top_statement: "namespace (T_NAMESPACE)" '{' $@3 top_statement_list '}' + 15 top_statement: "namespace (T_NAMESPACE)" '{' @3 top_statement_list '}' 16 | "use (T_USE)" use_declarations ';' 17 | constant_declaration ';' @@ -55,9 +55,9 @@ Grammar 24 constant_declaration: constant_declaration ',' "identifier (T_STRING)" '=' static_scalar 25 | "const (T_CONST)" "identifier (T_STRING)" '=' static_scalar - 26 $@4: /* empty */ + 26 @4: /* empty */ - 27 inner_statement_list: inner_statement_list $@4 inner_statement + 27 inner_statement_list: inner_statement_list @4 inner_statement 28 | /* empty */ 29 inner_statement: statement @@ -70,41 +70,41 @@ Grammar 35 unticked_statement: '{' inner_statement_list '}' - 36 $@5: /* empty */ + 36 @5: /* empty */ - 37 $@6: /* empty */ + 37 @6: /* empty */ - 38 unticked_statement: "if (T_IF)" '(' expr ')' $@5 statement $@6 elseif_list else_single + 38 unticked_statement: "if (T_IF)" '(' expr ')' @5 statement @6 elseif_list else_single - 39 $@7: /* empty */ + 39 @7: /* empty */ - 40 $@8: /* empty */ + 40 @8: /* empty */ - 41 unticked_statement: "if (T_IF)" '(' expr ')' ':' $@7 inner_statement_list $@8 new_elseif_list new_else_single "endif (T_ENDIF)" ';' + 41 unticked_statement: "if (T_IF)" '(' expr ')' ':' @7 inner_statement_list @8 new_elseif_list new_else_single "endif (T_ENDIF)" ';' - 42 $@9: /* empty */ + 42 @9: /* empty */ - 43 $@10: /* empty */ + 43 @10: /* empty */ - 44 unticked_statement: "while (T_WHILE)" '(' $@9 expr ')' $@10 while_statement + 44 unticked_statement: "while (T_WHILE)" '(' @9 expr ')' @10 while_statement - 45 $@11: /* empty */ + 45 @11: /* empty */ - 46 $@12: /* empty */ + 46 @12: /* empty */ - 47 unticked_statement: "do (T_DO)" $@11 statement "while (T_WHILE)" '(' $@12 expr ')' ';' + 47 unticked_statement: "do (T_DO)" @11 statement "while (T_WHILE)" '(' @12 expr ')' ';' - 48 $@13: /* empty */ + 48 @13: /* empty */ - 49 $@14: /* empty */ + 49 @14: /* empty */ - 50 $@15: /* empty */ + 50 @15: /* empty */ - 51 unticked_statement: "for (T_FOR)" '(' for_expr ';' $@13 for_expr ';' $@14 for_expr ')' $@15 for_statement + 51 unticked_statement: "for (T_FOR)" '(' for_expr ';' @13 for_expr ';' @14 for_expr ')' @15 for_statement - 52 $@16: /* empty */ + 52 @16: /* empty */ - 53 unticked_statement: "switch (T_SWITCH)" '(' expr ')' $@16 switch_case_list + 53 unticked_statement: "switch (T_SWITCH)" '(' expr ')' @16 switch_case_list 54 | "break (T_BREAK)" ';' 55 | "break (T_BREAK)" expr ';' 56 | "continue (T_CONTINUE)" ';' @@ -119,34 +119,34 @@ Grammar 65 | expr ';' 66 | "unset (T_UNSET)" '(' unset_variables ')' ';' - 67 $@17: /* empty */ + 67 @17: /* empty */ - 68 $@18: /* empty */ + 68 @18: /* empty */ - 69 unticked_statement: "foreach (T_FOREACH)" '(' variable "as (T_AS)" $@17 foreach_variable foreach_optional_arg ')' $@18 foreach_statement + 69 unticked_statement: "foreach (T_FOREACH)" '(' variable "as (T_AS)" @17 foreach_variable foreach_optional_arg ')' @18 foreach_statement - 70 $@19: /* empty */ + 70 @19: /* empty */ - 71 $@20: /* empty */ + 71 @20: /* empty */ - 72 unticked_statement: "foreach (T_FOREACH)" '(' expr_without_variable "as (T_AS)" $@19 variable foreach_optional_arg ')' $@20 foreach_statement + 72 unticked_statement: "foreach (T_FOREACH)" '(' expr_without_variable "as (T_AS)" @19 variable foreach_optional_arg ')' @20 foreach_statement - 73 $@21: /* empty */ + 73 @21: /* empty */ - 74 unticked_statement: "declare (T_DECLARE)" $@21 '(' declare_list ')' declare_statement + 74 unticked_statement: "declare (T_DECLARE)" @21 '(' declare_list ')' declare_statement 75 | ';' - 76 $@22: /* empty */ + 76 @22: /* empty */ - 77 $@23: /* empty */ + 77 @23: /* empty */ - 78 $@24: /* empty */ + 78 @24: /* empty */ - 79 $@25: /* empty */ + 79 @25: /* empty */ - 80 $@26: /* empty */ + 80 @26: /* empty */ - 81 unticked_statement: "try (T_TRY)" $@22 '{' inner_statement_list '}' "catch (T_CATCH)" '(' $@23 fully_qualified_class_name $@24 "variable (T_VARIABLE)" ')' $@25 '{' inner_statement_list '}' $@26 additional_catches + 81 unticked_statement: "try (T_TRY)" @22 '{' inner_statement_list '}' "catch (T_CATCH)" '(' @23 fully_qualified_class_name @24 "variable (T_VARIABLE)" ')' @25 '{' inner_statement_list '}' @26 additional_catches 82 | "throw (T_THROW)" expr ';' 83 | "goto (T_GOTO)" "identifier (T_STRING)" ';' @@ -158,9 +158,9 @@ Grammar 88 @27: /* empty */ - 89 $@28: /* empty */ + 89 @28: /* empty */ - 90 additional_catch: "catch (T_CATCH)" '(' fully_qualified_class_name @27 "variable (T_VARIABLE)" ')' $@28 '{' inner_statement_list '}' + 90 additional_catch: "catch (T_CATCH)" '(' fully_qualified_class_name @27 "variable (T_VARIABLE)" ')' @28 '{' inner_statement_list '}' 91 unset_variables: unset_variable 92 | unset_variables ',' unset_variable @@ -174,17 +174,17 @@ Grammar 96 is_reference: /* empty */ 97 | '&' - 98 $@29: /* empty */ + 98 @29: /* empty */ - 99 unticked_function_declaration_statement: function is_reference "identifier (T_STRING)" $@29 '(' parameter_list ')' '{' inner_statement_list '}' + 99 unticked_function_declaration_statement: function is_reference "identifier (T_STRING)" @29 '(' parameter_list ')' '{' inner_statement_list '}' - 100 $@30: /* empty */ + 100 @30: /* empty */ - 101 unticked_class_declaration_statement: class_entry_type "identifier (T_STRING)" extends_from $@30 implements_list '{' class_statement_list '}' + 101 unticked_class_declaration_statement: class_entry_type "identifier (T_STRING)" extends_from @30 implements_list '{' class_statement_list '}' - 102 $@31: /* empty */ + 102 @31: /* empty */ - 103 unticked_class_declaration_statement: interface_entry "identifier (T_STRING)" $@31 interface_extends_list '{' class_statement_list '}' + 103 unticked_class_declaration_statement: interface_entry "identifier (T_STRING)" @31 interface_extends_list '{' class_statement_list '}' 104 class_entry_type: "class (T_CLASS)" 105 | "abstract (T_ABSTRACT)" "class (T_CLASS)" @@ -230,13 +230,13 @@ Grammar 133 case_list: /* empty */ - 134 $@32: /* empty */ + 134 @32: /* empty */ - 135 case_list: case_list "case (T_CASE)" expr case_separator $@32 inner_statement_list + 135 case_list: case_list "case (T_CASE)" expr case_separator @32 inner_statement_list - 136 $@33: /* empty */ + 136 @33: /* empty */ - 137 case_list: case_list "default (T_DEFAULT)" case_separator $@33 inner_statement_list + 137 case_list: case_list "default (T_DEFAULT)" case_separator @33 inner_statement_list 138 case_separator: ':' 139 | ';' @@ -246,15 +246,15 @@ Grammar 142 elseif_list: /* empty */ - 143 $@34: /* empty */ + 143 @34: /* empty */ - 144 elseif_list: elseif_list "elseif (T_ELSEIF)" '(' expr ')' $@34 statement + 144 elseif_list: elseif_list "elseif (T_ELSEIF)" '(' expr ')' @34 statement 145 new_elseif_list: /* empty */ - 146 $@35: /* empty */ + 146 @35: /* empty */ - 147 new_elseif_list: new_elseif_list "elseif (T_ELSEIF)" '(' expr ')' ':' $@35 inner_statement_list + 147 new_elseif_list: new_elseif_list "elseif (T_ELSEIF)" '(' expr ')' ':' @35 inner_statement_list 148 else_single: /* empty */ 149 | "else (T_ELSE)" statement @@ -304,15 +304,15 @@ Grammar 183 class_statement_list: class_statement_list class_statement 184 | /* empty */ - 185 $@36: /* empty */ + 185 @36: /* empty */ - 186 class_statement: variable_modifiers $@36 class_variable_declaration ';' + 186 class_statement: variable_modifiers @36 class_variable_declaration ';' 187 | class_constant_declaration ';' 188 | trait_use_statement - 189 $@37: /* empty */ + 189 @37: /* empty */ - 190 class_statement: method_modifiers function is_reference "identifier (T_STRING)" $@37 '(' parameter_list ')' method_body + 190 class_statement: method_modifiers function is_reference "identifier (T_STRING)" @37 '(' parameter_list ')' method_body 191 trait_use_statement: "use (T_USE)" trait_list trait_adaptations @@ -380,9 +380,9 @@ Grammar 234 for_expr: /* empty */ 235 | non_empty_for_expr - 236 $@38: /* empty */ + 236 @38: /* empty */ - 237 non_empty_for_expr: non_empty_for_expr ',' $@38 expr + 237 non_empty_for_expr: non_empty_for_expr ',' @38 expr 238 | expr 239 chaining_method_or_property: chaining_method_or_property variable_property @@ -391,31 +391,31 @@ Grammar 241 chaining_dereference: chaining_dereference '[' dim_offset ']' 242 | '[' dim_offset ']' - 243 $@39: /* empty */ + 243 @39: /* empty */ - 244 chaining_instance_call: chaining_dereference $@39 chaining_method_or_property + 244 chaining_instance_call: chaining_dereference @39 chaining_method_or_property 245 | chaining_dereference 246 | chaining_method_or_property 247 instance_call: /* empty */ - 248 $@40: /* empty */ + 248 @40: /* empty */ - 249 instance_call: $@40 chaining_instance_call + 249 instance_call: @40 chaining_instance_call - 250 $@41: /* empty */ + 250 @41: /* empty */ - 251 new_expr: "new (T_NEW)" class_name_reference $@41 ctor_arguments + 251 new_expr: "new (T_NEW)" class_name_reference @41 ctor_arguments - 252 $@42: /* empty */ + 252 @42: /* empty */ - 253 expr_without_variable: "list (T_LIST)" '(' $@42 assignment_list ')' '=' expr + 253 expr_without_variable: "list (T_LIST)" '(' @42 assignment_list ')' '=' expr 254 | variable '=' expr 255 | variable '=' '&' variable - 256 $@43: /* empty */ + 256 @43: /* empty */ - 257 expr_without_variable: variable '=' '&' "new (T_NEW)" class_name_reference $@43 ctor_arguments + 257 expr_without_variable: variable '=' '&' "new (T_NEW)" class_name_reference @43 ctor_arguments 258 | "clone (T_CLONE)" expr 259 | variable "+= (T_PLUS_EQUAL)" expr 260 | variable "-= (T_MINUS_EQUAL)" expr @@ -433,21 +433,21 @@ Grammar 272 | rw_variable "-- (T_DEC)" 273 | "-- (T_DEC)" rw_variable - 274 $@44: /* empty */ + 274 @44: /* empty */ - 275 expr_without_variable: expr "|| (T_BOOLEAN_OR)" $@44 expr + 275 expr_without_variable: expr "|| (T_BOOLEAN_OR)" @44 expr - 276 $@45: /* empty */ + 276 @45: /* empty */ - 277 expr_without_variable: expr "&& (T_BOOLEAN_AND)" $@45 expr + 277 expr_without_variable: expr "&& (T_BOOLEAN_AND)" @45 expr - 278 $@46: /* empty */ + 278 @46: /* empty */ - 279 expr_without_variable: expr "or (T_LOGICAL_OR)" $@46 expr + 279 expr_without_variable: expr "or (T_LOGICAL_OR)" @46 expr - 280 $@47: /* empty */ + 280 @47: /* empty */ - 281 expr_without_variable: expr "and (T_LOGICAL_AND)" $@47 expr + 281 expr_without_variable: expr "and (T_LOGICAL_AND)" @47 expr 282 | expr "xor (T_LOGICAL_XOR)" expr 283 | expr '|' expr 284 | expr '&' expr @@ -480,15 +480,15 @@ Grammar 310 expr_without_variable: '(' new_expr ')' @48 instance_call - 311 $@49: /* empty */ + 311 @49: /* empty */ - 312 $@50: /* empty */ + 312 @50: /* empty */ - 313 expr_without_variable: expr '?' $@49 expr ':' $@50 expr + 313 expr_without_variable: expr '?' @49 expr ':' @50 expr - 314 $@51: /* empty */ + 314 @51: /* empty */ - 315 expr_without_variable: expr '?' ':' $@51 expr + 315 expr_without_variable: expr '?' ':' @51 expr 316 | internal_functions_in_yacc 317 | "(int) (T_INT_CAST)" expr 318 | "(double) (T_DOUBLE_CAST)" expr @@ -499,9 +499,9 @@ Grammar 323 | "(unset) (T_UNSET_CAST)" expr 324 | "exit (T_EXIT)" exit_expr - 325 $@52: /* empty */ + 325 @52: /* empty */ - 326 expr_without_variable: '@' $@52 expr + 326 expr_without_variable: '@' @52 expr 327 | scalar 328 | "array (T_ARRAY)" '(' array_pair_list ')' 329 | '[' array_pair_list ']' @@ -526,37 +526,37 @@ Grammar 341 | "variable (T_VARIABLE)" 342 | '&' "variable (T_VARIABLE)" - 343 $@55: /* empty */ + 343 @55: /* empty */ - 344 function_call: namespace_name '(' $@55 function_call_parameter_list ')' + 344 function_call: namespace_name '(' @55 function_call_parameter_list ')' - 345 $@56: /* empty */ + 345 @56: /* empty */ - 346 function_call: "namespace (T_NAMESPACE)" "\\ (T_NS_SEPARATOR)" namespace_name '(' $@56 function_call_parameter_list ')' + 346 function_call: "namespace (T_NAMESPACE)" "\\ (T_NS_SEPARATOR)" namespace_name '(' @56 function_call_parameter_list ')' - 347 $@57: /* empty */ + 347 @57: /* empty */ - 348 function_call: "\\ (T_NS_SEPARATOR)" namespace_name '(' $@57 function_call_parameter_list ')' + 348 function_call: "\\ (T_NS_SEPARATOR)" namespace_name '(' @57 function_call_parameter_list ')' - 349 $@58: /* empty */ + 349 @58: /* empty */ - 350 function_call: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name '(' $@58 function_call_parameter_list ')' + 350 function_call: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name '(' @58 function_call_parameter_list ')' - 351 $@59: /* empty */ + 351 @59: /* empty */ - 352 function_call: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects '(' $@59 function_call_parameter_list ')' + 352 function_call: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects '(' @59 function_call_parameter_list ')' - 353 $@60: /* empty */ + 353 @60: /* empty */ - 354 function_call: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name '(' $@60 function_call_parameter_list ')' + 354 function_call: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name '(' @60 function_call_parameter_list ')' - 355 $@61: /* empty */ + 355 @61: /* empty */ - 356 function_call: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects '(' $@61 function_call_parameter_list ')' + 356 function_call: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects '(' @61 function_call_parameter_list ')' - 357 $@62: /* empty */ + 357 @62: /* empty */ - 358 function_call: variable_without_objects '(' $@62 function_call_parameter_list ')' + 358 function_call: variable_without_objects '(' @62 function_call_parameter_list ')' 359 class_name: "static (T_STATIC)" 360 | namespace_name @@ -570,11 +570,11 @@ Grammar 366 class_name_reference: class_name 367 | dynamic_class_name_reference - 368 $@63: /* empty */ + 368 @63: /* empty */ - 369 $@64: /* empty */ + 369 @64: /* empty */ - 370 dynamic_class_name_reference: base_variable "-> (T_OBJECT_OPERATOR)" $@63 object_property $@64 dynamic_class_name_variable_properties + 370 dynamic_class_name_reference: base_variable "-> (T_OBJECT_OPERATOR)" @63 object_property @64 dynamic_class_name_variable_properties 371 | base_variable 372 dynamic_class_name_variable_properties: dynamic_class_name_variable_properties dynamic_class_name_variable_property @@ -649,26 +649,26 @@ Grammar 427 rw_variable: variable - 428 $@65: /* empty */ + 428 @65: /* empty */ - 429 $@66: /* empty */ + 429 @66: /* empty */ - 430 variable: base_variable_with_function_calls "-> (T_OBJECT_OPERATOR)" $@65 object_property $@66 method_or_not variable_properties + 430 variable: base_variable_with_function_calls "-> (T_OBJECT_OPERATOR)" @65 object_property @66 method_or_not variable_properties 431 | base_variable_with_function_calls 432 variable_properties: variable_properties variable_property 433 | /* empty */ - 434 $@67: /* empty */ + 434 @67: /* empty */ - 435 variable_property: "-> (T_OBJECT_OPERATOR)" object_property $@67 method_or_not + 435 variable_property: "-> (T_OBJECT_OPERATOR)" object_property @67 method_or_not 436 array_method_dereference: array_method_dereference '[' dim_offset ']' 437 | method '[' dim_offset ']' - 438 $@68: /* empty */ + 438 @68: /* empty */ - 439 method: '(' $@68 function_call_parameter_list ')' + 439 method: '(' @68 function_call_parameter_list ')' 440 method_or_not: method 441 | array_method_dereference @@ -684,9 +684,9 @@ Grammar 448 array_function_dereference: array_function_dereference '[' dim_offset ']' - 449 $@69: /* empty */ + 449 @69: /* empty */ - 450 array_function_dereference: function_call $@69 '[' dim_offset ']' + 450 array_function_dereference: function_call @69 '[' dim_offset ']' 451 base_variable_with_function_calls: base_variable 452 | array_function_dereference @@ -708,9 +708,9 @@ Grammar 464 object_property: object_dim_list - 465 $@70: /* empty */ + 465 @70: /* empty */ - 466 object_property: variable_without_objects $@70 + 466 object_property: variable_without_objects @70 467 object_dim_list: object_dim_list '[' dim_offset ']' 468 | object_dim_list '{' expr '}' @@ -727,9 +727,9 @@ Grammar 476 assignment_list_element: variable - 477 $@71: /* empty */ + 477 @71: /* empty */ - 478 assignment_list_element: "list (T_LIST)" '(' $@71 assignment_list ')' + 478 assignment_list_element: "list (T_LIST)" '(' @71 assignment_list ')' 479 | /* empty */ 480 array_pair_list: /* empty */ @@ -751,9 +751,9 @@ Grammar 494 encaps_var: "variable (T_VARIABLE)" - 495 $@72: /* empty */ + 495 @72: /* empty */ - 496 encaps_var: "variable (T_VARIABLE)" '[' $@72 encaps_var_offset ']' + 496 encaps_var: "variable (T_VARIABLE)" '[' @72 encaps_var_offset ']' 497 | "variable (T_VARIABLE)" "-> (T_OBJECT_OPERATOR)" "identifier (T_STRING)" 498 | "${ (T_DOLLAR_OPEN_CURLY_BRACES)" expr '}' 499 | "${ (T_DOLLAR_OPEN_CURLY_BRACES)" "variable name (T_STRING_VARNAME)" '[' expr ']' '}' @@ -773,9 +773,9 @@ Grammar 511 isset_variables: variable - 512 $@73: /* empty */ + 512 @73: /* empty */ - 513 isset_variables: isset_variables ',' $@73 variable + 513 isset_variables: isset_variables ',' @73 variable 514 class_constant: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" "identifier (T_STRING)" 515 | variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" "identifier (T_STRING)" @@ -883,8 +883,8 @@ error (256) T_INLINE_HTML (311) 64 T_CHARACTER (312) T_BAD_CHARACTER (313) -"quoted-string and whitespace (T_ENCAPSED_AND_WHITESPACE)" (314) 379 - 393 491 493 +"quoted-string and whitespace (T_ENCAPSED_AND_WHITESPACE)" + (314) 379 393 491 493 "quoted-string (T_CONSTANT_ENCAPSED_STRING)" (315) 385 "echo (T_ECHO)" (316) 63 "do (T_DO)" (317) 47 @@ -967,16 +967,16 @@ start (159) on left: 1, on right: 0 top_statement_list (160) on left: 3 4, on right: 1 3 13 15 -$@1 (161) +@1 (161) on left: 2, on right: 3 namespace_name (162) on left: 5 6, on right: 6 11 13 20 21 22 23 344 346 348 360 361 362 363 364 365 396 397 398 408 409 410 top_statement (163) on left: 7 8 9 10 11 13 15 16 17, on right: 3 -$@2 (164) +@2 (164) on left: 12, on right: 13 -$@3 (165) +@3 (165) on left: 14, on right: 15 use_declarations (166) on left: 18 19, on right: 16 18 @@ -987,7 +987,7 @@ constant_declaration (168) inner_statement_list (169) on left: 27 28, on right: 27 35 41 81 90 99 122 124 126 135 137 141 147 151 213 333 335 -$@4 (170) +@4 (170) on left: 26, on right: 27 inner_statement (171) on left: 29 30 31 32, on right: 27 @@ -996,49 +996,49 @@ statement (172) unticked_statement (173) on left: 35 38 41 44 47 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 69 72 74 75 81 82 83, on right: 33 -$@5 (174) +@5 (174) on left: 36, on right: 38 -$@6 (175) +@6 (175) on left: 37, on right: 38 -$@7 (176) +@7 (176) on left: 39, on right: 41 -$@8 (177) +@8 (177) on left: 40, on right: 41 -$@9 (178) +@9 (178) on left: 42, on right: 44 -$@10 (179) +@10 (179) on left: 43, on right: 44 -$@11 (180) +@11 (180) on left: 45, on right: 47 -$@12 (181) +@12 (181) on left: 46, on right: 47 -$@13 (182) +@13 (182) on left: 48, on right: 51 -$@14 (183) +@14 (183) on left: 49, on right: 51 -$@15 (184) +@15 (184) on left: 50, on right: 51 -$@16 (185) +@16 (185) on left: 52, on right: 53 -$@17 (186) +@17 (186) on left: 67, on right: 69 -$@18 (187) +@18 (187) on left: 68, on right: 69 -$@19 (188) +@19 (188) on left: 70, on right: 72 -$@20 (189) +@20 (189) on left: 71, on right: 72 -$@21 (190) +@21 (190) on left: 73, on right: 74 -$@22 (191) +@22 (191) on left: 76, on right: 81 -$@23 (192) +@23 (192) on left: 77, on right: 81 -$@24 (193) +@24 (193) on left: 78, on right: 81 -$@25 (194) +@25 (194) on left: 79, on right: 81 -$@26 (195) +@26 (195) on left: 80, on right: 81 additional_catches (196) on left: 84 85, on right: 81 @@ -1048,7 +1048,7 @@ additional_catch (198) on left: 90, on right: 86 87 @27 (199) on left: 88, on right: 90 -$@28 (200) +@28 (200) on left: 89, on right: 90 unset_variables (201) on left: 91 92, on right: 66 92 @@ -1062,13 +1062,13 @@ is_reference (205) on left: 96 97, on right: 99 190 333 335 unticked_function_declaration_statement (206) on left: 99, on right: 94 -$@29 (207) +@29 (207) on left: 98, on right: 99 unticked_class_declaration_statement (208) on left: 101 103, on right: 95 -$@30 (209) +@30 (209) on left: 100, on right: 101 -$@31 (210) +@31 (210) on left: 102, on right: 103 class_entry_type (211) on left: 104 105 106 107, on right: 101 @@ -1098,9 +1098,9 @@ switch_case_list (223) on left: 129 130 131 132, on right: 53 case_list (224) on left: 133 135 137, on right: 129 130 131 132 135 137 -$@32 (225) +@32 (225) on left: 134, on right: 135 -$@33 (226) +@33 (226) on left: 136, on right: 137 case_separator (227) on left: 138 139, on right: 135 137 @@ -1108,11 +1108,11 @@ while_statement (228) on left: 140 141, on right: 44 elseif_list (229) on left: 142 144, on right: 38 144 -$@34 (230) +@34 (230) on left: 143, on right: 144 new_elseif_list (231) on left: 145 147, on right: 41 147 -$@35 (232) +@35 (232) on left: 146, on right: 147 else_single (233) on left: 148 149, on right: 38 @@ -1141,9 +1141,9 @@ class_statement_list (243) on left: 183 184, on right: 101 103 183 class_statement (244) on left: 186 187 188 190, on right: 183 -$@36 (245) +@36 (245) on left: 185, on right: 186 -$@37 (246) +@37 (246) on left: 189, on right: 190 trait_use_statement (247) on left: 191, on right: 188 @@ -1189,7 +1189,7 @@ for_expr (267) on left: 234 235, on right: 51 non_empty_for_expr (268) on left: 237 238, on right: 235 237 -$@38 (269) +@38 (269) on left: 236, on right: 237 chaining_method_or_property (270) on left: 239 240, on right: 239 244 246 @@ -1197,15 +1197,15 @@ chaining_dereference (271) on left: 241 242, on right: 241 244 245 chaining_instance_call (272) on left: 244 245 246, on right: 249 -$@39 (273) +@39 (273) on left: 243, on right: 244 instance_call (274) on left: 247 249, on right: 310 -$@40 (275) +@40 (275) on left: 248, on right: 249 new_expr (276) on left: 251, on right: 308 310 -$@41 (277) +@41 (277) on left: 250, on right: 251 expr_without_variable (278) on left: 253 254 255 257 258 259 260 261 262 263 264 265 266 267 @@ -1213,27 +1213,27 @@ expr_without_variable (278) 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 310 313 315 316 317 318 319 320 321 322 323 324 326 327 328 329 330 331 333 335, on right: 59 72 168 171 424 -$@42 (279) +@42 (279) on left: 252, on right: 253 -$@43 (280) +@43 (280) on left: 256, on right: 257 -$@44 (281) +@44 (281) on left: 274, on right: 275 -$@45 (282) +@45 (282) on left: 276, on right: 277 -$@46 (283) +@46 (283) on left: 278, on right: 279 -$@47 (284) +@47 (284) on left: 280, on right: 281 @48 (285) on left: 309, on right: 310 -$@49 (286) +@49 (286) on left: 311, on right: 313 -$@50 (287) +@50 (287) on left: 312, on right: 313 -$@51 (288) +@51 (288) on left: 314, on right: 315 -$@52 (289) +@52 (289) on left: 325, on right: 326 @53 (290) on left: 332, on right: 333 @@ -1247,21 +1247,21 @@ lexical_var_list (294) on left: 339 340 341 342, on right: 338 339 340 function_call (295) on left: 344 346 348 350 352 354 356 358, on right: 450 453 -$@55 (296) +@55 (296) on left: 343, on right: 344 -$@56 (297) +@56 (297) on left: 345, on right: 346 -$@57 (298) +@57 (298) on left: 347, on right: 348 -$@58 (299) +@58 (299) on left: 349, on right: 350 -$@59 (300) +@59 (300) on left: 351, on right: 352 -$@60 (301) +@60 (301) on left: 353, on right: 354 -$@61 (302) +@61 (302) on left: 355, on right: 356 -$@62 (303) +@62 (303) on left: 357, on right: 358 class_name (304) on left: 359 360 361 362, on right: 350 352 366 405 445 514 @@ -1272,9 +1272,9 @@ class_name_reference (306) on left: 366 367, on right: 251 257 306 dynamic_class_name_reference (307) on left: 370 371, on right: 367 -$@63 (308) +@63 (308) on left: 368, on right: 370 -$@64 (309) +@64 (309) on left: 369, on right: 370 dynamic_class_name_variable_properties (310) on left: 372 373, on right: 370 372 @@ -1287,12 +1287,12 @@ backticks_expr (313) ctor_arguments (314) on left: 381 382, on right: 251 257 common_scalar (315) - on left: 383 384 385 386 387 388 389 390 391 392 393 394, on right: - 395 411 + on left: 383 384 385 386 387 388 389 390 391 392 393 394, + on right: 395 411 static_scalar (316) - on left: 395 396 397 398 399 400 401 402 403 404, on right: 24 - 25 127 128 156 157 160 161 180 182 227 229 230 231 399 400 419 - 420 421 422 + on left: 395 396 397 398 399 400 401 402 403 404, + on right: 24 25 127 128 156 157 160 161 180 182 227 229 230 231 + 399 400 419 420 421 422 static_class_constant (317) on left: 405, on right: 403 scalar (318) @@ -1320,21 +1320,21 @@ variable (326) on left: 430 431, on right: 60 69 72 93 119 120 169 172 254 255 257 259 260 261 262 263 264 265 266 267 268 269 425 426 427 476 500 505 511 513 -$@65 (327) +@65 (327) on left: 428, on right: 430 -$@66 (328) +@66 (328) on left: 429, on right: 430 variable_properties (329) on left: 432 433, on right: 430 432 variable_property (330) on left: 435, on right: 239 240 432 -$@67 (331) +@67 (331) on left: 434, on right: 435 array_method_dereference (332) on left: 436 437, on right: 436 441 method (333) on left: 439, on right: 437 440 -$@68 (334) +@68 (334) on left: 438, on right: 439 method_or_not (335) on left: 440 441 442, on right: 430 435 @@ -1346,7 +1346,7 @@ variable_class_name (338) on left: 447, on right: 354 356 446 515 array_function_dereference (339) on left: 448 450, on right: 448 452 -$@69 (340) +@69 (340) on left: 449, on right: 450 base_variable_with_function_calls (341) on left: 451 452 453, on right: 430 431 @@ -1360,7 +1360,7 @@ dim_offset (345) on left: 462 463, on right: 241 242 436 437 448 450 457 467 object_property (346) on left: 464 466, on right: 370 374 430 435 -$@70 (347) +@70 (347) on left: 465, on right: 466 object_dim_list (348) on left: 467 468 469, on right: 464 467 468 @@ -1372,7 +1372,7 @@ assignment_list (351) on left: 474 475, on right: 253 474 478 assignment_list_element (352) on left: 476 478 479, on right: 474 475 -$@71 (353) +@71 (353) on left: 477, on right: 478 array_pair_list (354) on left: 480 481, on right: 328 329 @@ -1383,7 +1383,7 @@ encaps_list (356) on left: 490 491 492 493, on right: 380 412 413 490 491 encaps_var (357) on left: 494 496 497 498 499 500, on right: 490 492 493 -$@72 (358) +@72 (358) on left: 495, on right: 496 encaps_var_offset (359) on left: 501 502 503, on right: 496 @@ -1391,7 +1391,7 @@ internal_functions_in_yacc (360) on left: 504 505 506 507 508 509 510, on right: 316 isset_variables (361) on left: 511 513, on right: 504 513 -$@73 (362) +@73 (362) on left: 512, on right: 513 class_constant (363) on left: 514 515, on right: 407 @@ -1417,12 +1417,12 @@ state 1 state 2 1 start: top_statement_list . - 3 top_statement_list: top_statement_list . $@1 top_statement + 3 top_statement_list: top_statement_list . @1 top_statement "end of file" reduce using rule 1 (start) - $default reduce using rule 2 ($@1) + $default reduce using rule 2 (@1) - $@1 go to state 4 + @1 go to state 4 state 3 @@ -1434,7 +1434,7 @@ state 3 state 4 - 3 top_statement_list: top_statement_list $@1 . top_statement + 3 top_statement_list: top_statement_list @1 . top_statement "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -2288,11 +2288,11 @@ state 14 state 15 - 326 expr_without_variable: '@' . $@52 expr + 326 expr_without_variable: '@' . @52 expr - $default reduce using rule 325 ($@52) + $default reduce using rule 325 (@52) - $@52 go to state 130 + @52 go to state 130 state 16 @@ -3085,7 +3085,7 @@ state 26 state 27 - 251 new_expr: "new (T_NEW)" . class_name_reference $@41 ctor_arguments + 251 new_expr: "new (T_NEW)" . class_name_reference @41 ctor_arguments "identifier (T_STRING)" shift, and go to state 116 "variable (T_VARIABLE)" shift, and go to state 34 @@ -3119,8 +3119,8 @@ state 28 state 29 - 38 unticked_statement: "if (T_IF)" . '(' expr ')' $@5 statement $@6 elseif_list else_single - 41 | "if (T_IF)" . '(' expr ')' ':' $@7 inner_statement_list $@8 new_elseif_list new_else_single "endif (T_ENDIF)" ';' + 38 unticked_statement: "if (T_IF)" . '(' expr ')' @5 statement @6 elseif_list else_single + 41 | "if (T_IF)" . '(' expr ')' ':' @7 inner_statement_list @8 new_elseif_list new_else_single "endif (T_ENDIF)" ';' '(' shift, and go to state 164 @@ -3261,47 +3261,47 @@ state 37 state 38 - 47 unticked_statement: "do (T_DO)" . $@11 statement "while (T_WHILE)" '(' $@12 expr ')' ';' + 47 unticked_statement: "do (T_DO)" . @11 statement "while (T_WHILE)" '(' @12 expr ')' ';' - $default reduce using rule 45 ($@11) + $default reduce using rule 45 (@11) - $@11 go to state 168 + @11 go to state 168 state 39 - 44 unticked_statement: "while (T_WHILE)" . '(' $@9 expr ')' $@10 while_statement + 44 unticked_statement: "while (T_WHILE)" . '(' @9 expr ')' @10 while_statement '(' shift, and go to state 169 state 40 - 51 unticked_statement: "for (T_FOR)" . '(' for_expr ';' $@13 for_expr ';' $@14 for_expr ')' $@15 for_statement + 51 unticked_statement: "for (T_FOR)" . '(' for_expr ';' @13 for_expr ';' @14 for_expr ')' @15 for_statement '(' shift, and go to state 170 state 41 - 69 unticked_statement: "foreach (T_FOREACH)" . '(' variable "as (T_AS)" $@17 foreach_variable foreach_optional_arg ')' $@18 foreach_statement - 72 | "foreach (T_FOREACH)" . '(' expr_without_variable "as (T_AS)" $@19 variable foreach_optional_arg ')' $@20 foreach_statement + 69 unticked_statement: "foreach (T_FOREACH)" . '(' variable "as (T_AS)" @17 foreach_variable foreach_optional_arg ')' @18 foreach_statement + 72 | "foreach (T_FOREACH)" . '(' expr_without_variable "as (T_AS)" @19 variable foreach_optional_arg ')' @20 foreach_statement '(' shift, and go to state 171 state 42 - 74 unticked_statement: "declare (T_DECLARE)" . $@21 '(' declare_list ')' declare_statement + 74 unticked_statement: "declare (T_DECLARE)" . @21 '(' declare_list ')' declare_statement - $default reduce using rule 73 ($@21) + $default reduce using rule 73 (@21) - $@21 go to state 172 + @21 go to state 172 state 43 - 53 unticked_statement: "switch (T_SWITCH)" . '(' expr ')' $@16 switch_case_list + 53 unticked_statement: "switch (T_SWITCH)" . '(' expr ')' @16 switch_case_list '(' shift, and go to state 173 @@ -3579,11 +3579,11 @@ state 49 state 50 - 81 unticked_statement: "try (T_TRY)" . $@22 '{' inner_statement_list '}' "catch (T_CATCH)" '(' $@23 fully_qualified_class_name $@24 "variable (T_VARIABLE)" ')' $@25 '{' inner_statement_list '}' $@26 additional_catches + 81 unticked_statement: "try (T_TRY)" . @22 '{' inner_statement_list '}' "catch (T_CATCH)" '(' @23 fully_qualified_class_name @24 "variable (T_VARIABLE)" ')' @25 '{' inner_statement_list '}' @26 additional_catches - $default reduce using rule 76 ($@22) + $default reduce using rule 76 (@22) - $@22 go to state 184 + @22 go to state 184 state 51 @@ -3770,7 +3770,7 @@ state 63 state 64 - 253 expr_without_variable: "list (T_LIST)" . '(' $@42 assignment_list ')' '=' expr + 253 expr_without_variable: "list (T_LIST)" . '(' @42 assignment_list ')' '=' expr '(' shift, and go to state 203 @@ -3843,9 +3843,9 @@ state 72 state 73 11 top_statement: "namespace (T_NAMESPACE)" . namespace_name ';' - 13 | "namespace (T_NAMESPACE)" . namespace_name '{' $@2 top_statement_list '}' - 15 | "namespace (T_NAMESPACE)" . '{' $@3 top_statement_list '}' - 346 function_call: "namespace (T_NAMESPACE)" . "\\ (T_NS_SEPARATOR)" namespace_name '(' $@56 function_call_parameter_list ')' + 13 | "namespace (T_NAMESPACE)" . namespace_name '{' @2 top_statement_list '}' + 15 | "namespace (T_NAMESPACE)" . '{' @3 top_statement_list '}' + 346 function_call: "namespace (T_NAMESPACE)" . "\\ (T_NS_SEPARATOR)" namespace_name '(' @56 function_call_parameter_list ')' 361 class_name: "namespace (T_NAMESPACE)" . "\\ (T_NS_SEPARATOR)" namespace_name 409 scalar: "namespace (T_NAMESPACE)" . "\\ (T_NS_SEPARATOR)" namespace_name @@ -3872,7 +3872,7 @@ state 75 state 76 - 348 function_call: "\\ (T_NS_SEPARATOR)" . namespace_name '(' $@57 function_call_parameter_list ')' + 348 function_call: "\\ (T_NS_SEPARATOR)" . namespace_name '(' @57 function_call_parameter_list ')' 362 class_name: "\\ (T_NS_SEPARATOR)" . namespace_name 410 scalar: "\\ (T_NS_SEPARATOR)" . namespace_name @@ -4021,7 +4021,7 @@ state 82 state 83 6 namespace_name: namespace_name . "\\ (T_NS_SEPARATOR)" "identifier (T_STRING)" - 344 function_call: namespace_name . '(' $@55 function_call_parameter_list ')' + 344 function_call: namespace_name . '(' @55 function_call_parameter_list ')' 360 class_name: namespace_name . 408 scalar: namespace_name . @@ -4034,7 +4034,7 @@ state 83 state 84 - 3 top_statement_list: top_statement_list $@1 top_statement . + 3 top_statement_list: top_statement_list @1 top_statement . $default reduce using rule 3 (top_statement_list) @@ -4092,14 +4092,14 @@ state 91 state 92 - 101 unticked_class_declaration_statement: class_entry_type . "identifier (T_STRING)" extends_from $@30 implements_list '{' class_statement_list '}' + 101 unticked_class_declaration_statement: class_entry_type . "identifier (T_STRING)" extends_from @30 implements_list '{' class_statement_list '}' "identifier (T_STRING)" shift, and go to state 229 state 93 - 103 unticked_class_declaration_statement: interface_entry . "identifier (T_STRING)" $@31 interface_extends_list '{' class_statement_list '}' + 103 unticked_class_declaration_statement: interface_entry . "identifier (T_STRING)" @31 interface_extends_list '{' class_statement_list '}' "identifier (T_STRING)" shift, and go to state 230 @@ -4120,7 +4120,7 @@ state 95 state 96 - 99 unticked_function_declaration_statement: function . is_reference "identifier (T_STRING)" $@29 '(' parameter_list ')' '{' inner_statement_list '}' + 99 unticked_function_declaration_statement: function . is_reference "identifier (T_STRING)" @29 '(' parameter_list ')' '{' inner_statement_list '}' 333 expr_without_variable: function . is_reference '(' @53 parameter_list ')' lexical_vars '{' inner_statement_list '}' '&' shift, and go to state 231 @@ -4132,19 +4132,19 @@ state 96 state 97 - 450 array_function_dereference: function_call . $@69 '[' dim_offset ']' + 450 array_function_dereference: function_call . @69 '[' dim_offset ']' 453 base_variable_with_function_calls: function_call . - '[' reduce using rule 449 ($@69) + '[' reduce using rule 449 (@69) $default reduce using rule 453 (base_variable_with_function_calls) - $@69 go to state 233 + @69 go to state 233 state 98 - 350 function_call: class_name . ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name '(' $@58 function_call_parameter_list ')' - 352 | class_name . ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects '(' $@59 function_call_parameter_list ')' + 350 function_call: class_name . ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name '(' @58 function_call_parameter_list ')' + 352 | class_name . ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects '(' @59 function_call_parameter_list ')' 445 static_member: class_name . ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects 514 class_constant: class_name . ":: (T_PAAMAYIM_NEKUDOTAYIM)" "identifier (T_STRING)" @@ -4168,10 +4168,10 @@ state 100 state 101 65 unticked_statement: expr . ';' - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -4193,8 +4193,8 @@ state 101 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr "or (T_LOGICAL_OR)" shift, and go to state 235 "xor (T_LOGICAL_XOR)" shift, and go to state 236 @@ -4245,7 +4245,7 @@ state 104 254 expr_without_variable: variable . '=' expr 255 | variable . '=' '&' variable - 257 | variable . '=' '&' "new (T_NEW)" class_name_reference $@43 ctor_arguments + 257 | variable . '=' '&' "new (T_NEW)" class_name_reference @43 ctor_arguments 259 | variable . "+= (T_PLUS_EQUAL)" expr 260 | variable . "-= (T_MINUS_EQUAL)" expr 261 | variable . "*= (T_MUL_EQUAL)" expr @@ -4280,7 +4280,7 @@ state 104 state 105 - 358 function_call: variable_without_objects . '(' $@62 function_call_parameter_list ')' + 358 function_call: variable_without_objects . '(' @62 function_call_parameter_list ')' '(' shift, and go to state 276 @@ -4294,8 +4294,8 @@ state 106 state 107 - 354 function_call: variable_class_name . ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name '(' $@60 function_call_parameter_list ')' - 356 | variable_class_name . ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects '(' $@61 function_call_parameter_list ')' + 354 function_call: variable_class_name . ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name '(' @60 function_call_parameter_list ')' + 356 | variable_class_name . ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects '(' @61 function_call_parameter_list ')' 446 static_member: variable_class_name . ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects 515 class_constant: variable_class_name . ":: (T_PAAMAYIM_NEKUDOTAYIM)" "identifier (T_STRING)" @@ -4314,7 +4314,7 @@ state 108 state 109 - 430 variable: base_variable_with_function_calls . "-> (T_OBJECT_OPERATOR)" $@65 object_property $@66 method_or_not variable_properties + 430 variable: base_variable_with_function_calls . "-> (T_OBJECT_OPERATOR)" @65 object_property @66 method_or_not variable_properties 431 | base_variable_with_function_calls . "-> (T_OBJECT_OPERATOR)" shift, and go to state 279 @@ -4400,7 +4400,7 @@ state 117 state 118 - 346 function_call: "namespace (T_NAMESPACE)" . "\\ (T_NS_SEPARATOR)" namespace_name '(' $@56 function_call_parameter_list ')' + 346 function_call: "namespace (T_NAMESPACE)" . "\\ (T_NS_SEPARATOR)" namespace_name '(' @56 function_call_parameter_list ')' 361 class_name: "namespace (T_NAMESPACE)" . "\\ (T_NS_SEPARATOR)" namespace_name 409 scalar: "namespace (T_NAMESPACE)" . "\\ (T_NS_SEPARATOR)" namespace_name @@ -4420,10 +4420,10 @@ state 119 state 120 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -4445,8 +4445,8 @@ state 120 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr 510 internal_functions_in_yacc: "require_once (T_REQUIRE_ONCE)" expr . "or (T_LOGICAL_OR)" shift, and go to state 235 @@ -4481,10 +4481,10 @@ state 120 state 121 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -4506,8 +4506,8 @@ state 121 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr 509 internal_functions_in_yacc: "require (T_REQUIRE)" expr . "or (T_LOGICAL_OR)" shift, and go to state 235 @@ -4623,10 +4623,10 @@ state 122 state 123 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -4648,8 +4648,8 @@ state 123 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr 507 internal_functions_in_yacc: "include_once (T_INCLUDE_ONCE)" expr . "or (T_LOGICAL_OR)" shift, and go to state 235 @@ -4684,10 +4684,10 @@ state 123 state 124 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -4709,8 +4709,8 @@ state 124 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr 506 internal_functions_in_yacc: "include (T_INCLUDE)" expr . "or (T_LOGICAL_OR)" shift, and go to state 235 @@ -4745,10 +4745,10 @@ state 124 state 125 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -4770,8 +4770,8 @@ state 125 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr 331 | "print (T_PRINT)" expr . '?' shift, and go to state 238 @@ -4803,10 +4803,10 @@ state 125 state 126 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -4829,18 +4829,18 @@ state 126 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr $default reduce using rule 294 (expr_without_variable) state 127 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -4863,18 +4863,18 @@ state 127 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr $default reduce using rule 295 (expr_without_variable) state 128 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -4897,8 +4897,8 @@ state 128 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr "instanceof (T_INSTANCEOF)" shift, and go to state 260 @@ -4907,10 +4907,10 @@ state 128 state 129 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -4933,15 +4933,15 @@ state 129 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr $default reduce using rule 297 (expr_without_variable) state 130 - 326 expr_without_variable: '@' $@52 . expr + 326 expr_without_variable: '@' @52 . expr "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -5022,10 +5022,10 @@ state 130 state 131 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -5047,8 +5047,8 @@ state 131 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr 323 | "(unset) (T_UNSET_CAST)" expr . $default reduce using rule 323 (expr_without_variable) @@ -5056,10 +5056,10 @@ state 131 state 132 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -5081,8 +5081,8 @@ state 132 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr 322 | "(bool) (T_BOOL_CAST)" expr . $default reduce using rule 322 (expr_without_variable) @@ -5090,10 +5090,10 @@ state 132 state 133 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -5115,8 +5115,8 @@ state 133 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr 321 | "(object) (T_OBJECT_CAST)" expr . $default reduce using rule 321 (expr_without_variable) @@ -5124,10 +5124,10 @@ state 133 state 134 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -5149,8 +5149,8 @@ state 134 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr 320 | "(array) (T_ARRAY_CAST)" expr . $default reduce using rule 320 (expr_without_variable) @@ -5158,10 +5158,10 @@ state 134 state 135 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -5183,8 +5183,8 @@ state 135 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr 319 | "(string) (T_STRING_CAST)" expr . $default reduce using rule 319 (expr_without_variable) @@ -5192,10 +5192,10 @@ state 135 state 136 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -5217,8 +5217,8 @@ state 136 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr 318 | "(double) (T_DOUBLE_CAST)" expr . $default reduce using rule 318 (expr_without_variable) @@ -5226,10 +5226,10 @@ state 136 state 137 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -5251,8 +5251,8 @@ state 137 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr 317 | "(int) (T_INT_CAST)" expr . $default reduce using rule 317 (expr_without_variable) @@ -5267,7 +5267,7 @@ state 138 state 139 - 346 function_call: "namespace (T_NAMESPACE)" . "\\ (T_NS_SEPARATOR)" namespace_name '(' $@56 function_call_parameter_list ')' + 346 function_call: "namespace (T_NAMESPACE)" . "\\ (T_NS_SEPARATOR)" namespace_name '(' @56 function_call_parameter_list ')' 361 class_name: "namespace (T_NAMESPACE)" . "\\ (T_NS_SEPARATOR)" namespace_name "\\ (T_NS_SEPARATOR)" shift, and go to state 287 @@ -5275,7 +5275,7 @@ state 139 state 140 - 348 function_call: "\\ (T_NS_SEPARATOR)" . namespace_name '(' $@57 function_call_parameter_list ')' + 348 function_call: "\\ (T_NS_SEPARATOR)" . namespace_name '(' @57 function_call_parameter_list ')' 362 class_name: "\\ (T_NS_SEPARATOR)" . namespace_name "identifier (T_STRING)" shift, and go to state 116 @@ -5286,7 +5286,7 @@ state 140 state 141 6 namespace_name: namespace_name . "\\ (T_NS_SEPARATOR)" "identifier (T_STRING)" - 344 function_call: namespace_name . '(' $@55 function_call_parameter_list ')' + 344 function_call: namespace_name . '(' @55 function_call_parameter_list ')' 360 class_name: namespace_name . "\\ (T_NS_SEPARATOR)" shift, and go to state 225 @@ -5297,8 +5297,8 @@ state 141 state 142 - 350 function_call: class_name . ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name '(' $@58 function_call_parameter_list ')' - 352 | class_name . ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects '(' $@59 function_call_parameter_list ')' + 350 function_call: class_name . ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name '(' @58 function_call_parameter_list ')' + 352 | class_name . ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects '(' @59 function_call_parameter_list ')' 445 static_member: class_name . ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects ":: (T_PAAMAYIM_NEKUDOTAYIM)" shift, and go to state 289 @@ -5320,8 +5320,8 @@ state 144 state 145 - 354 function_call: variable_class_name . ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name '(' $@60 function_call_parameter_list ')' - 356 | variable_class_name . ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects '(' $@61 function_call_parameter_list ')' + 354 function_call: variable_class_name . ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name '(' @60 function_call_parameter_list ')' + 356 | variable_class_name . ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects '(' @61 function_call_parameter_list ')' 446 static_member: variable_class_name . ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects ":: (T_PAAMAYIM_NEKUDOTAYIM)" shift, and go to state 290 @@ -5363,10 +5363,10 @@ state 147 state 148 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -5388,8 +5388,8 @@ state 148 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr 484 non_empty_array_pair_list: expr . "=> (T_DOUBLE_ARROW)" expr 485 | expr . 488 | expr . "=> (T_DOUBLE_ARROW)" '&' w_variable @@ -5450,10 +5450,10 @@ state 150 state 151 258 expr_without_variable: "clone (T_CLONE)" expr . - 275 | expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 | expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -5475,8 +5475,8 @@ state 151 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr $default reduce using rule 258 (expr_without_variable) @@ -5519,11 +5519,11 @@ state 155 state 156 - 251 new_expr: "new (T_NEW)" class_name_reference . $@41 ctor_arguments + 251 new_expr: "new (T_NEW)" class_name_reference . @41 ctor_arguments - $default reduce using rule 250 ($@41) + $default reduce using rule 250 (@41) - $@41 go to state 300 + @41 go to state 300 state 157 @@ -5542,7 +5542,7 @@ state 158 state 159 - 370 dynamic_class_name_reference: base_variable . "-> (T_OBJECT_OPERATOR)" $@63 object_property $@64 dynamic_class_name_variable_properties + 370 dynamic_class_name_reference: base_variable . "-> (T_OBJECT_OPERATOR)" @63 object_property @64 dynamic_class_name_variable_properties 371 | base_variable . "-> (T_OBJECT_OPERATOR)" shift, and go to state 302 @@ -5668,8 +5668,8 @@ state 163 state 164 - 38 unticked_statement: "if (T_IF)" '(' . expr ')' $@5 statement $@6 elseif_list else_single - 41 | "if (T_IF)" '(' . expr ')' ':' $@7 inner_statement_list $@8 new_elseif_list new_else_single "endif (T_ENDIF)" ';' + 38 unticked_statement: "if (T_IF)" '(' . expr ')' @5 statement @6 elseif_list else_single + 41 | "if (T_IF)" '(' . expr ')' ':' @7 inner_statement_list @8 new_elseif_list new_else_single "endif (T_ENDIF)" ';' "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -5767,10 +5767,10 @@ state 166 state 167 233 echo_expr_list: expr . - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -5792,8 +5792,8 @@ state 167 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr "or (T_LOGICAL_OR)" shift, and go to state 235 "xor (T_LOGICAL_XOR)" shift, and go to state 236 @@ -5827,7 +5827,7 @@ state 167 state 168 - 47 unticked_statement: "do (T_DO)" $@11 . statement "while (T_WHILE)" '(' $@12 expr ')' ';' + 47 unticked_statement: "do (T_DO)" @11 . statement "while (T_WHILE)" '(' @12 expr ')' ';' "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -5929,16 +5929,16 @@ state 168 state 169 - 44 unticked_statement: "while (T_WHILE)" '(' . $@9 expr ')' $@10 while_statement + 44 unticked_statement: "while (T_WHILE)" '(' . @9 expr ')' @10 while_statement - $default reduce using rule 42 ($@9) + $default reduce using rule 42 (@9) - $@9 go to state 310 + @9 go to state 310 state 170 - 51 unticked_statement: "for (T_FOR)" '(' . for_expr ';' $@13 for_expr ';' $@14 for_expr ')' $@15 for_statement + 51 unticked_statement: "for (T_FOR)" '(' . for_expr ';' @13 for_expr ';' @14 for_expr ')' @15 for_statement "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -6023,8 +6023,8 @@ state 170 state 171 - 69 unticked_statement: "foreach (T_FOREACH)" '(' . variable "as (T_AS)" $@17 foreach_variable foreach_optional_arg ')' $@18 foreach_statement - 72 | "foreach (T_FOREACH)" '(' . expr_without_variable "as (T_AS)" $@19 variable foreach_optional_arg ')' $@20 foreach_statement + 69 unticked_statement: "foreach (T_FOREACH)" '(' . variable "as (T_AS)" @17 foreach_variable foreach_optional_arg ')' @18 foreach_statement + 72 | "foreach (T_FOREACH)" '(' . expr_without_variable "as (T_AS)" @19 variable foreach_optional_arg ')' @20 foreach_statement "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -6105,14 +6105,14 @@ state 171 state 172 - 74 unticked_statement: "declare (T_DECLARE)" $@21 . '(' declare_list ')' declare_statement + 74 unticked_statement: "declare (T_DECLARE)" @21 . '(' declare_list ')' declare_statement '(' shift, and go to state 316 state 173 - 53 unticked_statement: "switch (T_SWITCH)" '(' . expr ')' $@16 switch_case_list + 53 unticked_statement: "switch (T_SWITCH)" '(' . expr ')' @16 switch_case_list "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -6201,10 +6201,10 @@ state 174 state 175 55 unticked_statement: "break (T_BREAK)" expr . ';' - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -6226,8 +6226,8 @@ state 175 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr "or (T_LOGICAL_OR)" shift, and go to state 235 "xor (T_LOGICAL_XOR)" shift, and go to state 236 @@ -6268,10 +6268,10 @@ state 176 state 177 57 unticked_statement: "continue (T_CONTINUE)" expr . ';' - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -6293,8 +6293,8 @@ state 177 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr "or (T_LOGICAL_OR)" shift, and go to state 235 "xor (T_LOGICAL_XOR)" shift, and go to state 236 @@ -6358,10 +6358,10 @@ state 181 state 182 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -6383,8 +6383,8 @@ state 182 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr "or (T_LOGICAL_OR)" shift, and go to state 235 "xor (T_LOGICAL_XOR)" shift, and go to state 236 @@ -6419,7 +6419,7 @@ state 183 60 unticked_statement: "return (T_RETURN)" variable . ';' 254 expr_without_variable: variable . '=' expr 255 | variable . '=' '&' variable - 257 | variable . '=' '&' "new (T_NEW)" class_name_reference $@43 ctor_arguments + 257 | variable . '=' '&' "new (T_NEW)" class_name_reference @43 ctor_arguments 259 | variable . "+= (T_PLUS_EQUAL)" expr 260 | variable . "-= (T_MINUS_EQUAL)" expr 261 | variable . "*= (T_MUL_EQUAL)" expr @@ -6455,7 +6455,7 @@ state 183 state 184 - 81 unticked_statement: "try (T_TRY)" $@22 . '{' inner_statement_list '}' "catch (T_CATCH)" '(' $@23 fully_qualified_class_name $@24 "variable (T_VARIABLE)" ')' $@25 '{' inner_statement_list '}' $@26 additional_catches + 81 unticked_statement: "try (T_TRY)" @22 . '{' inner_statement_list '}' "catch (T_CATCH)" '(' @23 fully_qualified_class_name @24 "variable (T_VARIABLE)" ')' @25 '{' inner_statement_list '}' @26 additional_catches '{' shift, and go to state 324 @@ -6463,10 +6463,10 @@ state 184 state 185 82 unticked_statement: "throw (T_THROW)" expr . ';' - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -6488,8 +6488,8 @@ state 185 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr "or (T_LOGICAL_OR)" shift, and go to state 235 "xor (T_LOGICAL_XOR)" shift, and go to state 236 @@ -6745,11 +6745,11 @@ state 202 state 203 - 253 expr_without_variable: "list (T_LIST)" '(' . $@42 assignment_list ')' '=' expr + 253 expr_without_variable: "list (T_LIST)" '(' . @42 assignment_list ')' '=' expr - $default reduce using rule 252 ($@42) + $default reduce using rule 252 (@42) - $@42 go to state 346 + @42 go to state 346 state 204 @@ -6841,7 +6841,7 @@ state 204 state 205 494 encaps_var: "variable (T_VARIABLE)" . - 496 | "variable (T_VARIABLE)" . '[' $@72 encaps_var_offset ']' + 496 | "variable (T_VARIABLE)" . '[' @72 encaps_var_offset ']' 497 | "variable (T_VARIABLE)" . "-> (T_OBJECT_OPERATOR)" "identifier (T_STRING)" '[' shift, and go to state 348 @@ -7002,7 +7002,7 @@ state 211 state 212 - 346 function_call: "namespace (T_NAMESPACE)" "\\ (T_NS_SEPARATOR)" . namespace_name '(' $@56 function_call_parameter_list ')' + 346 function_call: "namespace (T_NAMESPACE)" "\\ (T_NS_SEPARATOR)" . namespace_name '(' @56 function_call_parameter_list ')' 361 class_name: "namespace (T_NAMESPACE)" "\\ (T_NS_SEPARATOR)" . namespace_name 409 scalar: "namespace (T_NAMESPACE)" "\\ (T_NS_SEPARATOR)" . namespace_name @@ -7013,18 +7013,18 @@ state 212 state 213 - 15 top_statement: "namespace (T_NAMESPACE)" '{' . $@3 top_statement_list '}' + 15 top_statement: "namespace (T_NAMESPACE)" '{' . @3 top_statement_list '}' - $default reduce using rule 14 ($@3) + $default reduce using rule 14 (@3) - $@3 go to state 359 + @3 go to state 359 state 214 6 namespace_name: namespace_name . "\\ (T_NS_SEPARATOR)" "identifier (T_STRING)" 11 top_statement: "namespace (T_NAMESPACE)" namespace_name . ';' - 13 | "namespace (T_NAMESPACE)" namespace_name . '{' $@2 top_statement_list '}' + 13 | "namespace (T_NAMESPACE)" namespace_name . '{' @2 top_statement_list '}' "\\ (T_NS_SEPARATOR)" shift, and go to state 225 ';' shift, and go to state 360 @@ -7034,7 +7034,7 @@ state 214 state 215 6 namespace_name: namespace_name . "\\ (T_NS_SEPARATOR)" "identifier (T_STRING)" - 348 function_call: "\\ (T_NS_SEPARATOR)" namespace_name . '(' $@57 function_call_parameter_list ')' + 348 function_call: "\\ (T_NS_SEPARATOR)" namespace_name . '(' @57 function_call_parameter_list ')' 362 class_name: "\\ (T_NS_SEPARATOR)" namespace_name . 410 scalar: "\\ (T_NS_SEPARATOR)" namespace_name . @@ -7058,10 +7058,10 @@ state 216 state 217 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -7084,8 +7084,8 @@ state 217 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference 307 | '(' expr . ')' - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr "or (T_LOGICAL_OR)" shift, and go to state 235 "xor (T_LOGICAL_XOR)" shift, and go to state 236 @@ -7118,14 +7118,14 @@ state 217 state 218 - 27 inner_statement_list: inner_statement_list . $@4 inner_statement + 27 inner_statement_list: inner_statement_list . @4 inner_statement 35 unticked_statement: '{' inner_statement_list . '}' '}' shift, and go to state 365 - $default reduce using rule 26 ($@4) + $default reduce using rule 26 (@4) - $@4 go to state 366 + @4 go to state 366 state 219 @@ -7281,11 +7281,11 @@ state 225 state 226 - 344 function_call: namespace_name '(' . $@55 function_call_parameter_list ')' + 344 function_call: namespace_name '(' . @55 function_call_parameter_list ')' - $default reduce using rule 343 ($@55) + $default reduce using rule 343 (@55) - $@55 go to state 371 + @55 go to state 371 state 227 @@ -7304,7 +7304,7 @@ state 228 state 229 - 101 unticked_class_declaration_statement: class_entry_type "identifier (T_STRING)" . extends_from $@30 implements_list '{' class_statement_list '}' + 101 unticked_class_declaration_statement: class_entry_type "identifier (T_STRING)" . extends_from @30 implements_list '{' class_statement_list '}' "extends (T_EXTENDS)" shift, and go to state 373 @@ -7315,11 +7315,11 @@ state 229 state 230 - 103 unticked_class_declaration_statement: interface_entry "identifier (T_STRING)" . $@31 interface_extends_list '{' class_statement_list '}' + 103 unticked_class_declaration_statement: interface_entry "identifier (T_STRING)" . @31 interface_extends_list '{' class_statement_list '}' - $default reduce using rule 102 ($@31) + $default reduce using rule 102 (@31) - $@31 go to state 375 + @31 go to state 375 state 231 @@ -7331,7 +7331,7 @@ state 231 state 232 - 99 unticked_function_declaration_statement: function is_reference . "identifier (T_STRING)" $@29 '(' parameter_list ')' '{' inner_statement_list '}' + 99 unticked_function_declaration_statement: function is_reference . "identifier (T_STRING)" @29 '(' parameter_list ')' '{' inner_statement_list '}' 333 expr_without_variable: function is_reference . '(' @53 parameter_list ')' lexical_vars '{' inner_statement_list '}' "identifier (T_STRING)" shift, and go to state 376 @@ -7340,15 +7340,15 @@ state 232 state 233 - 450 array_function_dereference: function_call $@69 . '[' dim_offset ']' + 450 array_function_dereference: function_call @69 . '[' dim_offset ']' '[' shift, and go to state 378 state 234 - 350 function_call: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" . variable_name '(' $@58 function_call_parameter_list ')' - 352 | class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" . variable_without_objects '(' $@59 function_call_parameter_list ')' + 350 function_call: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" . variable_name '(' @58 function_call_parameter_list ')' + 352 | class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" . variable_without_objects '(' @59 function_call_parameter_list ')' 445 static_member: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" . variable_without_objects 514 class_constant: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" . "identifier (T_STRING)" @@ -7366,11 +7366,11 @@ state 234 state 235 - 279 expr_without_variable: expr "or (T_LOGICAL_OR)" . $@46 expr + 279 expr_without_variable: expr "or (T_LOGICAL_OR)" . @46 expr - $default reduce using rule 278 ($@46) + $default reduce using rule 278 (@46) - $@46 go to state 385 + @46 go to state 385 state 236 @@ -7456,41 +7456,41 @@ state 236 state 237 - 281 expr_without_variable: expr "and (T_LOGICAL_AND)" . $@47 expr + 281 expr_without_variable: expr "and (T_LOGICAL_AND)" . @47 expr - $default reduce using rule 280 ($@47) + $default reduce using rule 280 (@47) - $@47 go to state 387 + @47 go to state 387 state 238 - 313 expr_without_variable: expr '?' . $@49 expr ':' $@50 expr - 315 | expr '?' . ':' $@51 expr + 313 expr_without_variable: expr '?' . @49 expr ':' @50 expr + 315 | expr '?' . ':' @51 expr ':' shift, and go to state 388 - $default reduce using rule 311 ($@49) + $default reduce using rule 311 (@49) - $@49 go to state 389 + @49 go to state 389 state 239 - 275 expr_without_variable: expr "|| (T_BOOLEAN_OR)" . $@44 expr + 275 expr_without_variable: expr "|| (T_BOOLEAN_OR)" . @44 expr - $default reduce using rule 274 ($@44) + $default reduce using rule 274 (@44) - $@44 go to state 390 + @44 go to state 390 state 240 - 277 expr_without_variable: expr "&& (T_BOOLEAN_AND)" . $@45 expr + 277 expr_without_variable: expr "&& (T_BOOLEAN_AND)" . @45 expr - $default reduce using rule 276 ($@45) + $default reduce using rule 276 (@45) - $@45 go to state 391 + @45 go to state 391 state 241 @@ -9080,7 +9080,7 @@ state 264 254 expr_without_variable: variable '=' . expr 255 | variable '=' . '&' variable - 257 | variable '=' . '&' "new (T_NEW)" class_name_reference $@43 ctor_arguments + 257 | variable '=' . '&' "new (T_NEW)" class_name_reference @43 ctor_arguments "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -10053,17 +10053,17 @@ state 275 state 276 - 358 function_call: variable_without_objects '(' . $@62 function_call_parameter_list ')' + 358 function_call: variable_without_objects '(' . @62 function_call_parameter_list ')' - $default reduce using rule 357 ($@62) + $default reduce using rule 357 (@62) - $@62 go to state 425 + @62 go to state 425 state 277 - 354 function_call: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" . variable_name '(' $@60 function_call_parameter_list ')' - 356 | variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" . variable_without_objects '(' $@61 function_call_parameter_list ')' + 354 function_call: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" . variable_name '(' @60 function_call_parameter_list ')' + 356 | variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" . variable_without_objects '(' @61 function_call_parameter_list ')' 446 static_member: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" . variable_without_objects 515 class_constant: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" . "identifier (T_STRING)" @@ -10165,11 +10165,11 @@ state 278 state 279 - 430 variable: base_variable_with_function_calls "-> (T_OBJECT_OPERATOR)" . $@65 object_property $@66 method_or_not variable_properties + 430 variable: base_variable_with_function_calls "-> (T_OBJECT_OPERATOR)" . @65 object_property @66 method_or_not variable_properties - $default reduce using rule 428 ($@65) + $default reduce using rule 428 (@65) - $@65 go to state 431 + @65 go to state 431 state 280 @@ -10370,10 +10370,10 @@ state 284 state 285 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -10395,8 +10395,8 @@ state 285 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr 508 internal_functions_in_yacc: "eval (T_EVAL)" '(' expr . ')' "or (T_LOGICAL_OR)" shift, and go to state 235 @@ -10430,10 +10430,10 @@ state 285 state 286 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -10455,16 +10455,16 @@ state 286 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr - 326 | '@' $@52 expr . + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr + 326 | '@' @52 expr . $default reduce using rule 326 (expr_without_variable) state 287 - 346 function_call: "namespace (T_NAMESPACE)" "\\ (T_NS_SEPARATOR)" . namespace_name '(' $@56 function_call_parameter_list ')' + 346 function_call: "namespace (T_NAMESPACE)" "\\ (T_NS_SEPARATOR)" . namespace_name '(' @56 function_call_parameter_list ')' 361 class_name: "namespace (T_NAMESPACE)" "\\ (T_NS_SEPARATOR)" . namespace_name "identifier (T_STRING)" shift, and go to state 116 @@ -10475,7 +10475,7 @@ state 287 state 288 6 namespace_name: namespace_name . "\\ (T_NS_SEPARATOR)" "identifier (T_STRING)" - 348 function_call: "\\ (T_NS_SEPARATOR)" namespace_name . '(' $@57 function_call_parameter_list ')' + 348 function_call: "\\ (T_NS_SEPARATOR)" namespace_name . '(' @57 function_call_parameter_list ')' 362 class_name: "\\ (T_NS_SEPARATOR)" namespace_name . "\\ (T_NS_SEPARATOR)" shift, and go to state 225 @@ -10486,8 +10486,8 @@ state 288 state 289 - 350 function_call: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" . variable_name '(' $@58 function_call_parameter_list ')' - 352 | class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" . variable_without_objects '(' $@59 function_call_parameter_list ')' + 350 function_call: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" . variable_name '(' @58 function_call_parameter_list ')' + 352 | class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" . variable_without_objects '(' @59 function_call_parameter_list ')' 445 static_member: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" . variable_without_objects "identifier (T_STRING)" shift, and go to state 436 @@ -10504,8 +10504,8 @@ state 289 state 290 - 354 function_call: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" . variable_name '(' $@60 function_call_parameter_list ')' - 356 | variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" . variable_without_objects '(' $@61 function_call_parameter_list ')' + 354 function_call: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" . variable_name '(' @60 function_call_parameter_list ')' + 356 | variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" . variable_without_objects '(' @61 function_call_parameter_list ')' 446 static_member: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" . variable_without_objects "identifier (T_STRING)" shift, and go to state 436 @@ -10753,7 +10753,7 @@ state 299 state 300 - 251 new_expr: "new (T_NEW)" class_name_reference $@41 . ctor_arguments + 251 new_expr: "new (T_NEW)" class_name_reference @41 . ctor_arguments '(' shift, and go to state 443 @@ -10777,11 +10777,11 @@ state 301 state 302 - 370 dynamic_class_name_reference: base_variable "-> (T_OBJECT_OPERATOR)" . $@63 object_property $@64 dynamic_class_name_variable_properties + 370 dynamic_class_name_reference: base_variable "-> (T_OBJECT_OPERATOR)" . @63 object_property @64 dynamic_class_name_variable_properties - $default reduce using rule 368 ($@63) + $default reduce using rule 368 (@63) - $@63 go to state 446 + @63 go to state 446 state 303 @@ -10805,10 +10805,10 @@ state 304 state 305 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -10830,8 +10830,8 @@ state 305 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr 377 exit_expr: '(' expr . ')' "or (T_LOGICAL_OR)" shift, and go to state 235 @@ -10865,12 +10865,12 @@ state 305 state 306 - 38 unticked_statement: "if (T_IF)" '(' expr . ')' $@5 statement $@6 elseif_list else_single - 41 | "if (T_IF)" '(' expr . ')' ':' $@7 inner_statement_list $@8 new_elseif_list new_else_single "endif (T_ENDIF)" ';' - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 38 unticked_statement: "if (T_IF)" '(' expr . ')' @5 statement @6 elseif_list else_single + 41 | "if (T_IF)" '(' expr . ')' ':' @7 inner_statement_list @8 new_elseif_list new_else_single "endif (T_ENDIF)" ';' + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -10892,8 +10892,8 @@ state 306 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr "or (T_LOGICAL_OR)" shift, and go to state 235 "xor (T_LOGICAL_XOR)" shift, and go to state 236 @@ -11014,14 +11014,14 @@ state 308 state 309 - 47 unticked_statement: "do (T_DO)" $@11 statement . "while (T_WHILE)" '(' $@12 expr ')' ';' + 47 unticked_statement: "do (T_DO)" @11 statement . "while (T_WHILE)" '(' @12 expr ')' ';' "while (T_WHILE)" shift, and go to state 450 state 310 - 44 unticked_statement: "while (T_WHILE)" '(' $@9 . expr ')' $@10 while_statement + 44 unticked_statement: "while (T_WHILE)" '(' @9 . expr ')' @10 while_statement "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -11102,7 +11102,7 @@ state 310 state 311 - 51 unticked_statement: "for (T_FOR)" '(' for_expr . ';' $@13 for_expr ';' $@14 for_expr ')' $@15 for_statement + 51 unticked_statement: "for (T_FOR)" '(' for_expr . ';' @13 for_expr ';' @14 for_expr ')' @15 for_statement ';' shift, and go to state 452 @@ -11110,7 +11110,7 @@ state 311 state 312 235 for_expr: non_empty_for_expr . - 237 non_empty_for_expr: non_empty_for_expr . ',' $@38 expr + 237 non_empty_for_expr: non_empty_for_expr . ',' @38 expr ',' shift, and go to state 453 @@ -11120,10 +11120,10 @@ state 312 state 313 238 non_empty_for_expr: expr . - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -11145,8 +11145,8 @@ state 313 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr "or (T_LOGICAL_OR)" shift, and go to state 235 "xor (T_LOGICAL_XOR)" shift, and go to state 236 @@ -11180,7 +11180,7 @@ state 313 state 314 - 72 unticked_statement: "foreach (T_FOREACH)" '(' expr_without_variable . "as (T_AS)" $@19 variable foreach_optional_arg ')' $@20 foreach_statement + 72 unticked_statement: "foreach (T_FOREACH)" '(' expr_without_variable . "as (T_AS)" @19 variable foreach_optional_arg ')' @20 foreach_statement 424 expr: expr_without_variable . "as (T_AS)" shift, and go to state 454 @@ -11190,10 +11190,10 @@ state 314 state 315 - 69 unticked_statement: "foreach (T_FOREACH)" '(' variable . "as (T_AS)" $@17 foreach_variable foreach_optional_arg ')' $@18 foreach_statement + 69 unticked_statement: "foreach (T_FOREACH)" '(' variable . "as (T_AS)" @17 foreach_variable foreach_optional_arg ')' @18 foreach_statement 254 expr_without_variable: variable . '=' expr 255 | variable . '=' '&' variable - 257 | variable . '=' '&' "new (T_NEW)" class_name_reference $@43 ctor_arguments + 257 | variable . '=' '&' "new (T_NEW)" class_name_reference @43 ctor_arguments 259 | variable . "+= (T_PLUS_EQUAL)" expr 260 | variable . "-= (T_MINUS_EQUAL)" expr 261 | variable . "*= (T_MUL_EQUAL)" expr @@ -11229,7 +11229,7 @@ state 315 state 316 - 74 unticked_statement: "declare (T_DECLARE)" $@21 '(' . declare_list ')' declare_statement + 74 unticked_statement: "declare (T_DECLARE)" @21 '(' . declare_list ')' declare_statement "identifier (T_STRING)" shift, and go to state 456 @@ -11238,11 +11238,11 @@ state 316 state 317 - 53 unticked_statement: "switch (T_SWITCH)" '(' expr . ')' $@16 switch_case_list - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 53 unticked_statement: "switch (T_SWITCH)" '(' expr . ')' @16 switch_case_list + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -11264,8 +11264,8 @@ state 317 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr "or (T_LOGICAL_OR)" shift, and go to state 235 "xor (T_LOGICAL_XOR)" shift, and go to state 236 @@ -11365,7 +11365,7 @@ state 323 state 324 - 81 unticked_statement: "try (T_TRY)" $@22 '{' . inner_statement_list '}' "catch (T_CATCH)" '(' $@23 fully_qualified_class_name $@24 "variable (T_VARIABLE)" ')' $@25 '{' inner_statement_list '}' $@26 additional_catches + 81 unticked_statement: "try (T_TRY)" @22 '{' . inner_statement_list '}' "catch (T_CATCH)" '(' @23 fully_qualified_class_name @24 "variable (T_VARIABLE)" ')' @25 '{' inner_statement_list '}' @26 additional_catches $default reduce using rule 28 (inner_statement_list) @@ -11615,7 +11615,7 @@ state 342 state 343 504 internal_functions_in_yacc: "isset (T_ISSET)" '(' isset_variables . ')' - 513 isset_variables: isset_variables . ',' $@73 variable + 513 isset_variables: isset_variables . ',' @73 variable ',' shift, and go to state 483 ')' shift, and go to state 484 @@ -11637,7 +11637,7 @@ state 345 state 346 - 253 expr_without_variable: "list (T_LIST)" '(' $@42 . assignment_list ')' '=' expr + 253 expr_without_variable: "list (T_LIST)" '(' @42 . assignment_list ')' '=' expr "identifier (T_STRING)" shift, and go to state 116 "variable (T_VARIABLE)" shift, and go to state 34 @@ -11675,11 +11675,11 @@ state 347 state 348 - 496 encaps_var: "variable (T_VARIABLE)" '[' . $@72 encaps_var_offset ']' + 496 encaps_var: "variable (T_VARIABLE)" '[' . @72 encaps_var_offset ']' - $default reduce using rule 495 ($@72) + $default reduce using rule 495 (@72) - $@72 go to state 492 + @72 go to state 492 state 349 @@ -11715,10 +11715,10 @@ state 352 state 353 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -11740,8 +11740,8 @@ state 353 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr 498 encaps_var: "${ (T_DOLLAR_OPEN_CURLY_BRACES)" expr . '}' "or (T_LOGICAL_OR)" shift, and go to state 235 @@ -11804,7 +11804,7 @@ state 357 state 358 6 namespace_name: namespace_name . "\\ (T_NS_SEPARATOR)" "identifier (T_STRING)" - 346 function_call: "namespace (T_NAMESPACE)" "\\ (T_NS_SEPARATOR)" namespace_name . '(' $@56 function_call_parameter_list ')' + 346 function_call: "namespace (T_NAMESPACE)" "\\ (T_NS_SEPARATOR)" namespace_name . '(' @56 function_call_parameter_list ')' 361 class_name: "namespace (T_NAMESPACE)" "\\ (T_NS_SEPARATOR)" namespace_name . 409 scalar: "namespace (T_NAMESPACE)" "\\ (T_NS_SEPARATOR)" namespace_name . @@ -11817,7 +11817,7 @@ state 358 state 359 - 15 top_statement: "namespace (T_NAMESPACE)" '{' $@3 . top_statement_list '}' + 15 top_statement: "namespace (T_NAMESPACE)" '{' @3 . top_statement_list '}' $default reduce using rule 4 (top_statement_list) @@ -11833,20 +11833,20 @@ state 360 state 361 - 13 top_statement: "namespace (T_NAMESPACE)" namespace_name '{' . $@2 top_statement_list '}' + 13 top_statement: "namespace (T_NAMESPACE)" namespace_name '{' . @2 top_statement_list '}' - $default reduce using rule 12 ($@2) + $default reduce using rule 12 (@2) - $@2 go to state 499 + @2 go to state 499 state 362 - 348 function_call: "\\ (T_NS_SEPARATOR)" namespace_name '(' . $@57 function_call_parameter_list ')' + 348 function_call: "\\ (T_NS_SEPARATOR)" namespace_name '(' . @57 function_call_parameter_list ')' - $default reduce using rule 347 ($@57) + $default reduce using rule 347 (@57) - $@57 go to state 500 + @57 go to state 500 state 363 @@ -11874,7 +11874,7 @@ state 365 state 366 - 27 inner_statement_list: inner_statement_list $@4 . inner_statement + 27 inner_statement_list: inner_statement_list @4 . inner_statement "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -11989,10 +11989,10 @@ state 366 state 367 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -12014,8 +12014,8 @@ state 367 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr 461 compound_variable: '$' '{' expr . '}' "or (T_LOGICAL_OR)" shift, and go to state 235 @@ -12070,7 +12070,7 @@ state 370 state 371 - 344 function_call: namespace_name '(' $@55 . function_call_parameter_list ')' + 344 function_call: namespace_name '(' @55 . function_call_parameter_list ')' "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -12175,16 +12175,16 @@ state 373 state 374 - 101 unticked_class_declaration_statement: class_entry_type "identifier (T_STRING)" extends_from . $@30 implements_list '{' class_statement_list '}' + 101 unticked_class_declaration_statement: class_entry_type "identifier (T_STRING)" extends_from . @30 implements_list '{' class_statement_list '}' - $default reduce using rule 100 ($@30) + $default reduce using rule 100 (@30) - $@30 go to state 518 + @30 go to state 518 state 375 - 103 unticked_class_declaration_statement: interface_entry "identifier (T_STRING)" $@31 . interface_extends_list '{' class_statement_list '}' + 103 unticked_class_declaration_statement: interface_entry "identifier (T_STRING)" @31 . interface_extends_list '{' class_statement_list '}' "extends (T_EXTENDS)" shift, and go to state 519 @@ -12195,11 +12195,11 @@ state 375 state 376 - 99 unticked_function_declaration_statement: function is_reference "identifier (T_STRING)" . $@29 '(' parameter_list ')' '{' inner_statement_list '}' + 99 unticked_function_declaration_statement: function is_reference "identifier (T_STRING)" . @29 '(' parameter_list ')' '{' inner_statement_list '}' - $default reduce using rule 98 ($@29) + $default reduce using rule 98 (@29) - $@29 go to state 521 + @29 go to state 521 state 377 @@ -12213,7 +12213,7 @@ state 377 state 378 - 450 array_function_dereference: function_call $@69 '[' . dim_offset ']' + 450 array_function_dereference: function_call @69 '[' . dim_offset ']' "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -12387,7 +12387,7 @@ state 380 state 381 - 352 function_call: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects . '(' $@59 function_call_parameter_list ')' + 352 function_call: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects . '(' @59 function_call_parameter_list ')' 445 static_member: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects . '(' shift, and go to state 525 @@ -12409,7 +12409,7 @@ state 382 state 383 - 350 function_call: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name . '(' $@58 function_call_parameter_list ')' + 350 function_call: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name . '(' @58 function_call_parameter_list ')' '(' shift, and go to state 526 @@ -12428,7 +12428,7 @@ state 384 state 385 - 279 expr_without_variable: expr "or (T_LOGICAL_OR)" $@46 . expr + 279 expr_without_variable: expr "or (T_LOGICAL_OR)" @46 . expr "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -12509,10 +12509,10 @@ state 385 state 386 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 282 | expr "xor (T_LOGICAL_XOR)" expr . 283 | expr . '|' expr @@ -12535,8 +12535,8 @@ state 386 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr "and (T_LOGICAL_AND)" shift, and go to state 237 '?' shift, and go to state 238 @@ -12568,7 +12568,7 @@ state 386 state 387 - 281 expr_without_variable: expr "and (T_LOGICAL_AND)" $@47 . expr + 281 expr_without_variable: expr "and (T_LOGICAL_AND)" @47 . expr "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -12649,16 +12649,16 @@ state 387 state 388 - 315 expr_without_variable: expr '?' ':' . $@51 expr + 315 expr_without_variable: expr '?' ':' . @51 expr - $default reduce using rule 314 ($@51) + $default reduce using rule 314 (@51) - $@51 go to state 530 + @51 go to state 530 state 389 - 313 expr_without_variable: expr '?' $@49 . expr ':' $@50 expr + 313 expr_without_variable: expr '?' @49 . expr ':' @50 expr "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -12739,7 +12739,7 @@ state 389 state 390 - 275 expr_without_variable: expr "|| (T_BOOLEAN_OR)" $@44 . expr + 275 expr_without_variable: expr "|| (T_BOOLEAN_OR)" @44 . expr "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -12820,7 +12820,7 @@ state 390 state 391 - 277 expr_without_variable: expr "&& (T_BOOLEAN_AND)" $@45 . expr + 277 expr_without_variable: expr "&& (T_BOOLEAN_AND)" @45 . expr "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -12901,10 +12901,10 @@ state 391 state 392 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 283 | expr '|' expr . @@ -12927,8 +12927,8 @@ state 392 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr '^' shift, and go to state 242 '&' shift, and go to state 243 @@ -12955,10 +12955,10 @@ state 392 state 393 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -12981,8 +12981,8 @@ state 393 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr '&' shift, and go to state 243 "!== (T_IS_NOT_IDENTICAL)" shift, and go to state 244 @@ -13008,10 +13008,10 @@ state 393 state 394 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -13034,8 +13034,8 @@ state 394 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr "!== (T_IS_NOT_IDENTICAL)" shift, and go to state 244 "=== (T_IS_IDENTICAL)" shift, and go to state 245 @@ -13060,10 +13060,10 @@ state 394 state 395 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -13086,8 +13086,8 @@ state 395 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr '<' shift, and go to state 248 '>' shift, and go to state 249 @@ -13113,10 +13113,10 @@ state 395 state 396 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -13139,8 +13139,8 @@ state 396 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr '<' shift, and go to state 248 '>' shift, and go to state 249 @@ -13166,10 +13166,10 @@ state 396 state 397 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -13192,8 +13192,8 @@ state 397 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr '<' shift, and go to state 248 '>' shift, and go to state 249 @@ -13219,10 +13219,10 @@ state 397 state 398 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -13245,8 +13245,8 @@ state 398 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr '<' shift, and go to state 248 '>' shift, and go to state 249 @@ -13272,10 +13272,10 @@ state 398 state 399 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -13298,8 +13298,8 @@ state 399 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr ">> (T_SR)" shift, and go to state 252 "<< (T_SL)" shift, and go to state 253 @@ -13321,10 +13321,10 @@ state 399 state 400 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -13347,8 +13347,8 @@ state 400 304 | expr '>' expr . 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr ">> (T_SR)" shift, and go to state 252 "<< (T_SL)" shift, and go to state 253 @@ -13370,10 +13370,10 @@ state 400 state 401 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -13396,8 +13396,8 @@ state 401 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 305 | expr ">= (T_IS_GREATER_OR_EQUAL)" expr . 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr ">> (T_SR)" shift, and go to state 252 "<< (T_SL)" shift, and go to state 253 @@ -13419,10 +13419,10 @@ state 401 state 402 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -13445,8 +13445,8 @@ state 402 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr ">> (T_SR)" shift, and go to state 252 "<< (T_SL)" shift, and go to state 253 @@ -13468,10 +13468,10 @@ state 402 state 403 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -13494,8 +13494,8 @@ state 403 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr '+' shift, and go to state 254 '-' shift, and go to state 255 @@ -13510,10 +13510,10 @@ state 403 state 404 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -13536,8 +13536,8 @@ state 404 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr '+' shift, and go to state 254 '-' shift, and go to state 255 @@ -13552,10 +13552,10 @@ state 404 state 405 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -13578,8 +13578,8 @@ state 405 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr '*' shift, and go to state 257 '/' shift, and go to state 258 @@ -13591,10 +13591,10 @@ state 405 state 406 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -13617,8 +13617,8 @@ state 406 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr '*' shift, and go to state 257 '/' shift, and go to state 258 @@ -13630,10 +13630,10 @@ state 406 state 407 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -13656,8 +13656,8 @@ state 407 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr '*' shift, and go to state 257 '/' shift, and go to state 258 @@ -13669,10 +13669,10 @@ state 407 state 408 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -13695,8 +13695,8 @@ state 408 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr "instanceof (T_INSTANCEOF)" shift, and go to state 260 @@ -13705,10 +13705,10 @@ state 408 state 409 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -13731,8 +13731,8 @@ state 409 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr "instanceof (T_INSTANCEOF)" shift, and go to state 260 @@ -13741,10 +13741,10 @@ state 409 state 410 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -13767,8 +13767,8 @@ state 410 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr "instanceof (T_INSTANCEOF)" shift, and go to state 260 @@ -13785,7 +13785,7 @@ state 411 state 412 255 expr_without_variable: variable '=' '&' . variable - 257 | variable '=' '&' . "new (T_NEW)" class_name_reference $@43 ctor_arguments + 257 | variable '=' '&' . "new (T_NEW)" class_name_reference @43 ctor_arguments "new (T_NEW)" shift, and go to state 534 "identifier (T_STRING)" shift, and go to state 116 @@ -13813,10 +13813,10 @@ state 412 state 413 254 expr_without_variable: variable '=' expr . - 275 | expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 | expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -13838,8 +13838,8 @@ state 413 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr '?' shift, and go to state 238 "|| (T_BOOLEAN_OR)" shift, and go to state 239 @@ -13871,10 +13871,10 @@ state 413 state 414 269 expr_without_variable: variable ">>= (T_SR_EQUAL)" expr . - 275 | expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 | expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -13896,8 +13896,8 @@ state 414 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr '?' shift, and go to state 238 "|| (T_BOOLEAN_OR)" shift, and go to state 239 @@ -13929,10 +13929,10 @@ state 414 state 415 268 expr_without_variable: variable "<<= (T_SL_EQUAL)" expr . - 275 | expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 | expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -13954,8 +13954,8 @@ state 415 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr '?' shift, and go to state 238 "|| (T_BOOLEAN_OR)" shift, and go to state 239 @@ -13987,10 +13987,10 @@ state 415 state 416 267 expr_without_variable: variable "^= (T_XOR_EQUAL)" expr . - 275 | expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 | expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -14012,8 +14012,8 @@ state 416 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr '?' shift, and go to state 238 "|| (T_BOOLEAN_OR)" shift, and go to state 239 @@ -14045,10 +14045,10 @@ state 416 state 417 266 expr_without_variable: variable "|= (T_OR_EQUAL)" expr . - 275 | expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 | expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -14070,8 +14070,8 @@ state 417 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr '?' shift, and go to state 238 "|| (T_BOOLEAN_OR)" shift, and go to state 239 @@ -14103,10 +14103,10 @@ state 417 state 418 265 expr_without_variable: variable "&= (T_AND_EQUAL)" expr . - 275 | expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 | expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -14128,8 +14128,8 @@ state 418 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr '?' shift, and go to state 238 "|| (T_BOOLEAN_OR)" shift, and go to state 239 @@ -14161,10 +14161,10 @@ state 418 state 419 264 expr_without_variable: variable "%= (T_MOD_EQUAL)" expr . - 275 | expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 | expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -14186,8 +14186,8 @@ state 419 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr '?' shift, and go to state 238 "|| (T_BOOLEAN_OR)" shift, and go to state 239 @@ -14219,10 +14219,10 @@ state 419 state 420 263 expr_without_variable: variable ".= (T_CONCAT_EQUAL)" expr . - 275 | expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 | expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -14244,8 +14244,8 @@ state 420 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr '?' shift, and go to state 238 "|| (T_BOOLEAN_OR)" shift, and go to state 239 @@ -14277,10 +14277,10 @@ state 420 state 421 262 expr_without_variable: variable "/= (T_DIV_EQUAL)" expr . - 275 | expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 | expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -14302,8 +14302,8 @@ state 421 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr '?' shift, and go to state 238 "|| (T_BOOLEAN_OR)" shift, and go to state 239 @@ -14335,10 +14335,10 @@ state 421 state 422 261 expr_without_variable: variable "*= (T_MUL_EQUAL)" expr . - 275 | expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 | expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -14360,8 +14360,8 @@ state 422 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr '?' shift, and go to state 238 "|| (T_BOOLEAN_OR)" shift, and go to state 239 @@ -14393,10 +14393,10 @@ state 422 state 423 260 expr_without_variable: variable "-= (T_MINUS_EQUAL)" expr . - 275 | expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 | expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -14418,8 +14418,8 @@ state 423 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr '?' shift, and go to state 238 "|| (T_BOOLEAN_OR)" shift, and go to state 239 @@ -14451,10 +14451,10 @@ state 423 state 424 259 expr_without_variable: variable "+= (T_PLUS_EQUAL)" expr . - 275 | expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 | expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -14476,8 +14476,8 @@ state 424 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr '?' shift, and go to state 238 "|| (T_BOOLEAN_OR)" shift, and go to state 239 @@ -14508,7 +14508,7 @@ state 424 state 425 - 358 function_call: variable_without_objects '(' $@62 . function_call_parameter_list ')' + 358 function_call: variable_without_objects '(' @62 . function_call_parameter_list ')' "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -14603,7 +14603,7 @@ state 426 state 427 - 356 function_call: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects . '(' $@61 function_call_parameter_list ')' + 356 function_call: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects . '(' @61 function_call_parameter_list ')' 446 static_member: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects . '(' shift, and go to state 537 @@ -14613,17 +14613,17 @@ state 427 state 428 - 354 function_call: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name . '(' $@60 function_call_parameter_list ')' + 354 function_call: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name . '(' @60 function_call_parameter_list ')' '(' shift, and go to state 538 state 429 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -14645,8 +14645,8 @@ state 429 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr 463 dim_offset: expr . "or (T_LOGICAL_OR)" shift, and go to state 235 @@ -14688,7 +14688,7 @@ state 430 state 431 - 430 variable: base_variable_with_function_calls "-> (T_OBJECT_OPERATOR)" $@65 . object_property $@66 method_or_not variable_properties + 430 variable: base_variable_with_function_calls "-> (T_OBJECT_OPERATOR)" @65 . object_property @66 method_or_not variable_properties "identifier (T_STRING)" shift, and go to state 436 "variable (T_VARIABLE)" shift, and go to state 34 @@ -14713,10 +14713,10 @@ state 432 state 433 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -14738,8 +14738,8 @@ state 433 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr 458 reference_variable: reference_variable '{' expr . '}' "or (T_LOGICAL_OR)" shift, and go to state 235 @@ -14781,7 +14781,7 @@ state 434 state 435 6 namespace_name: namespace_name . "\\ (T_NS_SEPARATOR)" "identifier (T_STRING)" - 346 function_call: "namespace (T_NAMESPACE)" "\\ (T_NS_SEPARATOR)" namespace_name . '(' $@56 function_call_parameter_list ')' + 346 function_call: "namespace (T_NAMESPACE)" "\\ (T_NS_SEPARATOR)" namespace_name . '(' @56 function_call_parameter_list ')' 361 class_name: "namespace (T_NAMESPACE)" "\\ (T_NS_SEPARATOR)" namespace_name . "\\ (T_NS_SEPARATOR)" shift, and go to state 225 @@ -14826,10 +14826,10 @@ state 437 state 438 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -14851,8 +14851,8 @@ state 438 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr 484 non_empty_array_pair_list: expr "=> (T_DOUBLE_ARROW)" expr . "or (T_LOGICAL_OR)" shift, and go to state 235 @@ -14914,10 +14914,10 @@ state 439 state 440 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -14939,8 +14939,8 @@ state 440 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr 482 non_empty_array_pair_list: non_empty_array_pair_list ',' expr . "=> (T_DOUBLE_ARROW)" expr 483 | non_empty_array_pair_list ',' expr . 486 | non_empty_array_pair_list ',' expr . "=> (T_DOUBLE_ARROW)" '&' w_variable @@ -15081,7 +15081,7 @@ state 443 state 444 - 251 new_expr: "new (T_NEW)" class_name_reference $@41 ctor_arguments . + 251 new_expr: "new (T_NEW)" class_name_reference @41 ctor_arguments . $default reduce using rule 251 (new_expr) @@ -15095,7 +15095,7 @@ state 445 state 446 - 370 dynamic_class_name_reference: base_variable "-> (T_OBJECT_OPERATOR)" $@63 . object_property $@64 dynamic_class_name_variable_properties + 370 dynamic_class_name_reference: base_variable "-> (T_OBJECT_OPERATOR)" @63 . object_property @64 dynamic_class_name_variable_properties "identifier (T_STRING)" shift, and go to state 436 "variable (T_VARIABLE)" shift, and go to state 34 @@ -15120,23 +15120,23 @@ state 447 state 448 - 38 unticked_statement: "if (T_IF)" '(' expr ')' . $@5 statement $@6 elseif_list else_single - 41 | "if (T_IF)" '(' expr ')' . ':' $@7 inner_statement_list $@8 new_elseif_list new_else_single "endif (T_ENDIF)" ';' + 38 unticked_statement: "if (T_IF)" '(' expr ')' . @5 statement @6 elseif_list else_single + 41 | "if (T_IF)" '(' expr ')' . ':' @7 inner_statement_list @8 new_elseif_list new_else_single "endif (T_ENDIF)" ';' ':' shift, and go to state 551 - $default reduce using rule 36 ($@5) + $default reduce using rule 36 (@5) - $@5 go to state 552 + @5 go to state 552 state 449 232 echo_expr_list: echo_expr_list ',' expr . - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -15158,8 +15158,8 @@ state 449 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr "or (T_LOGICAL_OR)" shift, and go to state 235 "xor (T_LOGICAL_XOR)" shift, and go to state 236 @@ -15193,18 +15193,18 @@ state 449 state 450 - 47 unticked_statement: "do (T_DO)" $@11 statement "while (T_WHILE)" . '(' $@12 expr ')' ';' + 47 unticked_statement: "do (T_DO)" @11 statement "while (T_WHILE)" . '(' @12 expr ')' ';' '(' shift, and go to state 553 state 451 - 44 unticked_statement: "while (T_WHILE)" '(' $@9 expr . ')' $@10 while_statement - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 44 unticked_statement: "while (T_WHILE)" '(' @9 expr . ')' @10 while_statement + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -15226,8 +15226,8 @@ state 451 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr "or (T_LOGICAL_OR)" shift, and go to state 235 "xor (T_LOGICAL_XOR)" shift, and go to state 236 @@ -15260,38 +15260,38 @@ state 451 state 452 - 51 unticked_statement: "for (T_FOR)" '(' for_expr ';' . $@13 for_expr ';' $@14 for_expr ')' $@15 for_statement + 51 unticked_statement: "for (T_FOR)" '(' for_expr ';' . @13 for_expr ';' @14 for_expr ')' @15 for_statement - $default reduce using rule 48 ($@13) + $default reduce using rule 48 (@13) - $@13 go to state 555 + @13 go to state 555 state 453 - 237 non_empty_for_expr: non_empty_for_expr ',' . $@38 expr + 237 non_empty_for_expr: non_empty_for_expr ',' . @38 expr - $default reduce using rule 236 ($@38) + $default reduce using rule 236 (@38) - $@38 go to state 556 + @38 go to state 556 state 454 - 72 unticked_statement: "foreach (T_FOREACH)" '(' expr_without_variable "as (T_AS)" . $@19 variable foreach_optional_arg ')' $@20 foreach_statement + 72 unticked_statement: "foreach (T_FOREACH)" '(' expr_without_variable "as (T_AS)" . @19 variable foreach_optional_arg ')' @20 foreach_statement - $default reduce using rule 70 ($@19) + $default reduce using rule 70 (@19) - $@19 go to state 557 + @19 go to state 557 state 455 - 69 unticked_statement: "foreach (T_FOREACH)" '(' variable "as (T_AS)" . $@17 foreach_variable foreach_optional_arg ')' $@18 foreach_statement + 69 unticked_statement: "foreach (T_FOREACH)" '(' variable "as (T_AS)" . @17 foreach_variable foreach_optional_arg ')' @18 foreach_statement - $default reduce using rule 67 ($@17) + $default reduce using rule 67 (@17) - $@17 go to state 558 + @17 go to state 558 state 456 @@ -15303,7 +15303,7 @@ state 456 state 457 - 74 unticked_statement: "declare (T_DECLARE)" $@21 '(' declare_list . ')' declare_statement + 74 unticked_statement: "declare (T_DECLARE)" @21 '(' declare_list . ')' declare_statement 128 declare_list: declare_list . ',' "identifier (T_STRING)" '=' static_scalar ',' shift, and go to state 560 @@ -15312,11 +15312,11 @@ state 457 state 458 - 53 unticked_statement: "switch (T_SWITCH)" '(' expr ')' . $@16 switch_case_list + 53 unticked_statement: "switch (T_SWITCH)" '(' expr ')' . @16 switch_case_list - $default reduce using rule 52 ($@16) + $default reduce using rule 52 (@16) - $@16 go to state 562 + @16 go to state 562 state 459 @@ -15502,14 +15502,14 @@ state 471 state 472 - 27 inner_statement_list: inner_statement_list . $@4 inner_statement - 81 unticked_statement: "try (T_TRY)" $@22 '{' inner_statement_list . '}' "catch (T_CATCH)" '(' $@23 fully_qualified_class_name $@24 "variable (T_VARIABLE)" ')' $@25 '{' inner_statement_list '}' $@26 additional_catches + 27 inner_statement_list: inner_statement_list . @4 inner_statement + 81 unticked_statement: "try (T_TRY)" @22 '{' inner_statement_list . '}' "catch (T_CATCH)" '(' @23 fully_qualified_class_name @24 "variable (T_VARIABLE)" ')' @25 '{' inner_statement_list '}' @26 additional_catches '}' shift, and go to state 573 - $default reduce using rule 26 ($@4) + $default reduce using rule 26 (@4) - $@4 go to state 366 + @4 go to state 366 state 473 @@ -15536,10 +15536,10 @@ state 475 state 476 178 global_var: '$' '{' expr . '}' - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -15561,8 +15561,8 @@ state 476 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr "or (T_LOGICAL_OR)" shift, and go to state 235 "xor (T_LOGICAL_XOR)" shift, and go to state 236 @@ -15662,11 +15662,11 @@ state 482 state 483 - 513 isset_variables: isset_variables ',' . $@73 variable + 513 isset_variables: isset_variables ',' . @73 variable - $default reduce using rule 512 ($@73) + $default reduce using rule 512 (@73) - $@73 go to state 580 + @73 go to state 580 state 484 @@ -15692,7 +15692,7 @@ state 486 state 487 - 478 assignment_list_element: "list (T_LIST)" . '(' $@71 assignment_list ')' + 478 assignment_list_element: "list (T_LIST)" . '(' @71 assignment_list ')' '(' shift, and go to state 581 @@ -15706,7 +15706,7 @@ state 488 state 489 - 253 expr_without_variable: "list (T_LIST)" '(' $@42 assignment_list . ')' '=' expr + 253 expr_without_variable: "list (T_LIST)" '(' @42 assignment_list . ')' '=' expr 474 assignment_list: assignment_list . ',' assignment_list_element ',' shift, and go to state 582 @@ -15729,7 +15729,7 @@ state 491 state 492 - 496 encaps_var: "variable (T_VARIABLE)" '[' $@72 . encaps_var_offset ']' + 496 encaps_var: "variable (T_VARIABLE)" '[' @72 . encaps_var_offset ']' "identifier (T_STRING)" shift, and go to state 584 "variable (T_VARIABLE)" shift, and go to state 585 @@ -15842,28 +15842,28 @@ state 496 state 497 - 346 function_call: "namespace (T_NAMESPACE)" "\\ (T_NS_SEPARATOR)" namespace_name '(' . $@56 function_call_parameter_list ')' + 346 function_call: "namespace (T_NAMESPACE)" "\\ (T_NS_SEPARATOR)" namespace_name '(' . @56 function_call_parameter_list ')' - $default reduce using rule 345 ($@56) + $default reduce using rule 345 (@56) - $@56 go to state 589 + @56 go to state 589 state 498 - 3 top_statement_list: top_statement_list . $@1 top_statement - 15 top_statement: "namespace (T_NAMESPACE)" '{' $@3 top_statement_list . '}' + 3 top_statement_list: top_statement_list . @1 top_statement + 15 top_statement: "namespace (T_NAMESPACE)" '{' @3 top_statement_list . '}' '}' shift, and go to state 590 - $default reduce using rule 2 ($@1) + $default reduce using rule 2 (@1) - $@1 go to state 4 + @1 go to state 4 state 499 - 13 top_statement: "namespace (T_NAMESPACE)" namespace_name '{' $@2 . top_statement_list '}' + 13 top_statement: "namespace (T_NAMESPACE)" namespace_name '{' @2 . top_statement_list '}' $default reduce using rule 4 (top_statement_list) @@ -15872,7 +15872,7 @@ state 499 state 500 - 348 function_call: "\\ (T_NS_SEPARATOR)" namespace_name '(' $@57 . function_call_parameter_list ')' + 348 function_call: "\\ (T_NS_SEPARATOR)" namespace_name '(' @57 . function_call_parameter_list ')' "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -15960,12 +15960,12 @@ state 501 310 expr_without_variable: '(' new_expr ')' @48 . instance_call - '[' reduce using rule 248 ($@40) - "-> (T_OBJECT_OPERATOR)" reduce using rule 248 ($@40) + '[' reduce using rule 248 (@40) + "-> (T_OBJECT_OPERATOR)" reduce using rule 248 (@40) $default reduce using rule 247 (instance_call) instance_call go to state 593 - $@40 go to state 594 + @40 go to state 594 state 502 @@ -15977,7 +15977,7 @@ state 502 state 503 - 27 inner_statement_list: inner_statement_list $@4 inner_statement . + 27 inner_statement_list: inner_statement_list @4 inner_statement . $default reduce using rule 27 (inner_statement_list) @@ -16039,7 +16039,7 @@ state 508 state 509 - 344 function_call: namespace_name '(' $@55 function_call_parameter_list . ')' + 344 function_call: namespace_name '(' @55 function_call_parameter_list . ')' ')' shift, and go to state 597 @@ -16071,7 +16071,7 @@ state 512 169 non_empty_function_call_parameter_list: variable . 254 expr_without_variable: variable . '=' expr 255 | variable . '=' '&' variable - 257 | variable . '=' '&' "new (T_NEW)" class_name_reference $@43 ctor_arguments + 257 | variable . '=' '&' "new (T_NEW)" class_name_reference @43 ctor_arguments 259 | variable . "+= (T_PLUS_EQUAL)" expr 260 | variable . "-= (T_MINUS_EQUAL)" expr 261 | variable . "*= (T_MUL_EQUAL)" expr @@ -16173,7 +16173,7 @@ state 517 state 518 - 101 unticked_class_declaration_statement: class_entry_type "identifier (T_STRING)" extends_from $@30 . implements_list '{' class_statement_list '}' + 101 unticked_class_declaration_statement: class_entry_type "identifier (T_STRING)" extends_from @30 . implements_list '{' class_statement_list '}' "implements (T_IMPLEMENTS)" shift, and go to state 602 @@ -16197,14 +16197,14 @@ state 519 state 520 - 103 unticked_class_declaration_statement: interface_entry "identifier (T_STRING)" $@31 interface_extends_list . '{' class_statement_list '}' + 103 unticked_class_declaration_statement: interface_entry "identifier (T_STRING)" @31 interface_extends_list . '{' class_statement_list '}' '{' shift, and go to state 606 state 521 - 99 unticked_function_declaration_statement: function is_reference "identifier (T_STRING)" $@29 . '(' parameter_list ')' '{' inner_statement_list '}' + 99 unticked_function_declaration_statement: function is_reference "identifier (T_STRING)" @29 . '(' parameter_list ')' '{' inner_statement_list '}' '(' shift, and go to state 607 @@ -16231,17 +16231,17 @@ state 522 state 523 - 450 array_function_dereference: function_call $@69 '[' dim_offset . ']' + 450 array_function_dereference: function_call @69 '[' dim_offset . ']' ']' shift, and go to state 614 state 524 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -16263,8 +16263,8 @@ state 524 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr 471 variable_name: '{' expr . '}' "or (T_LOGICAL_OR)" shift, and go to state 235 @@ -16298,20 +16298,20 @@ state 524 state 525 - 352 function_call: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects '(' . $@59 function_call_parameter_list ')' + 352 function_call: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects '(' . @59 function_call_parameter_list ')' - $default reduce using rule 351 ($@59) + $default reduce using rule 351 (@59) - $@59 go to state 616 + @59 go to state 616 state 526 - 350 function_call: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name '(' . $@58 function_call_parameter_list ')' + 350 function_call: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name '(' . @58 function_call_parameter_list ')' - $default reduce using rule 349 ($@58) + $default reduce using rule 349 (@58) - $@58 go to state 617 + @58 go to state 617 state 527 @@ -16328,11 +16328,11 @@ state 527 state 528 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 279 | expr "or (T_LOGICAL_OR)" $@46 expr . - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 279 | expr "or (T_LOGICAL_OR)" @46 expr . + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -16354,8 +16354,8 @@ state 528 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr "xor (T_LOGICAL_XOR)" shift, and go to state 236 "and (T_LOGICAL_AND)" shift, and go to state 237 @@ -16388,11 +16388,11 @@ state 528 state 529 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr - 281 | expr "and (T_LOGICAL_AND)" $@47 expr . + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr + 281 | expr "and (T_LOGICAL_AND)" @47 expr . 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -16414,8 +16414,8 @@ state 529 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr '?' shift, and go to state 238 "|| (T_BOOLEAN_OR)" shift, and go to state 239 @@ -16446,7 +16446,7 @@ state 529 state 530 - 315 expr_without_variable: expr '?' ':' $@51 . expr + 315 expr_without_variable: expr '?' ':' @51 . expr "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -16527,10 +16527,10 @@ state 530 state 531 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -16552,9 +16552,9 @@ state 531 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 313 | expr '?' $@49 expr . ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 313 | expr '?' @49 expr . ':' @50 expr + 315 | expr . '?' ':' @51 expr "or (T_LOGICAL_OR)" shift, and go to state 235 "xor (T_LOGICAL_XOR)" shift, and go to state 236 @@ -16587,11 +16587,11 @@ state 531 state 532 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 275 | expr "|| (T_BOOLEAN_OR)" $@44 expr . - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 275 | expr "|| (T_BOOLEAN_OR)" @44 expr . + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -16613,8 +16613,8 @@ state 532 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr "&& (T_BOOLEAN_AND)" shift, and go to state 240 '|' shift, and go to state 241 @@ -16643,11 +16643,11 @@ state 532 state 533 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 277 | expr "&& (T_BOOLEAN_AND)" $@45 expr . - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 277 | expr "&& (T_BOOLEAN_AND)" @45 expr . + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -16669,8 +16669,8 @@ state 533 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr '|' shift, and go to state 241 '^' shift, and go to state 242 @@ -16698,7 +16698,7 @@ state 533 state 534 - 257 expr_without_variable: variable '=' '&' "new (T_NEW)" . class_name_reference $@43 ctor_arguments + 257 expr_without_variable: variable '=' '&' "new (T_NEW)" . class_name_reference @43 ctor_arguments "identifier (T_STRING)" shift, and go to state 116 "variable (T_VARIABLE)" shift, and go to state 34 @@ -16728,27 +16728,27 @@ state 535 state 536 - 358 function_call: variable_without_objects '(' $@62 function_call_parameter_list . ')' + 358 function_call: variable_without_objects '(' @62 function_call_parameter_list . ')' ')' shift, and go to state 621 state 537 - 356 function_call: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects '(' . $@61 function_call_parameter_list ')' + 356 function_call: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects '(' . @61 function_call_parameter_list ')' - $default reduce using rule 355 ($@61) + $default reduce using rule 355 (@61) - $@61 go to state 622 + @61 go to state 622 state 538 - 354 function_call: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name '(' . $@60 function_call_parameter_list ')' + 354 function_call: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name '(' . @60 function_call_parameter_list ')' - $default reduce using rule 353 ($@60) + $default reduce using rule 353 (@60) - $@60 go to state 623 + @60 go to state 623 state 539 @@ -16760,20 +16760,20 @@ state 539 state 540 - 466 object_property: variable_without_objects . $@70 + 466 object_property: variable_without_objects . @70 - $default reduce using rule 465 ($@70) + $default reduce using rule 465 (@70) - $@70 go to state 624 + @70 go to state 624 state 541 - 430 variable: base_variable_with_function_calls "-> (T_OBJECT_OPERATOR)" $@65 object_property . $@66 method_or_not variable_properties + 430 variable: base_variable_with_function_calls "-> (T_OBJECT_OPERATOR)" @65 object_property . @66 method_or_not variable_properties - $default reduce using rule 429 ($@66) + $default reduce using rule 429 (@66) - $@66 go to state 625 + @66 go to state 625 state 542 @@ -16915,25 +16915,25 @@ state 549 state 550 - 370 dynamic_class_name_reference: base_variable "-> (T_OBJECT_OPERATOR)" $@63 object_property . $@64 dynamic_class_name_variable_properties + 370 dynamic_class_name_reference: base_variable "-> (T_OBJECT_OPERATOR)" @63 object_property . @64 dynamic_class_name_variable_properties - $default reduce using rule 369 ($@64) + $default reduce using rule 369 (@64) - $@64 go to state 631 + @64 go to state 631 state 551 - 41 unticked_statement: "if (T_IF)" '(' expr ')' ':' . $@7 inner_statement_list $@8 new_elseif_list new_else_single "endif (T_ENDIF)" ';' + 41 unticked_statement: "if (T_IF)" '(' expr ')' ':' . @7 inner_statement_list @8 new_elseif_list new_else_single "endif (T_ENDIF)" ';' - $default reduce using rule 39 ($@7) + $default reduce using rule 39 (@7) - $@7 go to state 632 + @7 go to state 632 state 552 - 38 unticked_statement: "if (T_IF)" '(' expr ')' $@5 . statement $@6 elseif_list else_single + 38 unticked_statement: "if (T_IF)" '(' expr ')' @5 . statement @6 elseif_list else_single "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -17035,25 +17035,25 @@ state 552 state 553 - 47 unticked_statement: "do (T_DO)" $@11 statement "while (T_WHILE)" '(' . $@12 expr ')' ';' + 47 unticked_statement: "do (T_DO)" @11 statement "while (T_WHILE)" '(' . @12 expr ')' ';' - $default reduce using rule 46 ($@12) + $default reduce using rule 46 (@12) - $@12 go to state 634 + @12 go to state 634 state 554 - 44 unticked_statement: "while (T_WHILE)" '(' $@9 expr ')' . $@10 while_statement + 44 unticked_statement: "while (T_WHILE)" '(' @9 expr ')' . @10 while_statement - $default reduce using rule 43 ($@10) + $default reduce using rule 43 (@10) - $@10 go to state 635 + @10 go to state 635 state 555 - 51 unticked_statement: "for (T_FOR)" '(' for_expr ';' $@13 . for_expr ';' $@14 for_expr ')' $@15 for_statement + 51 unticked_statement: "for (T_FOR)" '(' for_expr ';' @13 . for_expr ';' @14 for_expr ')' @15 for_statement "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -17138,7 +17138,7 @@ state 555 state 556 - 237 non_empty_for_expr: non_empty_for_expr ',' $@38 . expr + 237 non_empty_for_expr: non_empty_for_expr ',' @38 . expr "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -17219,7 +17219,7 @@ state 556 state 557 - 72 unticked_statement: "foreach (T_FOREACH)" '(' expr_without_variable "as (T_AS)" $@19 . variable foreach_optional_arg ')' $@20 foreach_statement + 72 unticked_statement: "foreach (T_FOREACH)" '(' expr_without_variable "as (T_AS)" @19 . variable foreach_optional_arg ')' @20 foreach_statement "identifier (T_STRING)" shift, and go to state 116 "variable (T_VARIABLE)" shift, and go to state 34 @@ -17245,7 +17245,7 @@ state 557 state 558 - 69 unticked_statement: "foreach (T_FOREACH)" '(' variable "as (T_AS)" $@17 . foreach_variable foreach_optional_arg ')' $@18 foreach_statement + 69 unticked_statement: "foreach (T_FOREACH)" '(' variable "as (T_AS)" @17 . foreach_variable foreach_optional_arg ')' @18 foreach_statement '&' shift, and go to state 639 "identifier (T_STRING)" shift, and go to state 116 @@ -17312,7 +17312,7 @@ state 560 state 561 - 74 unticked_statement: "declare (T_DECLARE)" $@21 '(' declare_list ')' . declare_statement + 74 unticked_statement: "declare (T_DECLARE)" @21 '(' declare_list ')' . declare_statement "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -17416,7 +17416,7 @@ state 561 state 562 - 53 unticked_statement: "switch (T_SWITCH)" '(' expr ')' $@16 . switch_case_list + 53 unticked_statement: "switch (T_SWITCH)" '(' expr ')' @16 . switch_case_list ':' shift, and go to state 647 '{' shift, and go to state 648 @@ -17542,7 +17542,7 @@ state 572 state 573 - 81 unticked_statement: "try (T_TRY)" $@22 '{' inner_statement_list '}' . "catch (T_CATCH)" '(' $@23 fully_qualified_class_name $@24 "variable (T_VARIABLE)" ')' $@25 '{' inner_statement_list '}' $@26 additional_catches + 81 unticked_statement: "try (T_TRY)" @22 '{' inner_statement_list '}' . "catch (T_CATCH)" '(' @23 fully_qualified_class_name @24 "variable (T_VARIABLE)" ')' @25 '{' inner_statement_list '}' @26 additional_catches "catch (T_CATCH)" shift, and go to state 657 @@ -17629,7 +17629,7 @@ state 579 state 580 - 513 isset_variables: isset_variables ',' $@73 . variable + 513 isset_variables: isset_variables ',' @73 . variable "identifier (T_STRING)" shift, and go to state 116 "variable (T_VARIABLE)" shift, and go to state 34 @@ -17655,11 +17655,11 @@ state 580 state 581 - 478 assignment_list_element: "list (T_LIST)" '(' . $@71 assignment_list ')' + 478 assignment_list_element: "list (T_LIST)" '(' . @71 assignment_list ')' - $default reduce using rule 477 ($@71) + $default reduce using rule 477 (@71) - $@71 go to state 661 + @71 go to state 661 state 582 @@ -17694,7 +17694,7 @@ state 582 state 583 - 253 expr_without_variable: "list (T_LIST)" '(' $@42 assignment_list ')' . '=' expr + 253 expr_without_variable: "list (T_LIST)" '(' @42 assignment_list ')' . '=' expr '=' shift, and go to state 663 @@ -17722,17 +17722,17 @@ state 586 state 587 - 496 encaps_var: "variable (T_VARIABLE)" '[' $@72 encaps_var_offset . ']' + 496 encaps_var: "variable (T_VARIABLE)" '[' @72 encaps_var_offset . ']' ']' shift, and go to state 664 state 588 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -17754,8 +17754,8 @@ state 588 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr 499 encaps_var: "${ (T_DOLLAR_OPEN_CURLY_BRACES)" "variable name (T_STRING_VARNAME)" '[' expr . ']' '}' "or (T_LOGICAL_OR)" shift, and go to state 235 @@ -17789,7 +17789,7 @@ state 588 state 589 - 346 function_call: "namespace (T_NAMESPACE)" "\\ (T_NS_SEPARATOR)" namespace_name '(' $@56 . function_call_parameter_list ')' + 346 function_call: "namespace (T_NAMESPACE)" "\\ (T_NS_SEPARATOR)" namespace_name '(' @56 . function_call_parameter_list ')' "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -17875,26 +17875,26 @@ state 589 state 590 - 15 top_statement: "namespace (T_NAMESPACE)" '{' $@3 top_statement_list '}' . + 15 top_statement: "namespace (T_NAMESPACE)" '{' @3 top_statement_list '}' . $default reduce using rule 15 (top_statement) state 591 - 3 top_statement_list: top_statement_list . $@1 top_statement - 13 top_statement: "namespace (T_NAMESPACE)" namespace_name '{' $@2 top_statement_list . '}' + 3 top_statement_list: top_statement_list . @1 top_statement + 13 top_statement: "namespace (T_NAMESPACE)" namespace_name '{' @2 top_statement_list . '}' '}' shift, and go to state 667 - $default reduce using rule 2 ($@1) + $default reduce using rule 2 (@1) - $@1 go to state 4 + @1 go to state 4 state 592 - 348 function_call: "\\ (T_NS_SEPARATOR)" namespace_name '(' $@57 function_call_parameter_list . ')' + 348 function_call: "\\ (T_NS_SEPARATOR)" namespace_name '(' @57 function_call_parameter_list . ')' ')' shift, and go to state 668 @@ -17908,7 +17908,7 @@ state 593 state 594 - 249 instance_call: $@40 . chaining_instance_call + 249 instance_call: @40 . chaining_instance_call '[' shift, and go to state 669 "-> (T_OBJECT_OPERATOR)" shift, and go to state 670 @@ -17935,7 +17935,7 @@ state 596 state 597 - 344 function_call: namespace_name '(' $@55 function_call_parameter_list ')' . + 344 function_call: namespace_name '(' @55 function_call_parameter_list ')' . $default reduce using rule 344 (function_call) @@ -18065,7 +18065,7 @@ state 602 state 603 - 101 unticked_class_declaration_statement: class_entry_type "identifier (T_STRING)" extends_from $@30 implements_list . '{' class_statement_list '}' + 101 unticked_class_declaration_statement: class_entry_type "identifier (T_STRING)" extends_from @30 implements_list . '{' class_statement_list '}' '{' shift, and go to state 681 @@ -18089,7 +18089,7 @@ state 605 state 606 - 103 unticked_class_declaration_statement: interface_entry "identifier (T_STRING)" $@31 interface_extends_list '{' . class_statement_list '}' + 103 unticked_class_declaration_statement: interface_entry "identifier (T_STRING)" @31 interface_extends_list '{' . class_statement_list '}' $default reduce using rule 184 (class_statement_list) @@ -18098,7 +18098,7 @@ state 606 state 607 - 99 unticked_function_declaration_statement: function is_reference "identifier (T_STRING)" $@29 '(' . parameter_list ')' '{' inner_statement_list '}' + 99 unticked_function_declaration_statement: function is_reference "identifier (T_STRING)" @29 '(' . parameter_list ')' '{' inner_statement_list '}' "identifier (T_STRING)" shift, and go to state 116 "array (T_ARRAY)" shift, and go to state 608 @@ -18170,7 +18170,7 @@ state 613 state 614 - 450 array_function_dereference: function_call $@69 '[' dim_offset ']' . + 450 array_function_dereference: function_call @69 '[' dim_offset ']' . $default reduce using rule 450 (array_function_dereference) @@ -18184,7 +18184,7 @@ state 615 state 616 - 352 function_call: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects '(' $@59 . function_call_parameter_list ')' + 352 function_call: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects '(' @59 . function_call_parameter_list ')' "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -18270,7 +18270,7 @@ state 616 state 617 - 350 function_call: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name '(' $@58 . function_call_parameter_list ')' + 350 function_call: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name '(' @58 . function_call_parameter_list ')' "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -18356,10 +18356,10 @@ state 617 state 618 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -18381,9 +18381,9 @@ state 618 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr - 315 | expr '?' ':' $@51 expr . + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr + 315 | expr '?' ':' @51 expr . "|| (T_BOOLEAN_OR)" shift, and go to state 239 "&& (T_BOOLEAN_AND)" shift, and go to state 240 @@ -18413,32 +18413,32 @@ state 618 state 619 - 313 expr_without_variable: expr '?' $@49 expr ':' . $@50 expr + 313 expr_without_variable: expr '?' @49 expr ':' . @50 expr - $default reduce using rule 312 ($@50) + $default reduce using rule 312 (@50) - $@50 go to state 691 + @50 go to state 691 state 620 - 257 expr_without_variable: variable '=' '&' "new (T_NEW)" class_name_reference . $@43 ctor_arguments + 257 expr_without_variable: variable '=' '&' "new (T_NEW)" class_name_reference . @43 ctor_arguments - $default reduce using rule 256 ($@43) + $default reduce using rule 256 (@43) - $@43 go to state 692 + @43 go to state 692 state 621 - 358 function_call: variable_without_objects '(' $@62 function_call_parameter_list ')' . + 358 function_call: variable_without_objects '(' @62 function_call_parameter_list ')' . $default reduce using rule 358 (function_call) state 622 - 356 function_call: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects '(' $@61 . function_call_parameter_list ')' + 356 function_call: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects '(' @61 . function_call_parameter_list ')' "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -18524,7 +18524,7 @@ state 622 state 623 - 354 function_call: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name '(' $@60 . function_call_parameter_list ')' + 354 function_call: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name '(' @60 . function_call_parameter_list ')' "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -18610,14 +18610,14 @@ state 623 state 624 - 466 object_property: variable_without_objects $@70 . + 466 object_property: variable_without_objects @70 . $default reduce using rule 466 (object_property) state 625 - 430 variable: base_variable_with_function_calls "-> (T_OBJECT_OPERATOR)" $@65 object_property $@66 . method_or_not variable_properties + 430 variable: base_variable_with_function_calls "-> (T_OBJECT_OPERATOR)" @65 object_property @66 . method_or_not variable_properties '(' shift, and go to state 695 @@ -18822,10 +18822,10 @@ state 628 state 629 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -18847,8 +18847,8 @@ state 629 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr 482 non_empty_array_pair_list: non_empty_array_pair_list ',' expr "=> (T_DOUBLE_ARROW)" expr . "or (T_LOGICAL_OR)" shift, and go to state 235 @@ -18890,7 +18890,7 @@ state 630 state 631 - 370 dynamic_class_name_reference: base_variable "-> (T_OBJECT_OPERATOR)" $@63 object_property $@64 . dynamic_class_name_variable_properties + 370 dynamic_class_name_reference: base_variable "-> (T_OBJECT_OPERATOR)" @63 object_property @64 . dynamic_class_name_variable_properties $default reduce using rule 373 (dynamic_class_name_variable_properties) @@ -18899,7 +18899,7 @@ state 631 state 632 - 41 unticked_statement: "if (T_IF)" '(' expr ')' ':' $@7 . inner_statement_list $@8 new_elseif_list new_else_single "endif (T_ENDIF)" ';' + 41 unticked_statement: "if (T_IF)" '(' expr ')' ':' @7 . inner_statement_list @8 new_elseif_list new_else_single "endif (T_ENDIF)" ';' $default reduce using rule 28 (inner_statement_list) @@ -18908,16 +18908,16 @@ state 632 state 633 - 38 unticked_statement: "if (T_IF)" '(' expr ')' $@5 statement . $@6 elseif_list else_single + 38 unticked_statement: "if (T_IF)" '(' expr ')' @5 statement . @6 elseif_list else_single - $default reduce using rule 37 ($@6) + $default reduce using rule 37 (@6) - $@6 go to state 704 + @6 go to state 704 state 634 - 47 unticked_statement: "do (T_DO)" $@11 statement "while (T_WHILE)" '(' $@12 . expr ')' ';' + 47 unticked_statement: "do (T_DO)" @11 statement "while (T_WHILE)" '(' @12 . expr ')' ';' "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -18998,7 +18998,7 @@ state 634 state 635 - 44 unticked_statement: "while (T_WHILE)" '(' $@9 expr ')' $@10 . while_statement + 44 unticked_statement: "while (T_WHILE)" '(' @9 expr ')' @10 . while_statement "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -19102,18 +19102,18 @@ state 635 state 636 - 51 unticked_statement: "for (T_FOR)" '(' for_expr ';' $@13 for_expr . ';' $@14 for_expr ')' $@15 for_statement + 51 unticked_statement: "for (T_FOR)" '(' for_expr ';' @13 for_expr . ';' @14 for_expr ')' @15 for_statement ';' shift, and go to state 709 state 637 - 237 non_empty_for_expr: non_empty_for_expr ',' $@38 expr . - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 237 non_empty_for_expr: non_empty_for_expr ',' @38 expr . + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -19135,8 +19135,8 @@ state 637 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr "or (T_LOGICAL_OR)" shift, and go to state 235 "xor (T_LOGICAL_XOR)" shift, and go to state 236 @@ -19170,7 +19170,7 @@ state 637 state 638 - 72 unticked_statement: "foreach (T_FOREACH)" '(' expr_without_variable "as (T_AS)" $@19 variable . foreach_optional_arg ')' $@20 foreach_statement + 72 unticked_statement: "foreach (T_FOREACH)" '(' expr_without_variable "as (T_AS)" @19 variable . foreach_optional_arg ')' @20 foreach_statement "=> (T_DOUBLE_ARROW)" shift, and go to state 710 @@ -19207,7 +19207,7 @@ state 639 state 640 - 69 unticked_statement: "foreach (T_FOREACH)" '(' variable "as (T_AS)" $@17 foreach_variable . foreach_optional_arg ')' $@18 foreach_statement + 69 unticked_statement: "foreach (T_FOREACH)" '(' variable "as (T_AS)" @17 foreach_variable . foreach_optional_arg ')' @18 foreach_statement "=> (T_DOUBLE_ARROW)" shift, and go to state 710 @@ -19255,7 +19255,7 @@ state 645 state 646 - 74 unticked_statement: "declare (T_DECLARE)" $@21 '(' declare_list ')' declare_statement . + 74 unticked_statement: "declare (T_DECLARE)" @21 '(' declare_list ')' declare_statement . $default reduce using rule 74 (unticked_statement) @@ -19286,7 +19286,7 @@ state 648 state 649 - 53 unticked_statement: "switch (T_SWITCH)" '(' expr ')' $@16 switch_case_list . + 53 unticked_statement: "switch (T_SWITCH)" '(' expr ')' @16 switch_case_list . $default reduce using rule 53 (unticked_statement) @@ -19401,7 +19401,7 @@ state 656 state 657 - 81 unticked_statement: "try (T_TRY)" $@22 '{' inner_statement_list '}' "catch (T_CATCH)" . '(' $@23 fully_qualified_class_name $@24 "variable (T_VARIABLE)" ')' $@25 '{' inner_statement_list '}' $@26 additional_catches + 81 unticked_statement: "try (T_TRY)" @22 '{' inner_statement_list '}' "catch (T_CATCH)" . '(' @23 fully_qualified_class_name @24 "variable (T_VARIABLE)" ')' @25 '{' inner_statement_list '}' @26 additional_catches '(' shift, and go to state 723 @@ -19422,14 +19422,14 @@ state 659 state 660 - 513 isset_variables: isset_variables ',' $@73 variable . + 513 isset_variables: isset_variables ',' @73 variable . $default reduce using rule 513 (isset_variables) state 661 - 478 assignment_list_element: "list (T_LIST)" '(' $@71 . assignment_list ')' + 478 assignment_list_element: "list (T_LIST)" '(' @71 . assignment_list ')' "identifier (T_STRING)" shift, and go to state 116 "variable (T_VARIABLE)" shift, and go to state 34 @@ -19467,7 +19467,7 @@ state 662 state 663 - 253 expr_without_variable: "list (T_LIST)" '(' $@42 assignment_list ')' '=' . expr + 253 expr_without_variable: "list (T_LIST)" '(' @42 assignment_list ')' '=' . expr "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -19548,7 +19548,7 @@ state 663 state 664 - 496 encaps_var: "variable (T_VARIABLE)" '[' $@72 encaps_var_offset ']' . + 496 encaps_var: "variable (T_VARIABLE)" '[' @72 encaps_var_offset ']' . $default reduce using rule 496 (encaps_var) @@ -19562,21 +19562,21 @@ state 665 state 666 - 346 function_call: "namespace (T_NAMESPACE)" "\\ (T_NS_SEPARATOR)" namespace_name '(' $@56 function_call_parameter_list . ')' + 346 function_call: "namespace (T_NAMESPACE)" "\\ (T_NS_SEPARATOR)" namespace_name '(' @56 function_call_parameter_list . ')' ')' shift, and go to state 728 state 667 - 13 top_statement: "namespace (T_NAMESPACE)" namespace_name '{' $@2 top_statement_list '}' . + 13 top_statement: "namespace (T_NAMESPACE)" namespace_name '{' @2 top_statement_list '}' . $default reduce using rule 13 (top_statement) state 668 - 348 function_call: "\\ (T_NS_SEPARATOR)" namespace_name '(' $@57 function_call_parameter_list ')' . + 348 function_call: "\\ (T_NS_SEPARATOR)" namespace_name '(' @57 function_call_parameter_list ')' . $default reduce using rule 348 (function_call) @@ -19667,7 +19667,7 @@ state 669 state 670 - 435 variable_property: "-> (T_OBJECT_OPERATOR)" . object_property $@67 method_or_not + 435 variable_property: "-> (T_OBJECT_OPERATOR)" . object_property @67 method_or_not "identifier (T_STRING)" shift, and go to state 436 "variable (T_VARIABLE)" shift, and go to state 34 @@ -19698,20 +19698,20 @@ state 671 state 672 241 chaining_dereference: chaining_dereference . '[' dim_offset ']' - 244 chaining_instance_call: chaining_dereference . $@39 chaining_method_or_property + 244 chaining_instance_call: chaining_dereference . @39 chaining_method_or_property 245 | chaining_dereference . '[' shift, and go to state 732 - "-> (T_OBJECT_OPERATOR)" reduce using rule 243 ($@39) + "-> (T_OBJECT_OPERATOR)" reduce using rule 243 (@39) $default reduce using rule 245 (chaining_instance_call) - $@39 go to state 733 + @39 go to state 733 state 673 - 249 instance_call: $@40 chaining_instance_call . + 249 instance_call: @40 chaining_instance_call . $default reduce using rule 249 (instance_call) @@ -19772,7 +19772,7 @@ state 678 172 non_empty_function_call_parameter_list: non_empty_function_call_parameter_list ',' variable . 254 expr_without_variable: variable . '=' expr 255 | variable . '=' '&' variable - 257 | variable . '=' '&' "new (T_NEW)" class_name_reference $@43 ctor_arguments + 257 | variable . '=' '&' "new (T_NEW)" class_name_reference @43 ctor_arguments 259 | variable . "+= (T_PLUS_EQUAL)" expr 260 | variable . "-= (T_MINUS_EQUAL)" expr 261 | variable . "*= (T_MUL_EQUAL)" expr @@ -19829,7 +19829,7 @@ state 680 state 681 - 101 unticked_class_declaration_statement: class_entry_type "identifier (T_STRING)" extends_from $@30 implements_list '{' . class_statement_list '}' + 101 unticked_class_declaration_statement: class_entry_type "identifier (T_STRING)" extends_from @30 implements_list '{' . class_statement_list '}' $default reduce using rule 184 (class_statement_list) @@ -19850,7 +19850,7 @@ state 682 state 683 - 103 unticked_class_declaration_statement: interface_entry "identifier (T_STRING)" $@31 interface_extends_list '{' class_statement_list . '}' + 103 unticked_class_declaration_statement: interface_entry "identifier (T_STRING)" @31 interface_extends_list '{' class_statement_list . '}' 183 class_statement_list: class_statement_list . class_statement "const (T_CONST)" shift, and go to state 738 @@ -19877,7 +19877,7 @@ state 683 state 684 - 99 unticked_function_declaration_statement: function is_reference "identifier (T_STRING)" $@29 '(' parameter_list . ')' '{' inner_statement_list '}' + 99 unticked_function_declaration_statement: function is_reference "identifier (T_STRING)" @29 '(' parameter_list . ')' '{' inner_statement_list '}' ')' shift, and go to state 755 @@ -19933,21 +19933,21 @@ state 688 state 689 - 352 function_call: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects '(' $@59 function_call_parameter_list . ')' + 352 function_call: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects '(' @59 function_call_parameter_list . ')' ')' shift, and go to state 761 state 690 - 350 function_call: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name '(' $@58 function_call_parameter_list . ')' + 350 function_call: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name '(' @58 function_call_parameter_list . ')' ')' shift, and go to state 762 state 691 - 313 expr_without_variable: expr '?' $@49 expr ':' $@50 . expr + 313 expr_without_variable: expr '?' @49 expr ':' @50 . expr "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -20028,7 +20028,7 @@ state 691 state 692 - 257 expr_without_variable: variable '=' '&' "new (T_NEW)" class_name_reference $@43 . ctor_arguments + 257 expr_without_variable: variable '=' '&' "new (T_NEW)" class_name_reference @43 . ctor_arguments '(' shift, and go to state 443 @@ -20039,25 +20039,25 @@ state 692 state 693 - 356 function_call: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects '(' $@61 function_call_parameter_list . ')' + 356 function_call: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects '(' @61 function_call_parameter_list . ')' ')' shift, and go to state 765 state 694 - 354 function_call: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name '(' $@60 function_call_parameter_list . ')' + 354 function_call: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name '(' @60 function_call_parameter_list . ')' ')' shift, and go to state 766 state 695 - 439 method: '(' . $@68 function_call_parameter_list ')' + 439 method: '(' . @68 function_call_parameter_list ')' - $default reduce using rule 438 ($@68) + $default reduce using rule 438 (@68) - $@68 go to state 767 + @68 go to state 767 state 696 @@ -20082,7 +20082,7 @@ state 697 state 698 - 430 variable: base_variable_with_function_calls "-> (T_OBJECT_OPERATOR)" $@65 object_property $@66 method_or_not . variable_properties + 430 variable: base_variable_with_function_calls "-> (T_OBJECT_OPERATOR)" @65 object_property @66 method_or_not . variable_properties $default reduce using rule 433 (variable_properties) @@ -20098,10 +20098,10 @@ state 699 state 700 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -20123,8 +20123,8 @@ state 700 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr 468 object_dim_list: object_dim_list '{' expr . '}' "or (T_LOGICAL_OR)" shift, and go to state 235 @@ -20165,7 +20165,7 @@ state 701 state 702 - 370 dynamic_class_name_reference: base_variable "-> (T_OBJECT_OPERATOR)" $@63 object_property $@64 dynamic_class_name_variable_properties . + 370 dynamic_class_name_reference: base_variable "-> (T_OBJECT_OPERATOR)" @63 object_property @64 dynamic_class_name_variable_properties . 372 dynamic_class_name_variable_properties: dynamic_class_name_variable_properties . dynamic_class_name_variable_property "-> (T_OBJECT_OPERATOR)" shift, and go to state 773 @@ -20177,21 +20177,21 @@ state 702 state 703 - 27 inner_statement_list: inner_statement_list . $@4 inner_statement - 41 unticked_statement: "if (T_IF)" '(' expr ')' ':' $@7 inner_statement_list . $@8 new_elseif_list new_else_single "endif (T_ENDIF)" ';' + 27 inner_statement_list: inner_statement_list . @4 inner_statement + 41 unticked_statement: "if (T_IF)" '(' expr ')' ':' @7 inner_statement_list . @8 new_elseif_list new_else_single "endif (T_ENDIF)" ';' - "elseif (T_ELSEIF)" reduce using rule 40 ($@8) - "else (T_ELSE)" reduce using rule 40 ($@8) - "endif (T_ENDIF)" reduce using rule 40 ($@8) - $default reduce using rule 26 ($@4) + "elseif (T_ELSEIF)" reduce using rule 40 (@8) + "else (T_ELSE)" reduce using rule 40 (@8) + "endif (T_ENDIF)" reduce using rule 40 (@8) + $default reduce using rule 26 (@4) - $@4 go to state 366 - $@8 go to state 775 + @4 go to state 366 + @8 go to state 775 state 704 - 38 unticked_statement: "if (T_IF)" '(' expr ')' $@5 statement $@6 . elseif_list else_single + 38 unticked_statement: "if (T_IF)" '(' expr ')' @5 statement @6 . elseif_list else_single $default reduce using rule 142 (elseif_list) @@ -20200,11 +20200,11 @@ state 704 state 705 - 47 unticked_statement: "do (T_DO)" $@11 statement "while (T_WHILE)" '(' $@12 expr . ')' ';' - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 47 unticked_statement: "do (T_DO)" @11 statement "while (T_WHILE)" '(' @12 expr . ')' ';' + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -20226,8 +20226,8 @@ state 705 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr "or (T_LOGICAL_OR)" shift, and go to state 235 "xor (T_LOGICAL_XOR)" shift, and go to state 236 @@ -20276,18 +20276,18 @@ state 707 state 708 - 44 unticked_statement: "while (T_WHILE)" '(' $@9 expr ')' $@10 while_statement . + 44 unticked_statement: "while (T_WHILE)" '(' @9 expr ')' @10 while_statement . $default reduce using rule 44 (unticked_statement) state 709 - 51 unticked_statement: "for (T_FOR)" '(' for_expr ';' $@13 for_expr ';' . $@14 for_expr ')' $@15 for_statement + 51 unticked_statement: "for (T_FOR)" '(' for_expr ';' @13 for_expr ';' . @14 for_expr ')' @15 for_statement - $default reduce using rule 49 ($@14) + $default reduce using rule 49 (@14) - $@14 go to state 779 + @14 go to state 779 state 710 @@ -20320,7 +20320,7 @@ state 710 state 711 - 72 unticked_statement: "foreach (T_FOREACH)" '(' expr_without_variable "as (T_AS)" $@19 variable foreach_optional_arg . ')' $@20 foreach_statement + 72 unticked_statement: "foreach (T_FOREACH)" '(' expr_without_variable "as (T_AS)" @19 variable foreach_optional_arg . ')' @20 foreach_statement ')' shift, and go to state 781 @@ -20334,7 +20334,7 @@ state 712 state 713 - 69 unticked_statement: "foreach (T_FOREACH)" '(' variable "as (T_AS)" $@17 foreach_variable foreach_optional_arg . ')' $@18 foreach_statement + 69 unticked_statement: "foreach (T_FOREACH)" '(' variable "as (T_AS)" @17 foreach_variable foreach_optional_arg . ')' @18 foreach_statement ')' shift, and go to state 782 @@ -20373,14 +20373,14 @@ state 714 state 715 - 27 inner_statement_list: inner_statement_list . $@4 inner_statement + 27 inner_statement_list: inner_statement_list . @4 inner_statement 126 declare_statement: ':' inner_statement_list . "enddeclare (T_ENDDECLARE)" ';' "enddeclare (T_ENDDECLARE)" shift, and go to state 784 - $default reduce using rule 26 ($@4) + $default reduce using rule 26 (@4) - $@4 go to state 366 + @4 go to state 366 state 716 @@ -20395,8 +20395,8 @@ state 716 state 717 131 switch_case_list: ':' case_list . "endswitch (T_ENDSWITCH)" ';' - 135 case_list: case_list . "case (T_CASE)" expr case_separator $@32 inner_statement_list - 137 | case_list . "default (T_DEFAULT)" case_separator $@33 inner_statement_list + 135 case_list: case_list . "case (T_CASE)" expr case_separator @32 inner_statement_list + 137 | case_list . "default (T_DEFAULT)" case_separator @33 inner_statement_list "endswitch (T_ENDSWITCH)" shift, and go to state 786 "case (T_CASE)" shift, and go to state 787 @@ -20415,8 +20415,8 @@ state 718 state 719 129 switch_case_list: '{' case_list . '}' - 135 case_list: case_list . "case (T_CASE)" expr case_separator $@32 inner_statement_list - 137 | case_list . "default (T_DEFAULT)" case_separator $@33 inner_statement_list + 135 case_list: case_list . "case (T_CASE)" expr case_separator @32 inner_statement_list + 137 | case_list . "default (T_DEFAULT)" case_separator @33 inner_statement_list "case (T_CASE)" shift, and go to state 787 "default (T_DEFAULT)" shift, and go to state 788 @@ -20449,11 +20449,11 @@ state 722 state 723 - 81 unticked_statement: "try (T_TRY)" $@22 '{' inner_statement_list '}' "catch (T_CATCH)" '(' . $@23 fully_qualified_class_name $@24 "variable (T_VARIABLE)" ')' $@25 '{' inner_statement_list '}' $@26 additional_catches + 81 unticked_statement: "try (T_TRY)" @22 '{' inner_statement_list '}' "catch (T_CATCH)" '(' . @23 fully_qualified_class_name @24 "variable (T_VARIABLE)" ')' @25 '{' inner_statement_list '}' @26 additional_catches - $default reduce using rule 77 ($@23) + $default reduce using rule 77 (@23) - $@23 go to state 792 + @23 go to state 792 state 724 @@ -20470,7 +20470,7 @@ state 724 state 725 474 assignment_list: assignment_list . ',' assignment_list_element - 478 assignment_list_element: "list (T_LIST)" '(' $@71 assignment_list . ')' + 478 assignment_list_element: "list (T_LIST)" '(' @71 assignment_list . ')' ',' shift, and go to state 582 ')' shift, and go to state 794 @@ -20478,11 +20478,11 @@ state 725 state 726 - 253 expr_without_variable: "list (T_LIST)" '(' $@42 assignment_list ')' '=' expr . - 275 | expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 253 expr_without_variable: "list (T_LIST)" '(' @42 assignment_list ')' '=' expr . + 275 | expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -20504,8 +20504,8 @@ state 726 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr '?' shift, and go to state 238 "|| (T_BOOLEAN_OR)" shift, and go to state 239 @@ -20543,7 +20543,7 @@ state 727 state 728 - 346 function_call: "namespace (T_NAMESPACE)" "\\ (T_NS_SEPARATOR)" namespace_name '(' $@56 function_call_parameter_list ')' . + 346 function_call: "namespace (T_NAMESPACE)" "\\ (T_NS_SEPARATOR)" namespace_name '(' @56 function_call_parameter_list ')' . $default reduce using rule 346 (function_call) @@ -20557,11 +20557,11 @@ state 729 state 730 - 435 variable_property: "-> (T_OBJECT_OPERATOR)" object_property . $@67 method_or_not + 435 variable_property: "-> (T_OBJECT_OPERATOR)" object_property . @67 method_or_not - $default reduce using rule 434 ($@67) + $default reduce using rule 434 (@67) - $@67 go to state 796 + @67 go to state 796 state 731 @@ -20657,7 +20657,7 @@ state 732 state 733 - 244 chaining_instance_call: chaining_dereference $@39 . chaining_method_or_property + 244 chaining_instance_call: chaining_dereference @39 . chaining_method_or_property "-> (T_OBJECT_OPERATOR)" shift, and go to state 670 @@ -20681,7 +20681,7 @@ state 735 state 736 - 101 unticked_class_declaration_statement: class_entry_type "identifier (T_STRING)" extends_from $@30 implements_list '{' class_statement_list . '}' + 101 unticked_class_declaration_statement: class_entry_type "identifier (T_STRING)" extends_from @30 implements_list '{' class_statement_list . '}' 183 class_statement_list: class_statement_list . class_statement "const (T_CONST)" shift, and go to state 738 @@ -20784,7 +20784,7 @@ state 746 state 747 - 103 unticked_class_declaration_statement: interface_entry "identifier (T_STRING)" $@31 interface_extends_list '{' class_statement_list '}' . + 103 unticked_class_declaration_statement: interface_entry "identifier (T_STRING)" @31 interface_extends_list '{' class_statement_list '}' . $default reduce using rule 103 (unticked_class_declaration_statement) @@ -20805,16 +20805,16 @@ state 749 state 750 - 186 class_statement: variable_modifiers . $@36 class_variable_declaration ';' + 186 class_statement: variable_modifiers . @36 class_variable_declaration ';' - $default reduce using rule 185 ($@36) + $default reduce using rule 185 (@36) - $@36 go to state 803 + @36 go to state 803 state 751 - 190 class_statement: method_modifiers . function is_reference "identifier (T_STRING)" $@37 '(' parameter_list ')' method_body + 190 class_statement: method_modifiers . function is_reference "identifier (T_STRING)" @37 '(' parameter_list ')' method_body "function (T_FUNCTION)" shift, and go to state 47 @@ -20858,7 +20858,7 @@ state 754 state 755 - 99 unticked_function_declaration_statement: function is_reference "identifier (T_STRING)" $@29 '(' parameter_list ')' . '{' inner_statement_list '}' + 99 unticked_function_declaration_statement: function is_reference "identifier (T_STRING)" @29 '(' parameter_list ')' . '{' inner_statement_list '}' '{' shift, and go to state 808 @@ -20932,24 +20932,24 @@ state 760 state 761 - 352 function_call: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects '(' $@59 function_call_parameter_list ')' . + 352 function_call: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects '(' @59 function_call_parameter_list ')' . $default reduce using rule 352 (function_call) state 762 - 350 function_call: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name '(' $@58 function_call_parameter_list ')' . + 350 function_call: class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name '(' @58 function_call_parameter_list ')' . $default reduce using rule 350 (function_call) state 763 - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -20971,9 +20971,9 @@ state 763 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 313 | expr '?' $@49 expr ':' $@50 expr . - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 313 | expr '?' @49 expr ':' @50 expr . + 315 | expr . '?' ':' @51 expr "|| (T_BOOLEAN_OR)" shift, and go to state 239 "&& (T_BOOLEAN_AND)" shift, and go to state 240 @@ -21003,28 +21003,28 @@ state 763 state 764 - 257 expr_without_variable: variable '=' '&' "new (T_NEW)" class_name_reference $@43 ctor_arguments . + 257 expr_without_variable: variable '=' '&' "new (T_NEW)" class_name_reference @43 ctor_arguments . $default reduce using rule 257 (expr_without_variable) state 765 - 356 function_call: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects '(' $@61 function_call_parameter_list ')' . + 356 function_call: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_without_objects '(' @61 function_call_parameter_list ')' . $default reduce using rule 356 (function_call) state 766 - 354 function_call: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name '(' $@60 function_call_parameter_list ')' . + 354 function_call: variable_class_name ":: (T_PAAMAYIM_NEKUDOTAYIM)" variable_name '(' @60 function_call_parameter_list ')' . $default reduce using rule 354 (function_call) state 767 - 439 method: '(' $@68 . function_call_parameter_list ')' + 439 method: '(' @68 . function_call_parameter_list ')' "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -21278,7 +21278,7 @@ state 769 state 770 - 430 variable: base_variable_with_function_calls "-> (T_OBJECT_OPERATOR)" $@65 object_property $@66 method_or_not variable_properties . + 430 variable: base_variable_with_function_calls "-> (T_OBJECT_OPERATOR)" @65 object_property @66 method_or_not variable_properties . 432 variable_properties: variable_properties . variable_property "-> (T_OBJECT_OPERATOR)" shift, and go to state 670 @@ -21329,7 +21329,7 @@ state 774 state 775 - 41 unticked_statement: "if (T_IF)" '(' expr ')' ':' $@7 inner_statement_list $@8 . new_elseif_list new_else_single "endif (T_ENDIF)" ';' + 41 unticked_statement: "if (T_IF)" '(' expr ')' ':' @7 inner_statement_list @8 . new_elseif_list new_else_single "endif (T_ENDIF)" ';' $default reduce using rule 145 (new_elseif_list) @@ -21338,8 +21338,8 @@ state 775 state 776 - 38 unticked_statement: "if (T_IF)" '(' expr ')' $@5 statement $@6 elseif_list . else_single - 144 elseif_list: elseif_list . "elseif (T_ELSEIF)" '(' expr ')' $@34 statement + 38 unticked_statement: "if (T_IF)" '(' expr ')' @5 statement @6 elseif_list . else_single + 144 elseif_list: elseif_list . "elseif (T_ELSEIF)" '(' expr ')' @34 statement "elseif (T_ELSEIF)" shift, and go to state 821 "else (T_ELSE)" shift, and go to state 822 @@ -21353,26 +21353,26 @@ state 776 state 777 - 47 unticked_statement: "do (T_DO)" $@11 statement "while (T_WHILE)" '(' $@12 expr ')' . ';' + 47 unticked_statement: "do (T_DO)" @11 statement "while (T_WHILE)" '(' @12 expr ')' . ';' ';' shift, and go to state 824 state 778 - 27 inner_statement_list: inner_statement_list . $@4 inner_statement + 27 inner_statement_list: inner_statement_list . @4 inner_statement 141 while_statement: ':' inner_statement_list . "endwhile (T_ENDWHILE)" ';' "endwhile (T_ENDWHILE)" shift, and go to state 825 - $default reduce using rule 26 ($@4) + $default reduce using rule 26 (@4) - $@4 go to state 366 + @4 go to state 366 state 779 - 51 unticked_statement: "for (T_FOR)" '(' for_expr ';' $@13 for_expr ';' $@14 . for_expr ')' $@15 for_statement + 51 unticked_statement: "for (T_FOR)" '(' for_expr ';' @13 for_expr ';' @14 . for_expr ')' @15 for_statement "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -21464,20 +21464,20 @@ state 780 state 781 - 72 unticked_statement: "foreach (T_FOREACH)" '(' expr_without_variable "as (T_AS)" $@19 variable foreach_optional_arg ')' . $@20 foreach_statement + 72 unticked_statement: "foreach (T_FOREACH)" '(' expr_without_variable "as (T_AS)" @19 variable foreach_optional_arg ')' . @20 foreach_statement - $default reduce using rule 71 ($@20) + $default reduce using rule 71 (@20) - $@20 go to state 827 + @20 go to state 827 state 782 - 69 unticked_statement: "foreach (T_FOREACH)" '(' variable "as (T_AS)" $@17 foreach_variable foreach_optional_arg ')' . $@18 foreach_statement + 69 unticked_statement: "foreach (T_FOREACH)" '(' variable "as (T_AS)" @17 foreach_variable foreach_optional_arg ')' . @18 foreach_statement - $default reduce using rule 68 ($@18) + $default reduce using rule 68 (@18) - $@18 go to state 828 + @18 go to state 828 state 783 @@ -21497,8 +21497,8 @@ state 784 state 785 132 switch_case_list: ':' ';' case_list . "endswitch (T_ENDSWITCH)" ';' - 135 case_list: case_list . "case (T_CASE)" expr case_separator $@32 inner_statement_list - 137 | case_list . "default (T_DEFAULT)" case_separator $@33 inner_statement_list + 135 case_list: case_list . "case (T_CASE)" expr case_separator @32 inner_statement_list + 137 | case_list . "default (T_DEFAULT)" case_separator @33 inner_statement_list "endswitch (T_ENDSWITCH)" shift, and go to state 830 "case (T_CASE)" shift, and go to state 787 @@ -21514,7 +21514,7 @@ state 786 state 787 - 135 case_list: case_list "case (T_CASE)" . expr case_separator $@32 inner_statement_list + 135 case_list: case_list "case (T_CASE)" . expr case_separator @32 inner_statement_list "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -21595,7 +21595,7 @@ state 787 state 788 - 137 case_list: case_list "default (T_DEFAULT)" . case_separator $@33 inner_statement_list + 137 case_list: case_list "default (T_DEFAULT)" . case_separator @33 inner_statement_list ':' shift, and go to state 833 ';' shift, and go to state 834 @@ -21606,8 +21606,8 @@ state 788 state 789 130 switch_case_list: '{' ';' case_list . '}' - 135 case_list: case_list . "case (T_CASE)" expr case_separator $@32 inner_statement_list - 137 | case_list . "default (T_DEFAULT)" case_separator $@33 inner_statement_list + 135 case_list: case_list . "case (T_CASE)" expr case_separator @32 inner_statement_list + 137 | case_list . "default (T_DEFAULT)" case_separator @33 inner_statement_list "case (T_CASE)" shift, and go to state 787 "default (T_DEFAULT)" shift, and go to state 788 @@ -21655,7 +21655,7 @@ state 791 state 792 - 81 unticked_statement: "try (T_TRY)" $@22 '{' inner_statement_list '}' "catch (T_CATCH)" '(' $@23 . fully_qualified_class_name $@24 "variable (T_VARIABLE)" ')' $@25 '{' inner_statement_list '}' $@26 additional_catches + 81 unticked_statement: "try (T_TRY)" @22 '{' inner_statement_list '}' "catch (T_CATCH)" '(' @23 . fully_qualified_class_name @24 "variable (T_VARIABLE)" ')' @25 '{' inner_statement_list '}' @26 additional_catches "identifier (T_STRING)" shift, and go to state 116 "namespace (T_NAMESPACE)" shift, and go to state 514 @@ -21674,7 +21674,7 @@ state 793 state 794 - 478 assignment_list_element: "list (T_LIST)" '(' $@71 assignment_list ')' . + 478 assignment_list_element: "list (T_LIST)" '(' @71 assignment_list ')' . $default reduce using rule 478 (assignment_list_element) @@ -21688,7 +21688,7 @@ state 795 state 796 - 435 variable_property: "-> (T_OBJECT_OPERATOR)" object_property $@67 . method_or_not + 435 variable_property: "-> (T_OBJECT_OPERATOR)" object_property @67 . method_or_not '(' shift, and go to state 695 @@ -21709,7 +21709,7 @@ state 797 state 798 239 chaining_method_or_property: chaining_method_or_property . variable_property - 244 chaining_instance_call: chaining_dereference $@39 chaining_method_or_property . + 244 chaining_instance_call: chaining_dereference @39 chaining_method_or_property . "-> (T_OBJECT_OPERATOR)" shift, and go to state 670 @@ -21720,7 +21720,7 @@ state 798 state 799 - 101 unticked_class_declaration_statement: class_entry_type "identifier (T_STRING)" extends_from $@30 implements_list '{' class_statement_list '}' . + 101 unticked_class_declaration_statement: class_entry_type "identifier (T_STRING)" extends_from @30 implements_list '{' class_statement_list '}' . $default reduce using rule 101 (unticked_class_declaration_statement) @@ -21753,7 +21753,7 @@ state 802 state 803 - 186 class_statement: variable_modifiers $@36 . class_variable_declaration ';' + 186 class_statement: variable_modifiers @36 . class_variable_declaration ';' "variable (T_VARIABLE)" shift, and go to state 847 @@ -21762,7 +21762,7 @@ state 803 state 804 - 190 class_statement: method_modifiers function . is_reference "identifier (T_STRING)" $@37 '(' parameter_list ')' method_body + 190 class_statement: method_modifiers function . is_reference "identifier (T_STRING)" @37 '(' parameter_list ')' method_body '&' shift, and go to state 231 @@ -21794,7 +21794,7 @@ state 807 state 808 - 99 unticked_function_declaration_statement: function is_reference "identifier (T_STRING)" $@29 '(' parameter_list ')' '{' . inner_statement_list '}' + 99 unticked_function_declaration_statement: function is_reference "identifier (T_STRING)" @29 '(' parameter_list ')' '{' . inner_statement_list '}' $default reduce using rule 28 (inner_statement_list) @@ -21879,7 +21879,7 @@ state 814 state 815 - 439 method: '(' $@68 function_call_parameter_list . ')' + 439 method: '(' @68 function_call_parameter_list . ')' ')' shift, and go to state 859 @@ -21914,8 +21914,8 @@ state 819 state 820 - 41 unticked_statement: "if (T_IF)" '(' expr ')' ':' $@7 inner_statement_list $@8 new_elseif_list . new_else_single "endif (T_ENDIF)" ';' - 147 new_elseif_list: new_elseif_list . "elseif (T_ELSEIF)" '(' expr ')' ':' $@35 inner_statement_list + 41 unticked_statement: "if (T_IF)" '(' expr ')' ':' @7 inner_statement_list @8 new_elseif_list . new_else_single "endif (T_ENDIF)" ';' + 147 new_elseif_list: new_elseif_list . "elseif (T_ELSEIF)" '(' expr ')' ':' @35 inner_statement_list "elseif (T_ELSEIF)" shift, and go to state 862 "else (T_ELSE)" shift, and go to state 863 @@ -21927,7 +21927,7 @@ state 820 state 821 - 144 elseif_list: elseif_list "elseif (T_ELSEIF)" . '(' expr ')' $@34 statement + 144 elseif_list: elseif_list "elseif (T_ELSEIF)" . '(' expr ')' @34 statement '(' shift, and go to state 865 @@ -22036,14 +22036,14 @@ state 822 state 823 - 38 unticked_statement: "if (T_IF)" '(' expr ')' $@5 statement $@6 elseif_list else_single . + 38 unticked_statement: "if (T_IF)" '(' expr ')' @5 statement @6 elseif_list else_single . $default reduce using rule 38 (unticked_statement) state 824 - 47 unticked_statement: "do (T_DO)" $@11 statement "while (T_WHILE)" '(' $@12 expr ')' ';' . + 47 unticked_statement: "do (T_DO)" @11 statement "while (T_WHILE)" '(' @12 expr ')' ';' . $default reduce using rule 47 (unticked_statement) @@ -22057,14 +22057,14 @@ state 825 state 826 - 51 unticked_statement: "for (T_FOR)" '(' for_expr ';' $@13 for_expr ';' $@14 for_expr . ')' $@15 for_statement + 51 unticked_statement: "for (T_FOR)" '(' for_expr ';' @13 for_expr ';' @14 for_expr . ')' @15 for_statement ')' shift, and go to state 868 state 827 - 72 unticked_statement: "foreach (T_FOREACH)" '(' expr_without_variable "as (T_AS)" $@19 variable foreach_optional_arg ')' $@20 . foreach_statement + 72 unticked_statement: "foreach (T_FOREACH)" '(' expr_without_variable "as (T_AS)" @19 variable foreach_optional_arg ')' @20 . foreach_statement "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -22168,7 +22168,7 @@ state 827 state 828 - 69 unticked_statement: "foreach (T_FOREACH)" '(' variable "as (T_AS)" $@17 foreach_variable foreach_optional_arg ')' $@18 . foreach_statement + 69 unticked_statement: "foreach (T_FOREACH)" '(' variable "as (T_AS)" @17 foreach_variable foreach_optional_arg ')' @18 . foreach_statement "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -22293,11 +22293,11 @@ state 831 state 832 - 135 case_list: case_list "case (T_CASE)" expr . case_separator $@32 inner_statement_list - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 135 case_list: case_list "case (T_CASE)" expr . case_separator @32 inner_statement_list + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -22319,8 +22319,8 @@ state 832 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr "or (T_LOGICAL_OR)" shift, and go to state 235 "xor (T_LOGICAL_XOR)" shift, and go to state 236 @@ -22370,11 +22370,11 @@ state 834 state 835 - 137 case_list: case_list "default (T_DEFAULT)" case_separator . $@33 inner_statement_list + 137 case_list: case_list "default (T_DEFAULT)" case_separator . @33 inner_statement_list - $default reduce using rule 136 ($@33) + $default reduce using rule 136 (@33) - $@33 go to state 875 + @33 go to state 875 state 836 @@ -22393,11 +22393,11 @@ state 837 state 838 - 81 unticked_statement: "try (T_TRY)" $@22 '{' inner_statement_list '}' "catch (T_CATCH)" '(' $@23 fully_qualified_class_name . $@24 "variable (T_VARIABLE)" ')' $@25 '{' inner_statement_list '}' $@26 additional_catches + 81 unticked_statement: "try (T_TRY)" @22 '{' inner_statement_list '}' "catch (T_CATCH)" '(' @23 fully_qualified_class_name . @24 "variable (T_VARIABLE)" ')' @25 '{' inner_statement_list '}' @26 additional_catches - $default reduce using rule 78 ($@24) + $default reduce using rule 78 (@24) - $@24 go to state 876 + @24 go to state 876 state 839 @@ -22411,7 +22411,7 @@ state 839 state 840 - 435 variable_property: "-> (T_OBJECT_OPERATOR)" object_property $@67 method_or_not . + 435 variable_property: "-> (T_OBJECT_OPERATOR)" object_property @67 method_or_not . $default reduce using rule 435 (variable_property) @@ -22514,7 +22514,7 @@ state 847 state 848 - 186 class_statement: variable_modifiers $@36 class_variable_declaration . ';' + 186 class_statement: variable_modifiers @36 class_variable_declaration . ';' 226 class_variable_declaration: class_variable_declaration . ',' "variable (T_VARIABLE)" 227 | class_variable_declaration . ',' "variable (T_VARIABLE)" '=' static_scalar @@ -22524,7 +22524,7 @@ state 848 state 849 - 190 class_statement: method_modifiers function is_reference . "identifier (T_STRING)" $@37 '(' parameter_list ')' method_body + 190 class_statement: method_modifiers function is_reference . "identifier (T_STRING)" @37 '(' parameter_list ')' method_body "identifier (T_STRING)" shift, and go to state 892 @@ -22538,14 +22538,14 @@ state 850 state 851 - 27 inner_statement_list: inner_statement_list . $@4 inner_statement - 99 unticked_function_declaration_statement: function is_reference "identifier (T_STRING)" $@29 '(' parameter_list ')' '{' inner_statement_list . '}' + 27 inner_statement_list: inner_statement_list . @4 inner_statement + 99 unticked_function_declaration_statement: function is_reference "identifier (T_STRING)" @29 '(' parameter_list ')' '{' inner_statement_list . '}' '}' shift, and go to state 894 - $default reduce using rule 26 ($@4) + $default reduce using rule 26 (@4) - $@4 go to state 366 + @4 go to state 366 state 852 @@ -22574,14 +22574,14 @@ state 854 state 855 - 27 inner_statement_list: inner_statement_list . $@4 inner_statement + 27 inner_statement_list: inner_statement_list . @4 inner_statement 333 expr_without_variable: function is_reference '(' @53 parameter_list ')' lexical_vars '{' inner_statement_list . '}' '}' shift, and go to state 898 - $default reduce using rule 26 ($@4) + $default reduce using rule 26 (@4) - $@4 go to state 366 + @4 go to state 366 state 856 @@ -22635,7 +22635,7 @@ state 858 state 859 - 439 method: '(' $@68 function_call_parameter_list ')' . + 439 method: '(' @68 function_call_parameter_list ')' . $default reduce using rule 439 (method) @@ -22656,7 +22656,7 @@ state 861 state 862 - 147 new_elseif_list: new_elseif_list "elseif (T_ELSEIF)" . '(' expr ')' ':' $@35 inner_statement_list + 147 new_elseif_list: new_elseif_list "elseif (T_ELSEIF)" . '(' expr ')' ':' @35 inner_statement_list '(' shift, and go to state 901 @@ -22670,14 +22670,14 @@ state 863 state 864 - 41 unticked_statement: "if (T_IF)" '(' expr ')' ':' $@7 inner_statement_list $@8 new_elseif_list new_else_single . "endif (T_ENDIF)" ';' + 41 unticked_statement: "if (T_IF)" '(' expr ')' ':' @7 inner_statement_list @8 new_elseif_list new_else_single . "endif (T_ENDIF)" ';' "endif (T_ENDIF)" shift, and go to state 903 state 865 - 144 elseif_list: elseif_list "elseif (T_ELSEIF)" '(' . expr ')' $@34 statement + 144 elseif_list: elseif_list "elseif (T_ELSEIF)" '(' . expr ')' @34 statement "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -22772,11 +22772,11 @@ state 867 state 868 - 51 unticked_statement: "for (T_FOR)" '(' for_expr ';' $@13 for_expr ';' $@14 for_expr ')' . $@15 for_statement + 51 unticked_statement: "for (T_FOR)" '(' for_expr ';' @13 for_expr ';' @14 for_expr ')' . @15 for_statement - $default reduce using rule 50 ($@15) + $default reduce using rule 50 (@15) - $@15 go to state 905 + @15 go to state 905 state 869 @@ -22797,14 +22797,14 @@ state 870 state 871 - 72 unticked_statement: "foreach (T_FOREACH)" '(' expr_without_variable "as (T_AS)" $@19 variable foreach_optional_arg ')' $@20 foreach_statement . + 72 unticked_statement: "foreach (T_FOREACH)" '(' expr_without_variable "as (T_AS)" @19 variable foreach_optional_arg ')' @20 foreach_statement . $default reduce using rule 72 (unticked_statement) state 872 - 69 unticked_statement: "foreach (T_FOREACH)" '(' variable "as (T_AS)" $@17 foreach_variable foreach_optional_arg ')' $@18 foreach_statement . + 69 unticked_statement: "foreach (T_FOREACH)" '(' variable "as (T_AS)" @17 foreach_variable foreach_optional_arg ')' @18 foreach_statement . $default reduce using rule 69 (unticked_statement) @@ -22818,16 +22818,16 @@ state 873 state 874 - 135 case_list: case_list "case (T_CASE)" expr case_separator . $@32 inner_statement_list + 135 case_list: case_list "case (T_CASE)" expr case_separator . @32 inner_statement_list - $default reduce using rule 134 ($@32) + $default reduce using rule 134 (@32) - $@32 go to state 907 + @32 go to state 907 state 875 - 137 case_list: case_list "default (T_DEFAULT)" case_separator $@33 . inner_statement_list + 137 case_list: case_list "default (T_DEFAULT)" case_separator @33 . inner_statement_list $default reduce using rule 28 (inner_statement_list) @@ -22836,21 +22836,21 @@ state 875 state 876 - 81 unticked_statement: "try (T_TRY)" $@22 '{' inner_statement_list '}' "catch (T_CATCH)" '(' $@23 fully_qualified_class_name $@24 . "variable (T_VARIABLE)" ')' $@25 '{' inner_statement_list '}' $@26 additional_catches + 81 unticked_statement: "try (T_TRY)" @22 '{' inner_statement_list '}' "catch (T_CATCH)" '(' @23 fully_qualified_class_name @24 . "variable (T_VARIABLE)" ')' @25 '{' inner_statement_list '}' @26 additional_catches "variable (T_VARIABLE)" shift, and go to state 909 state 877 - 27 inner_statement_list: inner_statement_list . $@4 inner_statement + 27 inner_statement_list: inner_statement_list . @4 inner_statement 335 expr_without_variable: "static (T_STATIC)" function is_reference '(' @54 parameter_list ')' lexical_vars '{' inner_statement_list . '}' '}' shift, and go to state 910 - $default reduce using rule 26 ($@4) + $default reduce using rule 26 (@4) - $@4 go to state 366 + @4 go to state 366 state 878 @@ -22991,18 +22991,18 @@ state 890 state 891 - 186 class_statement: variable_modifiers $@36 class_variable_declaration ';' . + 186 class_statement: variable_modifiers @36 class_variable_declaration ';' . $default reduce using rule 186 (class_statement) state 892 - 190 class_statement: method_modifiers function is_reference "identifier (T_STRING)" . $@37 '(' parameter_list ')' method_body + 190 class_statement: method_modifiers function is_reference "identifier (T_STRING)" . @37 '(' parameter_list ')' method_body - $default reduce using rule 189 ($@37) + $default reduce using rule 189 (@37) - $@37 go to state 920 + @37 go to state 920 state 893 @@ -23039,7 +23039,7 @@ state 893 state 894 - 99 unticked_function_declaration_statement: function is_reference "identifier (T_STRING)" $@29 '(' parameter_list ')' '{' inner_statement_list '}' . + 99 unticked_function_declaration_statement: function is_reference "identifier (T_STRING)" @29 '(' parameter_list ')' '{' inner_statement_list '}' . $default reduce using rule 99 (unticked_function_declaration_statement) @@ -23115,7 +23115,7 @@ state 900 state 901 - 147 new_elseif_list: new_elseif_list "elseif (T_ELSEIF)" '(' . expr ')' ':' $@35 inner_statement_list + 147 new_elseif_list: new_elseif_list "elseif (T_ELSEIF)" '(' . expr ')' ':' @35 inner_statement_list "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -23205,18 +23205,18 @@ state 902 state 903 - 41 unticked_statement: "if (T_IF)" '(' expr ')' ':' $@7 inner_statement_list $@8 new_elseif_list new_else_single "endif (T_ENDIF)" . ';' + 41 unticked_statement: "if (T_IF)" '(' expr ')' ':' @7 inner_statement_list @8 new_elseif_list new_else_single "endif (T_ENDIF)" . ';' ';' shift, and go to state 927 state 904 - 144 elseif_list: elseif_list "elseif (T_ELSEIF)" '(' expr . ')' $@34 statement - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 144 elseif_list: elseif_list "elseif (T_ELSEIF)" '(' expr . ')' @34 statement + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -23238,8 +23238,8 @@ state 904 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr "or (T_LOGICAL_OR)" shift, and go to state 235 "xor (T_LOGICAL_XOR)" shift, and go to state 236 @@ -23272,7 +23272,7 @@ state 904 state 905 - 51 unticked_statement: "for (T_FOR)" '(' for_expr ';' $@13 for_expr ';' $@14 for_expr ')' $@15 . for_statement + 51 unticked_statement: "for (T_FOR)" '(' for_expr ';' @13 for_expr ';' @14 for_expr ')' @15 . for_statement "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -23376,19 +23376,19 @@ state 905 state 906 - 27 inner_statement_list: inner_statement_list . $@4 inner_statement + 27 inner_statement_list: inner_statement_list . @4 inner_statement 124 foreach_statement: ':' inner_statement_list . "endforeach (T_ENDFOREACH)" ';' "endforeach (T_ENDFOREACH)" shift, and go to state 932 - $default reduce using rule 26 ($@4) + $default reduce using rule 26 (@4) - $@4 go to state 366 + @4 go to state 366 state 907 - 135 case_list: case_list "case (T_CASE)" expr case_separator $@32 . inner_statement_list + 135 case_list: case_list "case (T_CASE)" expr case_separator @32 . inner_statement_list $default reduce using rule 28 (inner_statement_list) @@ -23397,21 +23397,21 @@ state 907 state 908 - 27 inner_statement_list: inner_statement_list . $@4 inner_statement - 137 case_list: case_list "default (T_DEFAULT)" case_separator $@33 inner_statement_list . + 27 inner_statement_list: inner_statement_list . @4 inner_statement + 137 case_list: case_list "default (T_DEFAULT)" case_separator @33 inner_statement_list . "endswitch (T_ENDSWITCH)" reduce using rule 137 (case_list) "case (T_CASE)" reduce using rule 137 (case_list) "default (T_DEFAULT)" reduce using rule 137 (case_list) '}' reduce using rule 137 (case_list) - $default reduce using rule 26 ($@4) + $default reduce using rule 26 (@4) - $@4 go to state 366 + @4 go to state 366 state 909 - 81 unticked_statement: "try (T_TRY)" $@22 '{' inner_statement_list '}' "catch (T_CATCH)" '(' $@23 fully_qualified_class_name $@24 "variable (T_VARIABLE)" . ')' $@25 '{' inner_statement_list '}' $@26 additional_catches + 81 unticked_statement: "try (T_TRY)" @22 '{' inner_statement_list '}' "catch (T_CATCH)" '(' @23 fully_qualified_class_name @24 "variable (T_VARIABLE)" . ')' @25 '{' inner_statement_list '}' @26 additional_catches ')' shift, and go to state 934 @@ -23508,7 +23508,7 @@ state 919 state 920 - 190 class_statement: method_modifiers function is_reference "identifier (T_STRING)" $@37 . '(' parameter_list ')' method_body + 190 class_statement: method_modifiers function is_reference "identifier (T_STRING)" @37 . '(' parameter_list ')' method_body '(' shift, and go to state 941 @@ -23543,11 +23543,11 @@ state 924 state 925 - 147 new_elseif_list: new_elseif_list "elseif (T_ELSEIF)" '(' expr . ')' ':' $@35 inner_statement_list - 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" $@44 expr - 277 | expr . "&& (T_BOOLEAN_AND)" $@45 expr - 279 | expr . "or (T_LOGICAL_OR)" $@46 expr - 281 | expr . "and (T_LOGICAL_AND)" $@47 expr + 147 new_elseif_list: new_elseif_list "elseif (T_ELSEIF)" '(' expr . ')' ':' @35 inner_statement_list + 275 expr_without_variable: expr . "|| (T_BOOLEAN_OR)" @44 expr + 277 | expr . "&& (T_BOOLEAN_AND)" @45 expr + 279 | expr . "or (T_LOGICAL_OR)" @46 expr + 281 | expr . "and (T_LOGICAL_AND)" @47 expr 282 | expr . "xor (T_LOGICAL_XOR)" expr 283 | expr . '|' expr 284 | expr . '&' expr @@ -23569,8 +23569,8 @@ state 925 304 | expr . '>' expr 305 | expr . ">= (T_IS_GREATER_OR_EQUAL)" expr 306 | expr . "instanceof (T_INSTANCEOF)" class_name_reference - 313 | expr . '?' $@49 expr ':' $@50 expr - 315 | expr . '?' ':' $@51 expr + 313 | expr . '?' @49 expr ':' @50 expr + 315 | expr . '?' ':' @51 expr "or (T_LOGICAL_OR)" shift, and go to state 235 "xor (T_LOGICAL_XOR)" shift, and go to state 236 @@ -23603,29 +23603,29 @@ state 925 state 926 - 27 inner_statement_list: inner_statement_list . $@4 inner_statement + 27 inner_statement_list: inner_statement_list . @4 inner_statement 151 new_else_single: "else (T_ELSE)" ':' inner_statement_list . "endif (T_ENDIF)" reduce using rule 151 (new_else_single) - $default reduce using rule 26 ($@4) + $default reduce using rule 26 (@4) - $@4 go to state 366 + @4 go to state 366 state 927 - 41 unticked_statement: "if (T_IF)" '(' expr ')' ':' $@7 inner_statement_list $@8 new_elseif_list new_else_single "endif (T_ENDIF)" ';' . + 41 unticked_statement: "if (T_IF)" '(' expr ')' ':' @7 inner_statement_list @8 new_elseif_list new_else_single "endif (T_ENDIF)" ';' . $default reduce using rule 41 (unticked_statement) state 928 - 144 elseif_list: elseif_list "elseif (T_ELSEIF)" '(' expr ')' . $@34 statement + 144 elseif_list: elseif_list "elseif (T_ELSEIF)" '(' expr ')' . @34 statement - $default reduce using rule 143 ($@34) + $default reduce using rule 143 (@34) - $@34 go to state 944 + @34 go to state 944 state 929 @@ -23646,7 +23646,7 @@ state 930 state 931 - 51 unticked_statement: "for (T_FOR)" '(' for_expr ';' $@13 for_expr ';' $@14 for_expr ')' $@15 for_statement . + 51 unticked_statement: "for (T_FOR)" '(' for_expr ';' @13 for_expr ';' @14 for_expr ')' @15 for_statement . $default reduce using rule 51 (unticked_statement) @@ -23660,25 +23660,25 @@ state 932 state 933 - 27 inner_statement_list: inner_statement_list . $@4 inner_statement - 135 case_list: case_list "case (T_CASE)" expr case_separator $@32 inner_statement_list . + 27 inner_statement_list: inner_statement_list . @4 inner_statement + 135 case_list: case_list "case (T_CASE)" expr case_separator @32 inner_statement_list . "endswitch (T_ENDSWITCH)" reduce using rule 135 (case_list) "case (T_CASE)" reduce using rule 135 (case_list) "default (T_DEFAULT)" reduce using rule 135 (case_list) '}' reduce using rule 135 (case_list) - $default reduce using rule 26 ($@4) + $default reduce using rule 26 (@4) - $@4 go to state 366 + @4 go to state 366 state 934 - 81 unticked_statement: "try (T_TRY)" $@22 '{' inner_statement_list '}' "catch (T_CATCH)" '(' $@23 fully_qualified_class_name $@24 "variable (T_VARIABLE)" ')' . $@25 '{' inner_statement_list '}' $@26 additional_catches + 81 unticked_statement: "try (T_TRY)" @22 '{' inner_statement_list '}' "catch (T_CATCH)" '(' @23 fully_qualified_class_name @24 "variable (T_VARIABLE)" ')' . @25 '{' inner_statement_list '}' @26 additional_catches - $default reduce using rule 79 ($@25) + $default reduce using rule 79 (@25) - $@25 go to state 947 + @25 go to state 947 state 935 @@ -23755,7 +23755,7 @@ state 940 state 941 - 190 class_statement: method_modifiers function is_reference "identifier (T_STRING)" $@37 '(' . parameter_list ')' method_body + 190 class_statement: method_modifiers function is_reference "identifier (T_STRING)" @37 '(' . parameter_list ')' method_body "identifier (T_STRING)" shift, and go to state 116 "array (T_ARRAY)" shift, and go to state 608 @@ -23782,14 +23782,14 @@ state 942 state 943 - 147 new_elseif_list: new_elseif_list "elseif (T_ELSEIF)" '(' expr ')' . ':' $@35 inner_statement_list + 147 new_elseif_list: new_elseif_list "elseif (T_ELSEIF)" '(' expr ')' . ':' @35 inner_statement_list ':' shift, and go to state 952 state 944 - 144 elseif_list: elseif_list "elseif (T_ELSEIF)" '(' expr ')' $@34 . statement + 144 elseif_list: elseif_list "elseif (T_ELSEIF)" '(' expr ')' @34 . statement "require_once (T_REQUIRE_ONCE)" shift, and go to state 5 "require (T_REQUIRE)" shift, and go to state 6 @@ -23891,14 +23891,14 @@ state 944 state 945 - 27 inner_statement_list: inner_statement_list . $@4 inner_statement + 27 inner_statement_list: inner_statement_list . @4 inner_statement 122 for_statement: ':' inner_statement_list . "endfor (T_ENDFOR)" ';' "endfor (T_ENDFOR)" shift, and go to state 954 - $default reduce using rule 26 ($@4) + $default reduce using rule 26 (@4) - $@4 go to state 366 + @4 go to state 366 state 946 @@ -23910,7 +23910,7 @@ state 946 state 947 - 81 unticked_statement: "try (T_TRY)" $@22 '{' inner_statement_list '}' "catch (T_CATCH)" '(' $@23 fully_qualified_class_name $@24 "variable (T_VARIABLE)" ')' $@25 . '{' inner_statement_list '}' $@26 additional_catches + 81 unticked_statement: "try (T_TRY)" @22 '{' inner_statement_list '}' "catch (T_CATCH)" '(' @23 fully_qualified_class_name @24 "variable (T_VARIABLE)" ')' @25 . '{' inner_statement_list '}' @26 additional_catches '{' shift, and go to state 955 @@ -23943,23 +23943,23 @@ state 950 state 951 - 190 class_statement: method_modifiers function is_reference "identifier (T_STRING)" $@37 '(' parameter_list . ')' method_body + 190 class_statement: method_modifiers function is_reference "identifier (T_STRING)" @37 '(' parameter_list . ')' method_body ')' shift, and go to state 957 state 952 - 147 new_elseif_list: new_elseif_list "elseif (T_ELSEIF)" '(' expr ')' ':' . $@35 inner_statement_list + 147 new_elseif_list: new_elseif_list "elseif (T_ELSEIF)" '(' expr ')' ':' . @35 inner_statement_list - $default reduce using rule 146 ($@35) + $default reduce using rule 146 (@35) - $@35 go to state 958 + @35 go to state 958 state 953 - 144 elseif_list: elseif_list "elseif (T_ELSEIF)" '(' expr ')' $@34 statement . + 144 elseif_list: elseif_list "elseif (T_ELSEIF)" '(' expr ')' @34 statement . $default reduce using rule 144 (elseif_list) @@ -23973,7 +23973,7 @@ state 954 state 955 - 81 unticked_statement: "try (T_TRY)" $@22 '{' inner_statement_list '}' "catch (T_CATCH)" '(' $@23 fully_qualified_class_name $@24 "variable (T_VARIABLE)" ')' $@25 '{' . inner_statement_list '}' $@26 additional_catches + 81 unticked_statement: "try (T_TRY)" @22 '{' inner_statement_list '}' "catch (T_CATCH)" '(' @23 fully_qualified_class_name @24 "variable (T_VARIABLE)" ')' @25 '{' . inner_statement_list '}' @26 additional_catches $default reduce using rule 28 (inner_statement_list) @@ -23989,7 +23989,7 @@ state 956 state 957 - 190 class_statement: method_modifiers function is_reference "identifier (T_STRING)" $@37 '(' parameter_list ')' . method_body + 190 class_statement: method_modifiers function is_reference "identifier (T_STRING)" @37 '(' parameter_list ')' . method_body ';' shift, and go to state 961 '{' shift, and go to state 962 @@ -23999,7 +23999,7 @@ state 957 state 958 - 147 new_elseif_list: new_elseif_list "elseif (T_ELSEIF)" '(' expr ')' ':' $@35 . inner_statement_list + 147 new_elseif_list: new_elseif_list "elseif (T_ELSEIF)" '(' expr ')' ':' @35 . inner_statement_list $default reduce using rule 28 (inner_statement_list) @@ -24015,14 +24015,14 @@ state 959 state 960 - 27 inner_statement_list: inner_statement_list . $@4 inner_statement - 81 unticked_statement: "try (T_TRY)" $@22 '{' inner_statement_list '}' "catch (T_CATCH)" '(' $@23 fully_qualified_class_name $@24 "variable (T_VARIABLE)" ')' $@25 '{' inner_statement_list . '}' $@26 additional_catches + 27 inner_statement_list: inner_statement_list . @4 inner_statement + 81 unticked_statement: "try (T_TRY)" @22 '{' inner_statement_list '}' "catch (T_CATCH)" '(' @23 fully_qualified_class_name @24 "variable (T_VARIABLE)" ')' @25 '{' inner_statement_list . '}' @26 additional_catches '}' shift, and go to state 965 - $default reduce using rule 26 ($@4) + $default reduce using rule 26 (@4) - $@4 go to state 366 + @4 go to state 366 state 961 @@ -24043,48 +24043,48 @@ state 962 state 963 - 190 class_statement: method_modifiers function is_reference "identifier (T_STRING)" $@37 '(' parameter_list ')' method_body . + 190 class_statement: method_modifiers function is_reference "identifier (T_STRING)" @37 '(' parameter_list ')' method_body . $default reduce using rule 190 (class_statement) state 964 - 27 inner_statement_list: inner_statement_list . $@4 inner_statement - 147 new_elseif_list: new_elseif_list "elseif (T_ELSEIF)" '(' expr ')' ':' $@35 inner_statement_list . + 27 inner_statement_list: inner_statement_list . @4 inner_statement + 147 new_elseif_list: new_elseif_list "elseif (T_ELSEIF)" '(' expr ')' ':' @35 inner_statement_list . "elseif (T_ELSEIF)" reduce using rule 147 (new_elseif_list) "else (T_ELSE)" reduce using rule 147 (new_elseif_list) "endif (T_ENDIF)" reduce using rule 147 (new_elseif_list) - $default reduce using rule 26 ($@4) + $default reduce using rule 26 (@4) - $@4 go to state 366 + @4 go to state 366 state 965 - 81 unticked_statement: "try (T_TRY)" $@22 '{' inner_statement_list '}' "catch (T_CATCH)" '(' $@23 fully_qualified_class_name $@24 "variable (T_VARIABLE)" ')' $@25 '{' inner_statement_list '}' . $@26 additional_catches + 81 unticked_statement: "try (T_TRY)" @22 '{' inner_statement_list '}' "catch (T_CATCH)" '(' @23 fully_qualified_class_name @24 "variable (T_VARIABLE)" ')' @25 '{' inner_statement_list '}' . @26 additional_catches - $default reduce using rule 80 ($@26) + $default reduce using rule 80 (@26) - $@26 go to state 967 + @26 go to state 967 state 966 - 27 inner_statement_list: inner_statement_list . $@4 inner_statement + 27 inner_statement_list: inner_statement_list . @4 inner_statement 213 method_body: '{' inner_statement_list . '}' '}' shift, and go to state 968 - $default reduce using rule 26 ($@4) + $default reduce using rule 26 (@4) - $@4 go to state 366 + @4 go to state 366 state 967 - 81 unticked_statement: "try (T_TRY)" $@22 '{' inner_statement_list '}' "catch (T_CATCH)" '(' $@23 fully_qualified_class_name $@24 "variable (T_VARIABLE)" ')' $@25 '{' inner_statement_list '}' $@26 . additional_catches + 81 unticked_statement: "try (T_TRY)" @22 '{' inner_statement_list '}' "catch (T_CATCH)" '(' @23 fully_qualified_class_name @24 "variable (T_VARIABLE)" ')' @25 '{' inner_statement_list '}' @26 . additional_catches "catch (T_CATCH)" shift, and go to state 969 @@ -24104,14 +24104,14 @@ state 968 state 969 - 90 additional_catch: "catch (T_CATCH)" . '(' fully_qualified_class_name @27 "variable (T_VARIABLE)" ')' $@28 '{' inner_statement_list '}' + 90 additional_catch: "catch (T_CATCH)" . '(' fully_qualified_class_name @27 "variable (T_VARIABLE)" ')' @28 '{' inner_statement_list '}' '(' shift, and go to state 973 state 970 - 81 unticked_statement: "try (T_TRY)" $@22 '{' inner_statement_list '}' "catch (T_CATCH)" '(' $@23 fully_qualified_class_name $@24 "variable (T_VARIABLE)" ')' $@25 '{' inner_statement_list '}' $@26 additional_catches . + 81 unticked_statement: "try (T_TRY)" @22 '{' inner_statement_list '}' "catch (T_CATCH)" '(' @23 fully_qualified_class_name @24 "variable (T_VARIABLE)" ')' @25 '{' inner_statement_list '}' @26 additional_catches . $default reduce using rule 81 (unticked_statement) @@ -24137,7 +24137,7 @@ state 972 state 973 - 90 additional_catch: "catch (T_CATCH)" '(' . fully_qualified_class_name @27 "variable (T_VARIABLE)" ')' $@28 '{' inner_statement_list '}' + 90 additional_catch: "catch (T_CATCH)" '(' . fully_qualified_class_name @27 "variable (T_VARIABLE)" ')' @28 '{' inner_statement_list '}' "identifier (T_STRING)" shift, and go to state 116 "namespace (T_NAMESPACE)" shift, and go to state 514 @@ -24156,7 +24156,7 @@ state 974 state 975 - 90 additional_catch: "catch (T_CATCH)" '(' fully_qualified_class_name . @27 "variable (T_VARIABLE)" ')' $@28 '{' inner_statement_list '}' + 90 additional_catch: "catch (T_CATCH)" '(' fully_qualified_class_name . @27 "variable (T_VARIABLE)" ')' @28 '{' inner_statement_list '}' $default reduce using rule 88 (@27) @@ -24165,37 +24165,37 @@ state 975 state 976 - 90 additional_catch: "catch (T_CATCH)" '(' fully_qualified_class_name @27 . "variable (T_VARIABLE)" ')' $@28 '{' inner_statement_list '}' + 90 additional_catch: "catch (T_CATCH)" '(' fully_qualified_class_name @27 . "variable (T_VARIABLE)" ')' @28 '{' inner_statement_list '}' "variable (T_VARIABLE)" shift, and go to state 977 state 977 - 90 additional_catch: "catch (T_CATCH)" '(' fully_qualified_class_name @27 "variable (T_VARIABLE)" . ')' $@28 '{' inner_statement_list '}' + 90 additional_catch: "catch (T_CATCH)" '(' fully_qualified_class_name @27 "variable (T_VARIABLE)" . ')' @28 '{' inner_statement_list '}' ')' shift, and go to state 978 state 978 - 90 additional_catch: "catch (T_CATCH)" '(' fully_qualified_class_name @27 "variable (T_VARIABLE)" ')' . $@28 '{' inner_statement_list '}' + 90 additional_catch: "catch (T_CATCH)" '(' fully_qualified_class_name @27 "variable (T_VARIABLE)" ')' . @28 '{' inner_statement_list '}' - $default reduce using rule 89 ($@28) + $default reduce using rule 89 (@28) - $@28 go to state 979 + @28 go to state 979 state 979 - 90 additional_catch: "catch (T_CATCH)" '(' fully_qualified_class_name @27 "variable (T_VARIABLE)" ')' $@28 . '{' inner_statement_list '}' + 90 additional_catch: "catch (T_CATCH)" '(' fully_qualified_class_name @27 "variable (T_VARIABLE)" ')' @28 . '{' inner_statement_list '}' '{' shift, and go to state 980 state 980 - 90 additional_catch: "catch (T_CATCH)" '(' fully_qualified_class_name @27 "variable (T_VARIABLE)" ')' $@28 '{' . inner_statement_list '}' + 90 additional_catch: "catch (T_CATCH)" '(' fully_qualified_class_name @27 "variable (T_VARIABLE)" ')' @28 '{' . inner_statement_list '}' $default reduce using rule 28 (inner_statement_list) @@ -24204,18 +24204,18 @@ state 980 state 981 - 27 inner_statement_list: inner_statement_list . $@4 inner_statement - 90 additional_catch: "catch (T_CATCH)" '(' fully_qualified_class_name @27 "variable (T_VARIABLE)" ')' $@28 '{' inner_statement_list . '}' + 27 inner_statement_list: inner_statement_list . @4 inner_statement + 90 additional_catch: "catch (T_CATCH)" '(' fully_qualified_class_name @27 "variable (T_VARIABLE)" ')' @28 '{' inner_statement_list . '}' '}' shift, and go to state 982 - $default reduce using rule 26 ($@4) + $default reduce using rule 26 (@4) - $@4 go to state 366 + @4 go to state 366 state 982 - 90 additional_catch: "catch (T_CATCH)" '(' fully_qualified_class_name @27 "variable (T_VARIABLE)" ')' $@28 '{' inner_statement_list '}' . + 90 additional_catch: "catch (T_CATCH)" '(' fully_qualified_class_name @27 "variable (T_VARIABLE)" ')' @28 '{' inner_statement_list '}' . $default reduce using rule 90 (additional_catch) @@ -1,11 +1,11 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.68. +# Generated by GNU Autoconf 2.65. # # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, -# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software -# Foundation, Inc. +# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. # # # This configure script is free software; the Free Software Foundation @@ -89,7 +89,6 @@ fi IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. -as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR @@ -215,18 +214,11 @@ IFS=$as_save_IFS # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. - # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV export CONFIG_SHELL - case $- in # (((( - *v*x* | *x*v* ) as_opts=-vx ;; - *v* ) as_opts=-v ;; - *x* ) as_opts=-x ;; - * ) as_opts= ;; - esac - exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"} + exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} fi if test x$as_have_required = xno; then : @@ -324,7 +316,7 @@ $as_echo X"$as_dir" | test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" + } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" } # as_fn_mkdir_p @@ -364,19 +356,19 @@ else fi # as_fn_arith -# as_fn_error STATUS ERROR [LINENO LOG_FD] -# ---------------------------------------- +# as_fn_error ERROR [LINENO LOG_FD] +# --------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the -# script with STATUS, using 1 if that was 0. +# script with status $?, using 1 if that was 0. as_fn_error () { - as_status=$1; test $as_status -eq 0 && as_status=1 - if test "$4"; then - as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 + as_status=$?; test $as_status -eq 0 && as_status=1 + if test "$3"; then + as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 fi - $as_echo "$as_me: error: $2" >&2 + $as_echo "$as_me: error: $1" >&2 as_fn_exit $as_status } # as_fn_error @@ -690,7 +682,7 @@ test -n "$DJDIR" || exec 7<&0 </dev/null exec 6>&1 # Name of the host. -# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, +# hostname on some systems (SVR3.2, Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` @@ -1161,9 +1153,8 @@ do fi case $ac_option in - *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; - *=) ac_optarg= ;; - *) ac_optarg=yes ;; + *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; + *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. @@ -1208,7 +1199,7 @@ do ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid feature name: $ac_useropt" + as_fn_error "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in @@ -1234,7 +1225,7 @@ do ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid feature name: $ac_useropt" + as_fn_error "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in @@ -1438,7 +1429,7 @@ do ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid package name: $ac_useropt" + as_fn_error "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in @@ -1454,7 +1445,7 @@ do ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid package name: $ac_useropt" + as_fn_error "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in @@ -1484,8 +1475,8 @@ do | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; - -*) as_fn_error $? "unrecognized option: \`$ac_option' -Try \`$0 --help' for more information" + -*) as_fn_error "unrecognized option: \`$ac_option' +Try \`$0 --help' for more information." ;; *=*) @@ -1493,7 +1484,7 @@ Try \`$0 --help' for more information" # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) - as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; + as_fn_error "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; @@ -1503,7 +1494,7 @@ Try \`$0 --help' for more information" $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 - : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" + : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} ;; esac @@ -1511,13 +1502,13 @@ done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` - as_fn_error $? "missing argument to $ac_option" + as_fn_error "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; - fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; + fatal) as_fn_error "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi @@ -1540,7 +1531,7 @@ do [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac - as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" + as_fn_error "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' @@ -1554,8 +1545,8 @@ target=$target_alias if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe - $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host. - If a cross compiler is detected then cross compile mode will be used" >&2 + $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. + If a cross compiler is detected then cross compile mode will be used." >&2 elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi @@ -1570,9 +1561,9 @@ test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || - as_fn_error $? "working directory cannot be determined" + as_fn_error "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || - as_fn_error $? "pwd does not report name of working directory" + as_fn_error "pwd does not report name of working directory" # Find the source files, if location was not specified. @@ -1611,11 +1602,11 @@ else fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." - as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" + as_fn_error "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( - cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" + cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then @@ -1655,7 +1646,7 @@ Configuration: --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit - -q, --quiet, --silent do not print \`checking ...' messages + -q, --quiet, --silent do not print \`checking...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files @@ -2045,9 +2036,8 @@ Some influential environment variables: CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if you have headers in a nonstandard directory <include dir> CPP C preprocessor - YACC The `Yet Another Compiler Compiler' implementation to use. - Defaults to the first program found out of: `bison -y', `byacc', - `yacc'. + YACC The `Yet Another C Compiler' implementation to use. Defaults to + the first program found out of: `bison -y', `byacc', `yacc'. YFLAGS The list of arguments that will be passed by default to $YACC. This script will default YFLAGS to the empty string to avoid a default value of `-d' given by some make applications. @@ -2122,9 +2112,9 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF configure -generated by GNU Autoconf 2.68 +generated by GNU Autoconf 2.65 -Copyright (C) 2010 Free Software Foundation, Inc. +Copyright (C) 2009 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF @@ -2168,7 +2158,7 @@ sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} as_fn_set_status $ac_retval } # ac_fn_c_try_compile @@ -2194,7 +2184,7 @@ $as_echo "$ac_try_echo"; } >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } > conftest.i && { + test $ac_status = 0; } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : @@ -2205,7 +2195,7 @@ sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} as_fn_set_status $ac_retval } # ac_fn_c_try_cpp @@ -2218,10 +2208,10 @@ fi ac_fn_c_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if eval \${$3+:} false; then : + if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 fi eval ac_res=\$$3 @@ -2257,7 +2247,7 @@ if ac_fn_c_try_cpp "$LINENO"; then : else ac_header_preproc=no fi -rm -f conftest.err conftest.i conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } @@ -2284,7 +2274,7 @@ $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else eval "$3=\$ac_header_compiler" @@ -2293,7 +2283,7 @@ eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} } # ac_fn_c_check_header_mongrel @@ -2334,7 +2324,7 @@ sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} as_fn_set_status $ac_retval } # ac_fn_c_try_run @@ -2348,7 +2338,7 @@ ac_fn_c_check_header_compile () as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -2366,7 +2356,7 @@ fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} } # ac_fn_c_check_header_compile @@ -2411,7 +2401,7 @@ fi # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} as_fn_set_status $ac_retval } # ac_fn_c_try_link @@ -2424,7 +2414,7 @@ ac_fn_c_check_func () as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -2479,7 +2469,7 @@ fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} } # ac_fn_c_check_func @@ -2492,7 +2482,7 @@ ac_fn_c_check_member () as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2.$3" >&5 $as_echo_n "checking for $2.$3... " >&6; } -if eval \${$4+:} false; then : +if { as_var=$4; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -2536,22 +2526,19 @@ fi eval ac_res=\$$4 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} } # ac_fn_c_check_member -# ac_fn_c_check_decl LINENO SYMBOL VAR INCLUDES -# --------------------------------------------- -# Tests whether SYMBOL is declared in INCLUDES, setting cache variable VAR -# accordingly. +# ac_fn_c_check_decl LINENO SYMBOL VAR +# ------------------------------------ +# Tests whether SYMBOL is declared, setting cache variable VAR accordingly. ac_fn_c_check_decl () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - as_decl_name=`echo $2|sed 's/ *(.*//'` - as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'` - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5 -$as_echo_n "checking whether $as_decl_name is declared... " >&6; } -if eval \${$3+:} false; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $2 is declared" >&5 +$as_echo_n "checking whether $2 is declared... " >&6; } +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -2560,12 +2547,8 @@ $4 int main () { -#ifndef $as_decl_name -#ifdef __cplusplus - (void) $as_decl_use; -#else - (void) $as_decl_name; -#endif +#ifndef $2 + (void) $2; #endif ; @@ -2582,7 +2565,7 @@ fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} } # ac_fn_c_check_decl @@ -2759,7 +2742,7 @@ rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ rm -f conftest.val fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} as_fn_set_status $ac_retval } # ac_fn_c_compute_int @@ -2773,7 +2756,7 @@ ac_fn_c_check_type () as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else eval "$3=no" @@ -2814,7 +2797,7 @@ fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} } # ac_fn_c_check_type @@ -2851,7 +2834,7 @@ sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} as_fn_set_status $ac_retval } # ac_fn_cxx_try_compile @@ -2877,7 +2860,7 @@ $as_echo "$ac_try_echo"; } >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } > conftest.i && { + test $ac_status = 0; } >/dev/null && { test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || test ! -s conftest.err }; then : @@ -2888,7 +2871,7 @@ sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} as_fn_set_status $ac_retval } # ac_fn_cxx_try_cpp @@ -2897,7 +2880,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by $as_me, which was -generated by GNU Autoconf 2.68. Invocation command line was +generated by GNU Autoconf 2.65. Invocation command line was $ $0 $@ @@ -3007,9 +2990,11 @@ trap 'exit_status=$? { echo - $as_echo "## ---------------- ## + cat <<\_ASBOX +## ---------------- ## ## Cache variables. ## -## ---------------- ##" +## ---------------- ## +_ASBOX echo # The following way of writing the cache mishandles newlines in values, ( @@ -3043,9 +3028,11 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; ) echo - $as_echo "## ----------------- ## + cat <<\_ASBOX +## ----------------- ## ## Output variables. ## -## ----------------- ##" +## ----------------- ## +_ASBOX echo for ac_var in $ac_subst_vars do @@ -3058,9 +3045,11 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; echo if test -n "$ac_subst_files"; then - $as_echo "## ------------------- ## + cat <<\_ASBOX +## ------------------- ## ## File substitutions. ## -## ------------------- ##" +## ------------------- ## +_ASBOX echo for ac_var in $ac_subst_files do @@ -3074,9 +3063,11 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; fi if test -s confdefs.h; then - $as_echo "## ----------- ## + cat <<\_ASBOX +## ----------- ## ## confdefs.h. ## -## ----------- ##" +## ----------- ## +_ASBOX echo cat confdefs.h echo @@ -3131,12 +3122,7 @@ _ACEOF ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then - # We do not want a PATH search for config.site. - case $CONFIG_SITE in #(( - -*) ac_site_file1=./$CONFIG_SITE;; - */*) ac_site_file1=$CONFIG_SITE;; - *) ac_site_file1=./$CONFIG_SITE;; - esac + ac_site_file1=$CONFIG_SITE elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site @@ -3151,11 +3137,7 @@ do { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 - . "$ac_site_file" \ - || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "failed to load site script $ac_site_file -See \`config.log' for more details" "$LINENO" 5; } + . "$ac_site_file" fi done @@ -3232,7 +3214,7 @@ if $ac_cache_corrupted; then $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} - as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 + as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## @@ -3251,7 +3233,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } -if ${ac_cv_path_GREP+:} false; then : +if test "${ac_cv_path_GREP+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -z "$GREP"; then @@ -3300,7 +3282,7 @@ esac done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then - as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + as_fn_error "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_GREP=$GREP @@ -3314,7 +3296,7 @@ $as_echo "$ac_cv_path_GREP" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 $as_echo_n "checking for egrep... " >&6; } -if ${ac_cv_path_EGREP+:} false; then : +if test "${ac_cv_path_EGREP+set}" = set; then : $as_echo_n "(cached) " >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 @@ -3366,7 +3348,7 @@ esac done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then - as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + as_fn_error "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP @@ -3381,7 +3363,7 @@ $as_echo "$ac_cv_path_EGREP" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 $as_echo_n "checking for a sed that does not truncate output... " >&6; } -if ${lt_cv_path_SED+:} false; then : +if test "${lt_cv_path_SED+set}" = set; then : $as_echo_n "(cached) " >&6 else # Loop through the user's path and test for sed and gsed. @@ -3507,22 +3489,16 @@ EOF ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do - if test -f "$ac_dir/install-sh"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/install-sh -c" - break - elif test -f "$ac_dir/install.sh"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/install.sh -c" - break - elif test -f "$ac_dir/shtool"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/shtool install -c" - break - fi + for ac_t in install-sh install.sh shtool; do + if test -f "$ac_dir/$ac_t"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/$ac_t -c" + break 2 + fi + done done if test -z "$ac_aux_dir"; then - as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 + as_fn_error "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 fi # These three variables are undocumented and unsupported, @@ -3536,27 +3512,27 @@ ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || - as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 + as_fn_error "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 $as_echo_n "checking build system type... " >&6; } -if ${ac_cv_build+:} false; then : +if test "${ac_cv_build+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_build_alias=$build_alias test "x$ac_build_alias" = x && ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` test "x$ac_build_alias" = x && - as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 + as_fn_error "cannot guess build type; you must specify one" "$LINENO" 5 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || - as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 + as_fn_error "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 $as_echo "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; -*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; +*) as_fn_error "invalid value of canonical build" "$LINENO" 5;; esac build=$ac_cv_build ac_save_IFS=$IFS; IFS='-' @@ -3574,14 +3550,14 @@ case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 $as_echo_n "checking host system type... " >&6; } -if ${ac_cv_host+:} false; then : +if test "${ac_cv_host+set}" = set; then : $as_echo_n "(cached) " >&6 else if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || - as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 + as_fn_error "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 fi fi @@ -3589,7 +3565,7 @@ fi $as_echo "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; -*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; +*) as_fn_error "invalid value of canonical host" "$LINENO" 5;; esac host=$ac_cv_host ac_save_IFS=$IFS; IFS='-' @@ -3607,14 +3583,14 @@ case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking target system type" >&5 $as_echo_n "checking target system type... " >&6; } -if ${ac_cv_target+:} false; then : +if test "${ac_cv_target+set}" = set; then : $as_echo_n "(cached) " >&6 else if test "x$target_alias" = x; then ac_cv_target=$ac_cv_host else ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` || - as_fn_error $? "$SHELL $ac_aux_dir/config.sub $target_alias failed" "$LINENO" 5 + as_fn_error "$SHELL $ac_aux_dir/config.sub $target_alias failed" "$LINENO" 5 fi fi @@ -3622,7 +3598,7 @@ fi $as_echo "$ac_cv_target" >&6; } case $ac_cv_target in *-*-*) ;; -*) as_fn_error $? "invalid value of canonical target" "$LINENO" 5;; +*) as_fn_error "invalid value of canonical target" "$LINENO" 5;; esac target=$ac_cv_target ac_save_IFS=$IFS; IFS='-' @@ -3649,7 +3625,7 @@ test -n "$target_alias" && host_alias=$host fi if test -z "$host_alias"; then - as_fn_error $? "host_alias is not set!" "$LINENO" 5 + as_fn_error "host_alias is not set!" "$LINENO" 5 fi @@ -3660,7 +3636,7 @@ ac_config_headers="$ac_config_headers main/php_config.h" PHP_MAJOR_VERSION=5 PHP_MINOR_VERSION=4 -PHP_RELEASE_VERSION=2 +PHP_RELEASE_VERSION=3 PHP_EXTRA_VERSION="" PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION" PHP_VERSION_ID=`expr $PHP_MAJOR_VERSION \* 10000 + $PHP_MINOR_VERSION \* 100 + $PHP_RELEASE_VERSION` @@ -3699,15 +3675,15 @@ fi if test "$with_shared_apache" != "no" && test -n "$with_shared_apache" ; then - as_fn_error $? "--with-shared-apache is not supported. Please refer to the documentation for using APXS" "$LINENO" 5 + as_fn_error "--with-shared-apache is not supported. Please refer to the documentation for using APXS" "$LINENO" 5 fi if test -n "$with_apache" && test -n "$with_apxs"; then - as_fn_error $? "--with-apache and --with-apxs cannot be used together" "$LINENO" 5 + as_fn_error "--with-apache and --with-apxs cannot be used together" "$LINENO" 5 fi if test -n "$with_apxs2filter" && test -n "$with_apxs2"; then - as_fn_error $? "--with-apxs2filter and --with-apxs2 cannot be used together" "$LINENO" 5 + as_fn_error "--with-apxs2filter and --with-apxs2 cannot be used together" "$LINENO" 5 fi @@ -3751,7 +3727,7 @@ if test -n "$ac_tool_prefix"; then set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : +if test "${ac_cv_prog_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then @@ -3795,7 +3771,7 @@ do set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_CC+:} false; then : +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then @@ -3847,8 +3823,8 @@ fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "no acceptable C compiler found in \$PATH -See \`config.log' for more details" "$LINENO" 5; } +as_fn_error "no acceptable C compiler found in \$PATH +See \`config.log' for more details." "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 @@ -3962,8 +3938,9 @@ sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "C compiler cannot create executables -See \`config.log' for more details" "$LINENO" 5; } +{ as_fn_set_status 77 +as_fn_error "C compiler cannot create executables +See \`config.log' for more details." "$LINENO" 5; }; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -4005,8 +3982,8 @@ done else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details" "$LINENO" 5; } +as_fn_error "cannot compute suffix of executables: cannot compile and link +See \`config.log' for more details." "$LINENO" 5; } fi rm -f conftest conftest$ac_cv_exeext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 @@ -4063,9 +4040,9 @@ $as_echo "$ac_try_echo"; } >&5 else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "cannot run C compiled programs. +as_fn_error "cannot run C compiled programs. If you meant to cross compile, use \`--host'. -See \`config.log' for more details" "$LINENO" 5; } +See \`config.log' for more details." "$LINENO" 5; } fi fi fi @@ -4076,7 +4053,7 @@ rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } -if ${ac_cv_objext+:} false; then : +if test "${ac_cv_objext+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -4116,8 +4093,8 @@ sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "cannot compute suffix of object files: cannot compile -See \`config.log' for more details" "$LINENO" 5; } +as_fn_error "cannot compute suffix of object files: cannot compile +See \`config.log' for more details." "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi @@ -4127,7 +4104,7 @@ OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } -if ${ac_cv_c_compiler_gnu+:} false; then : +if test "${ac_cv_c_compiler_gnu+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -4164,7 +4141,7 @@ ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } -if ${ac_cv_prog_cc_g+:} false; then : +if test "${ac_cv_prog_cc_g+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag @@ -4242,7 +4219,7 @@ else fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } -if ${ac_cv_prog_cc_c89+:} false; then : +if test "${ac_cv_prog_cc_c89+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no @@ -4350,7 +4327,7 @@ if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then - if ${ac_cv_prog_CPP+:} false; then : + if test "${ac_cv_prog_CPP+set}" = set; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded @@ -4380,7 +4357,7 @@ else # Broken: fails on valid input. continue fi -rm -f conftest.err conftest.i conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. @@ -4396,11 +4373,11 @@ else ac_preproc_ok=: break fi -rm -f conftest.err conftest.i conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi @@ -4439,7 +4416,7 @@ else # Broken: fails on valid input. continue fi -rm -f conftest.err conftest.i conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. @@ -4455,18 +4432,18 @@ else ac_preproc_ok=: break fi -rm -f conftest.err conftest.i conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "C preprocessor \"$CPP\" fails sanity check -See \`config.log' for more details" "$LINENO" 5; } +as_fn_error "C preprocessor \"$CPP\" fails sanity check +See \`config.log' for more details." "$LINENO" 5; } fi ac_ext=c @@ -4533,7 +4510,7 @@ $as_echo_n "checking whether cc understands -c and -o together... " >&6; } fi set dummy $CC; ac_cc=`$as_echo "$2" | sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'` -if eval \${ac_cv_prog_cc_${ac_cc}_c_o+:} false; then : +if { as_var=ac_cv_prog_cc_${ac_cc}_c_o; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -4647,7 +4624,7 @@ if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then - if ${ac_cv_prog_CPP+:} false; then : + if test "${ac_cv_prog_CPP+set}" = set; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded @@ -4677,7 +4654,7 @@ else # Broken: fails on valid input. continue fi -rm -f conftest.err conftest.i conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. @@ -4693,11 +4670,11 @@ else ac_preproc_ok=: break fi -rm -f conftest.err conftest.i conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi @@ -4736,7 +4713,7 @@ else # Broken: fails on valid input. continue fi -rm -f conftest.err conftest.i conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. @@ -4752,18 +4729,18 @@ else ac_preproc_ok=: break fi -rm -f conftest.err conftest.i conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "C preprocessor \"$CPP\" fails sanity check -See \`config.log' for more details" "$LINENO" 5; } +as_fn_error "C preprocessor \"$CPP\" fails sanity check +See \`config.log' for more details." "$LINENO" 5; } fi ac_ext=c @@ -4774,7 +4751,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } -if ${ac_cv_header_stdc+:} false; then : +if test "${ac_cv_header_stdc+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -4891,7 +4868,8 @@ do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default " -if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : +eval as_val=\$$as_ac_Header + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF @@ -4903,7 +4881,7 @@ done ac_fn_c_check_header_mongrel "$LINENO" "minix/config.h" "ac_cv_header_minix_config_h" "$ac_includes_default" -if test "x$ac_cv_header_minix_config_h" = xyes; then : +if test "x$ac_cv_header_minix_config_h" = x""yes; then : MINIX=yes else MINIX= @@ -4925,7 +4903,7 @@ $as_echo "#define _MINIX 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5 $as_echo_n "checking whether it is safe to define __EXTENSIONS__... " >&6; } -if ${ac_cv_safe_to_define___extensions__+:} false; then : +if test "${ac_cv_safe_to_define___extensions__+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -5025,7 +5003,7 @@ $as_echo "$ext_output" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking if compiler supports -R" >&5 $as_echo_n "checking if compiler supports -R... " >&6; } -if ${php_cv_cc_dashr+:} false; then : +if test "${php_cv_cc_dashr+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -5059,7 +5037,7 @@ if test $php_cv_cc_dashr = "yes"; then else { $as_echo "$as_me:${as_lineno-$LINENO}: checking if compiler supports -Wl,-rpath," >&5 $as_echo_n "checking if compiler supports -Wl,-rpath,... " >&6; } - if ${php_cv_cc_rpath+:} false; then : + if test "${php_cv_cc_rpath+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -5106,7 +5084,7 @@ do set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_AWK+:} false; then : +if test "${ac_cv_prog_AWK+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then @@ -5152,7 +5130,7 @@ $as_echo "$as_me: WARNING: mawk is known to have problems on some systems. You s *gawk) ;; bork) - as_fn_error $? "Could not find awk; Install GNU awk" "$LINENO" 5 + as_fn_error "Could not find awk; Install GNU awk" "$LINENO" 5 ;; *) { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $AWK is broken" >&5 @@ -5160,7 +5138,7 @@ $as_echo_n "checking if $AWK is broken... " >&6; } if ! $AWK 'function foo() {}' >/dev/null 2>&1 ; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - as_fn_error $? "You should install GNU awk" "$LINENO" 5 + as_fn_error "You should install GNU awk" "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } @@ -5178,7 +5156,7 @@ do set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_YACC+:} false; then : +if test "${ac_cv_prog_YACC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$YACC"; then @@ -5226,7 +5204,7 @@ test -n "$YACC" || YACC="yacc" if test "$YACC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bison version" >&5 $as_echo_n "checking for bison version... " >&6; } -if ${php_cv_bison_version+:} false; then : +if test "${php_cv_bison_version+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -5265,7 +5243,7 @@ $as_echo "$as_me: WARNING: $bison_msg" >&2;} set dummy re2c; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_RE2C+:} false; then : +if test "${ac_cv_prog_RE2C+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$RE2C"; then @@ -5301,7 +5279,7 @@ fi if test -n "$RE2C"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for re2c version" >&5 $as_echo_n "checking for re2c version... " >&6; } -if ${php_cv_re2c_version+:} false; then : +if test "${php_cv_re2c_version+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -5331,7 +5309,7 @@ $as_echo "$as_me: WARNING: You will need re2c 0.13.4 or later if you want to reg case $php_cv_bison_version in ""|invalid) if ! test -f "$abs_srcdir/Zend/zend_language_parser.h" || ! test -f "$abs_srcdir/Zend/zend_language_parser.c" ; then - as_fn_error $? "bison is required to build PHP/Zend when building a GIT checkout!" "$LINENO" 5 + as_fn_error "bison is required to build PHP/Zend when building a GIT checkout!" "$LINENO" 5 fi ;; esac @@ -5451,7 +5429,7 @@ case $host_alias in gcc_arg_name=ac_cv_gcc_arg_no_cpp_precomp { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC supports -no-cpp-precomp" >&5 $as_echo_n "checking whether $CC supports -no-cpp-precomp... " >&6; } -if ${ac_cv_gcc_arg_no_cpp_precomp+:} false; then : +if test "${ac_cv_gcc_arg_no_cpp_precomp+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -5789,7 +5767,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthreads_cflags" >&5 $as_echo_n "checking for pthreads_cflags... " >&6; } -if ${ac_cv_pthreads_cflags+:} false; then : +if test "${ac_cv_pthreads_cflags+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -5855,7 +5833,7 @@ $as_echo "$ac_cv_pthreads_cflags" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthreads_lib" >&5 $as_echo_n "checking for pthreads_lib... " >&6; } -if ${ac_cv_pthreads_lib+:} false; then : +if test "${ac_cv_pthreads_lib+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -6026,15 +6004,15 @@ if test "$PHP_AOLSERVER" != "no"; then PHP_AOLSERVER_SRC=$PHP_AOLSERVER fi if test -z "$PHP_AOLSERVER_SRC" || test ! -d $PHP_AOLSERVER_SRC/include; then - as_fn_error $? "Please specify the path to the source distribution of AOLserver using --with-aolserver-src=DIR" "$LINENO" 5 + as_fn_error "Please specify the path to the source distribution of AOLserver using --with-aolserver-src=DIR" "$LINENO" 5 fi if test ! -d $PHP_AOLSERVER/bin ; then - as_fn_error $? "Please specify the path to the root of AOLserver using --with-aolserver=DIR" "$LINENO" 5 + as_fn_error "Please specify the path to the root of AOLserver using --with-aolserver=DIR" "$LINENO" 5 fi enable_maintainer_zts=yes if test "$pthreads_working" != "yes"; then - as_fn_error $? "ZTS currently requires working POSIX threads. We were unable to verify that your system supports Pthreads." "$LINENO" 5 + as_fn_error "ZTS currently requires working POSIX threads. We were unable to verify that your system supports Pthreads." "$LINENO" 5 fi @@ -6075,7 +6053,7 @@ $as_echo "#define HAVE_AOLSERVER 1" >>confdefs.h if test "shared" = "program"; then PHP_BINARIES="$PHP_BINARIES aolserver" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -6304,7 +6282,7 @@ $as_echo "3. 'apxs' is not in your path. Try to use --with-apxs=/path/to/apxs" { $as_echo "$as_me:${as_lineno-$LINENO}: result: The output of $APXS follows" >&5 $as_echo "The output of $APXS follows" >&6; } $APXS -q CFLAGS - as_fn_error $? "Aborting" "$LINENO" 5 + as_fn_error "Aborting" "$LINENO" 5 fi APXS_LDFLAGS="@SYBASE_LFLAGS@ @SYBASE_LIBS@ @SYBASE_CT_LFLAGS@ @SYBASE_CT_LIBS@" @@ -6325,7 +6303,7 @@ IFS="- /. APACHE_VERSION=`expr $4 \* 1000000 + $5 \* 1000 + $6` if test "$APACHE_VERSION" -ge 2000000; then - as_fn_error $? "You have enabled Apache 1.3 support while your server is Apache 2. Please use the appropiate switch --with-apxs2" "$LINENO" 5 + as_fn_error "You have enabled Apache 1.3 support while your server is Apache 2. Please use the appropiate switch --with-apxs2" "$LINENO" 5 fi for flag in $APXS_CFLAGS; do @@ -6358,7 +6336,7 @@ IFS="- /. if test "$build_type" = "program"; then PHP_BINARIES="$PHP_BINARIES apache" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -6612,7 +6590,7 @@ $as_echo "#define HAVE_APACHE 1" >>confdefs.h if test "static" = "program"; then PHP_BINARIES="$PHP_BINARIES apache" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -6779,7 +6757,7 @@ $as_echo "#define HAVE_AP_CONFIG_H 1" >>confdefs.h fi # For Apache 2.0.x elif test -f $PHP_APACHE/include/httpd.h && test -f $PHP_APACHE/srclib/apr/include/apr_general.h ; then - as_fn_error $? "Use --with-apxs2 with Apache 2.x!" "$LINENO" 5 + as_fn_error "Use --with-apxs2 with Apache 2.x!" "$LINENO" 5 # For Apache 1.3.x elif test -f $PHP_APACHE/src/main/httpd.h; then APACHE_HAS_REGEX=1 @@ -6792,7 +6770,7 @@ $as_echo "#define HAVE_AP_CONFIG_H 1" >>confdefs.h if test "static" = "program"; then PHP_BINARIES="$PHP_BINARIES apache" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -6962,7 +6940,7 @@ $as_echo "#define HAVE_AP_CONFIG_H 1" >>confdefs.h $as_echo "#define HAVE_AP_COMPAT_H 1" >>confdefs.h if test ! -f $PHP_APACHE/src/include/ap_config_auto.h; then - as_fn_error $? "Please run Apache\'s configure or src/Configure program once and try again" "$LINENO" 5 + as_fn_error "Please run Apache\'s configure or src/Configure program once and try again" "$LINENO" 5 fi elif test -f $PHP_APACHE/src/include/compat.h; then @@ -6981,7 +6959,7 @@ $as_echo "#define HAVE_OLD_COMPAT_H 1" >>confdefs.h if test "static" = "program"; then PHP_BINARIES="$PHP_BINARIES apache" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -7151,7 +7129,7 @@ $as_echo "#define HAVE_AP_CONFIG_H 1" >>confdefs.h $as_echo "#define HAVE_AP_COMPAT_H 1" >>confdefs.h if test ! -f $PHP_APACHE/src/include/ap_config_auto.h; then - as_fn_error $? "Please run Apache\'s configure or src/Configure program once and try again" "$LINENO" 5 + as_fn_error "Please run Apache\'s configure or src/Configure program once and try again" "$LINENO" 5 fi elif test -f $PHP_APACHE/src/include/compat.h; then @@ -7166,7 +7144,7 @@ $as_echo "#define HAVE_OLD_COMPAT_H 1" >>confdefs.h if test "static" = "program"; then PHP_BINARIES="$PHP_BINARIES apache" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -7336,7 +7314,7 @@ $as_echo "#define HAVE_AP_CONFIG_H 1" >>confdefs.h $as_echo "#define HAVE_AP_COMPAT_H 1" >>confdefs.h if test ! -f $PHP_APACHE/src/include/ap_config_auto.h; then - as_fn_error $? "Please run Apache\'s configure or src/Configure program once and try again" "$LINENO" 5 + as_fn_error "Please run Apache\'s configure or src/Configure program once and try again" "$LINENO" 5 fi elif test -f $PHP_APACHE/src/compat.h; then @@ -7346,7 +7324,7 @@ $as_echo "#define HAVE_OLD_COMPAT_H 1" >>confdefs.h else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } - as_fn_error $? "Invalid Apache directory - unable to find httpd.h under $PHP_APACHE" "$LINENO" 5 + as_fn_error "Invalid Apache directory - unable to find httpd.h under $PHP_APACHE" "$LINENO" 5 fi else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 @@ -7394,7 +7372,7 @@ if test "$APACHE_MODULE" = "yes"; then gcc_arg_name=ac_cv_gcc_arg_rdynamic { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC supports -rdynamic" >&5 $as_echo_n "checking whether $CC supports -rdynamic... " >&6; } -if ${ac_cv_gcc_arg_rdynamic+:} false; then : +if test "${ac_cv_gcc_arg_rdynamic+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -7437,7 +7415,7 @@ if test -n "$APACHE_INSTALL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for member fd in BUFF *" >&5 $as_echo_n "checking for member fd in BUFF *... " >&6; } -if ${ac_cv_php_fd_in_buff+:} false; then : +if test "${ac_cv_php_fd_in_buff+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -7570,7 +7548,7 @@ $as_echo "" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: The output of $APXS follows:" >&5 $as_echo "The output of $APXS follows:" >&6; } $APXS -q CFLAGS - as_fn_error $? "Aborting" "$LINENO" 5 + as_fn_error "Aborting" "$LINENO" 5 fi APXS_INCLUDEDIR=`$APXS -q INCLUDEDIR` @@ -7609,9 +7587,9 @@ IFS="- /. APACHE_VERSION=`expr $4 \* 1000000 + $5 \* 1000 + $6` if test "$APACHE_VERSION" -le 2000000; then - as_fn_error $? "You have enabled Apache 2 support while your server is Apache 1.3. Please use the appropiate switch --with-apxs (without the 2)" "$LINENO" 5 + as_fn_error "You have enabled Apache 2 support while your server is Apache 1.3. Please use the appropiate switch --with-apxs (without the 2)" "$LINENO" 5 elif test "$APACHE_VERSION" -lt 2000040; then - as_fn_error $? "Please note that Apache version >= 2.0.40 is required" "$LINENO" 5 + as_fn_error "Please note that Apache version >= 2.0.40 is required" "$LINENO" 5 fi APXS_LIBEXECDIR='$(INSTALL_ROOT)'`$APXS -q LIBEXECDIR` @@ -7635,7 +7613,7 @@ IFS="- /. if test "shared" = "program"; then PHP_BINARIES="$PHP_BINARIES apache2filter" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -7807,7 +7785,7 @@ EOF if test "bundle" = "program"; then PHP_BINARIES="$PHP_BINARIES apache2filter" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -7973,7 +7951,7 @@ EOF if test "shared" = "program"; then PHP_BINARIES="$PHP_BINARIES apache2filter" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -8135,7 +8113,7 @@ EOF if test "shared" = "program"; then PHP_BINARIES="$PHP_BINARIES apache2filter" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -8300,7 +8278,7 @@ EOF enable_maintainer_zts=yes if test "$pthreads_working" != "yes"; then - as_fn_error $? "ZTS currently requires working POSIX threads. We were unable to verify that your system supports Pthreads." "$LINENO" 5 + as_fn_error "ZTS currently requires working POSIX threads. We were unable to verify that your system supports Pthreads." "$LINENO" 5 fi fi @@ -8310,7 +8288,7 @@ EOF enable_maintainer_zts=yes if test "$pthreads_working" != "yes"; then - as_fn_error $? "ZTS currently requires working POSIX threads. We were unable to verify that your system supports Pthreads." "$LINENO" 5 + as_fn_error "ZTS currently requires working POSIX threads. We were unable to verify that your system supports Pthreads." "$LINENO" 5 fi fi @@ -8394,7 +8372,7 @@ $as_echo "" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: The output of $APXS follows:" >&5 $as_echo "The output of $APXS follows:" >&6; } $APXS -q CFLAGS - as_fn_error $? "Aborting" "$LINENO" 5 + as_fn_error "Aborting" "$LINENO" 5 fi APXS_INCLUDEDIR=`$APXS -q INCLUDEDIR` @@ -8433,9 +8411,9 @@ IFS="- /. APACHE_VERSION=`expr $4 \* 1000000 + $5 \* 1000 + $6` if test "$APACHE_VERSION" -le 2000000; then - as_fn_error $? "You have enabled Apache 2 support while your server is Apache 1.3. Please use the appropiate switch --with-apxs (without the 2)" "$LINENO" 5 + as_fn_error "You have enabled Apache 2 support while your server is Apache 1.3. Please use the appropiate switch --with-apxs (without the 2)" "$LINENO" 5 elif test "$APACHE_VERSION" -lt 2000044; then - as_fn_error $? "Please note that Apache version >= 2.0.44 is required" "$LINENO" 5 + as_fn_error "Please note that Apache version >= 2.0.44 is required" "$LINENO" 5 fi APXS_LIBEXECDIR='$(INSTALL_ROOT)'`$APXS -q LIBEXECDIR` @@ -8459,7 +8437,7 @@ IFS="- /. if test "shared" = "program"; then PHP_BINARIES="$PHP_BINARIES apache2handler" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -8631,7 +8609,7 @@ EOF if test "bundle" = "program"; then PHP_BINARIES="$PHP_BINARIES apache2handler" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -8797,7 +8775,7 @@ EOF if test "shared" = "program"; then PHP_BINARIES="$PHP_BINARIES apache2handler" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -8959,7 +8937,7 @@ EOF if test "shared" = "program"; then PHP_BINARIES="$PHP_BINARIES apache2handler" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -9124,7 +9102,7 @@ EOF enable_maintainer_zts=yes if test "$pthreads_working" != "yes"; then - as_fn_error $? "ZTS currently requires working POSIX threads. We were unable to verify that your system supports Pthreads." "$LINENO" 5 + as_fn_error "ZTS currently requires working POSIX threads. We were unable to verify that your system supports Pthreads." "$LINENO" 5 fi fi @@ -9134,7 +9112,7 @@ EOF enable_maintainer_zts=yes if test "$pthreads_working" != "yes"; then - as_fn_error $? "ZTS currently requires working POSIX threads. We were unable to verify that your system supports Pthreads." "$LINENO" 5 + as_fn_error "ZTS currently requires working POSIX threads. We were unable to verify that your system supports Pthreads." "$LINENO" 5 fi fi @@ -9217,7 +9195,7 @@ $as_echo "3. 'apxs' is not in your path. Try to use --with-apxs=/path/to/apxs" { $as_echo "$as_me:${as_lineno-$LINENO}: result: The output of $APXS follows" >&5 $as_echo "The output of $APXS follows" >&6; } $APXS -q CFLAGS - as_fn_error $? "Aborting" "$LINENO" 5 + as_fn_error "Aborting" "$LINENO" 5 fi APXS_LDFLAGS="@SYBASE_LFLAGS@ @SYBASE_LIBS@ @SYBASE_CT_LFLAGS@ @SYBASE_CT_LIBS@" @@ -9238,7 +9216,7 @@ IFS="- /. APACHE_VERSION=`expr $4 \* 1000000 + $5 \* 1000 + $6` if test "$APACHE_VERSION" -ge 2000000; then - as_fn_error $? "You have enabled Apache 1.3 support while your server is Apache 2. Please use the appropiate switch --with-apxs2" "$LINENO" 5 + as_fn_error "You have enabled Apache 1.3 support while your server is Apache 2. Please use the appropiate switch --with-apxs2" "$LINENO" 5 fi for flag in $APXS_CFLAGS; do @@ -9271,7 +9249,7 @@ IFS="- /. if test "$build_type" = "program"; then PHP_BINARIES="$PHP_BINARIES apache_hooks" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -9525,7 +9503,7 @@ $as_echo "#define HAVE_APACHE 1" >>confdefs.h if test "static" = "program"; then PHP_BINARIES="$PHP_BINARIES apache_hooks" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -9692,7 +9670,7 @@ $as_echo "#define HAVE_AP_CONFIG_H 1" >>confdefs.h fi # For Apache 2.0.x elif test -f $PHP_APACHE_HOOKS_STATIC/include/httpd.h && test -f $PHP_APACHE_HOOKS_STATIC/srclib/apr/include/apr_general.h ; then - as_fn_error $? "Use --with-apxs2 with Apache 2.x!" "$LINENO" 5 + as_fn_error "Use --with-apxs2 with Apache 2.x!" "$LINENO" 5 # For Apache 1.3.x elif test -f $PHP_APACHE_HOOKS_STATIC/src/main/httpd.h; then APACHE_HAS_REGEX=1 @@ -9705,7 +9683,7 @@ $as_echo "#define HAVE_AP_CONFIG_H 1" >>confdefs.h if test "static" = "program"; then PHP_BINARIES="$PHP_BINARIES apache_hooks" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -9875,7 +9853,7 @@ $as_echo "#define HAVE_AP_CONFIG_H 1" >>confdefs.h $as_echo "#define HAVE_AP_COMPAT_H 1" >>confdefs.h if test ! -f $PHP_APACHE_HOOKS_STATIC/src/include/ap_config_auto.h; then - as_fn_error $? "Please run Apache\'s configure or src/Configure program once and try again" "$LINENO" 5 + as_fn_error "Please run Apache\'s configure or src/Configure program once and try again" "$LINENO" 5 fi elif test -f $PHP_APACHE_HOOKS_STATIC/src/include/compat.h; then @@ -9894,7 +9872,7 @@ $as_echo "#define HAVE_OLD_COMPAT_H 1" >>confdefs.h if test "static" = "program"; then PHP_BINARIES="$PHP_BINARIES apache_hooks" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -10064,7 +10042,7 @@ $as_echo "#define HAVE_AP_CONFIG_H 1" >>confdefs.h $as_echo "#define HAVE_AP_COMPAT_H 1" >>confdefs.h if test ! -f $PHP_APACHE_HOOKS_STATIC/src/include/ap_config_auto.h; then - as_fn_error $? "Please run Apache\'s configure or src/Configure program once and try again" "$LINENO" 5 + as_fn_error "Please run Apache\'s configure or src/Configure program once and try again" "$LINENO" 5 fi elif test -f $PHP_APACHE_HOOKS_STATIC/src/include/compat.h; then @@ -10079,7 +10057,7 @@ $as_echo "#define HAVE_OLD_COMPAT_H 1" >>confdefs.h if test "static" = "program"; then PHP_BINARIES="$PHP_BINARIES apache_hooks" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -10249,7 +10227,7 @@ $as_echo "#define HAVE_AP_CONFIG_H 1" >>confdefs.h $as_echo "#define HAVE_AP_COMPAT_H 1" >>confdefs.h if test ! -f $PHP_APACHE_HOOKS_STATIC/src/include/ap_config_auto.h; then - as_fn_error $? "Please run Apache\'s configure or src/Configure program once and try again" "$LINENO" 5 + as_fn_error "Please run Apache\'s configure or src/Configure program once and try again" "$LINENO" 5 fi elif test -f $PHP_APACHE_HOOKS_STATIC/src/compat.h; then @@ -10259,7 +10237,7 @@ $as_echo "#define HAVE_OLD_COMPAT_H 1" >>confdefs.h else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } - as_fn_error $? "Invalid Apache directory - unable to find httpd.h under $PHP_APACHE_HOOKS_STATIC" "$LINENO" 5 + as_fn_error "Invalid Apache directory - unable to find httpd.h under $PHP_APACHE_HOOKS_STATIC" "$LINENO" 5 fi else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 @@ -10307,7 +10285,7 @@ if test "$APACHE_HOOKS_MODULE" = "yes"; then gcc_arg_name=ac_cv_gcc_arg_rdynamic { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC supports -rdynamic" >&5 $as_echo_n "checking whether $CC supports -rdynamic... " >&6; } -if ${ac_cv_gcc_arg_rdynamic+:} false; then : +if test "${ac_cv_gcc_arg_rdynamic+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -10350,7 +10328,7 @@ if test -n "$APACHE_HOOKS_INSTALL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for member fd in BUFF *" >&5 $as_echo_n "checking for member fd in BUFF *... " >&6; } -if ${ac_cv_php_fd_in_buff+:} false; then : +if test "${ac_cv_php_fd_in_buff+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -10456,13 +10434,13 @@ if test "$PHP_CAUDIUM" != "no"; then elif test -f $PHP_CAUDIUM/bin/pike; then PIKE=$PHP_CAUDIUM/bin/pike else - as_fn_error $? "Could not find a pike in $PHP_CAUDIUM/bin/" "$LINENO" 5 + as_fn_error "Could not find a pike in $PHP_CAUDIUM/bin/" "$LINENO" 5 fi if $PIKE -e 'float v; int rel;sscanf(version(), "Pike v%f release %d", v, rel);v += rel/10000.0; if(v < 7.0268) exit(1); exit(0);'; then PIKE_MODULE_DIR=`$PIKE --show-paths 2>&1| grep '^Module' | sed -e 's/.*: //'` PIKE_INCLUDE_DIR=`echo $PIKE_MODULE_DIR | sed -e 's,lib/pike/modules,include/pike,' -e 's,lib/modules,include/pike,' ` if test -z "$PIKE_INCLUDE_DIR" || test -z "$PIKE_MODULE_DIR"; then - as_fn_error $? "Failed to figure out Pike module and include directories" "$LINENO" 5 + as_fn_error "Failed to figure out Pike module and include directories" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -10577,7 +10555,7 @@ $as_echo "version mismatch" >&6; } $as_echo "not found" >&6; } fi else - as_fn_error $? "Caudium PHP5 requires Pike 7.0 or newer" "$LINENO" 5 + as_fn_error "Caudium PHP5 requires Pike 7.0 or newer" "$LINENO" 5 fi PIKE_VERSION=`$PIKE -e 'string v; int rel;sscanf(version(), "Pike v%s release %d", v, rel); write(v+"."+rel);'` @@ -10587,7 +10565,7 @@ $as_echo "#define HAVE_CAUDIUM 1" >>confdefs.h if test "shared" = "program"; then PHP_BINARIES="$PHP_BINARIES caudium" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -10749,7 +10727,7 @@ EOF enable_maintainer_zts=yes if test "$pthreads_working" != "yes"; then - as_fn_error $? "ZTS currently requires working POSIX threads. We were unable to verify that your system supports Pthreads." "$LINENO" 5 + as_fn_error "ZTS currently requires working POSIX threads. We were unable to verify that your system supports Pthreads." "$LINENO" 5 fi fi @@ -10795,7 +10773,7 @@ if test "$PHP_CLI" != "no"; then if test "program" = "program"; then PHP_BINARIES="$PHP_BINARIES cli" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -10952,7 +10930,7 @@ $as_echo "$ext_output" >&6; } if test "$PHP_CONTINUITY" != "no"; then if test ! -d $PHP_CONTINUITY; then - as_fn_error $? "Please specify the path to the root of your Continuity server using --with-continuity=DIR" "$LINENO" 5 + as_fn_error "Please specify the path to the root of your Continuity server using --with-continuity=DIR" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Continuity include files" >&5 $as_echo_n "checking for Continuity include files... " >&6; } @@ -10961,14 +10939,14 @@ $as_echo_n "checking for Continuity include files... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: Continuity Binary Distribution" >&5 $as_echo "Continuity Binary Distribution" >&6; } else - as_fn_error $? "Cannot find your CAPI include files in either DIR/src or DIR/include" "$LINENO" 5 + as_fn_error "Cannot find your CAPI include files in either DIR/src or DIR/include" "$LINENO" 5 fi if test "shared" = "program"; then PHP_BINARIES="$PHP_BINARIES continuity" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -11157,7 +11135,7 @@ EOF enable_maintainer_zts=yes if test "$pthreads_working" != "yes"; then - as_fn_error $? "ZTS currently requires working POSIX threads. We were unable to verify that your system supports Pthreads." "$LINENO" 5 + as_fn_error "ZTS currently requires working POSIX threads. We were unable to verify that your system supports Pthreads." "$LINENO" 5 fi @@ -11211,7 +11189,7 @@ if test "$PHP_EMBED" != "no"; then if test "$PHP_EMBED_TYPE" = "program"; then PHP_BINARIES="$PHP_BINARIES embed" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -11455,7 +11433,8 @@ $as_echo "$PHP_FPM" >&6; } do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test \"x\$"$as_ac_var"\" = x"yes"; then : +eval as_val=\$$as_ac_var + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF @@ -11466,7 +11445,7 @@ done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing socket" >&5 $as_echo_n "checking for library containing socket... " >&6; } -if ${ac_cv_search_socket+:} false; then : +if test "${ac_cv_search_socket+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS @@ -11500,11 +11479,11 @@ for ac_lib in '' socket; do fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext - if ${ac_cv_search_socket+:} false; then : + if test "${ac_cv_search_socket+set}" = set; then : break fi done -if ${ac_cv_search_socket+:} false; then : +if test "${ac_cv_search_socket+set}" = set; then : else ac_cv_search_socket=no @@ -11522,7 +11501,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing inet_addr" >&5 $as_echo_n "checking for library containing inet_addr... " >&6; } -if ${ac_cv_search_inet_addr+:} false; then : +if test "${ac_cv_search_inet_addr+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS @@ -11556,11 +11535,11 @@ for ac_lib in '' nsl; do fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext - if ${ac_cv_search_inet_addr+:} false; then : + if test "${ac_cv_search_inet_addr+set}" = set; then : break fi done -if ${ac_cv_search_inet_addr+:} false; then : +if test "${ac_cv_search_inet_addr+set}" = set; then : else ac_cv_search_inet_addr=no @@ -11581,7 +11560,8 @@ fi do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : +eval as_val=\$$as_ac_Header + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF @@ -11594,7 +11574,8 @@ done do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : +eval as_val=\$$as_ac_Header + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF @@ -11607,7 +11588,8 @@ done do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : +eval as_val=\$$as_ac_Header + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF @@ -11730,8 +11712,8 @@ $as_echo_n "checking for clock_get_time... " >&6; } if test "$cross_compiling" = yes; then : { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "cannot run test program while cross compiling -See \`config.log' for more details" "$LINENO" 5; } +as_fn_error "cannot run test program while cross compiling +See \`config.log' for more details." "$LINENO" 5; } else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @@ -11822,8 +11804,8 @@ $as_echo_n "checking whether ptrace works... " >&6; } if test "$cross_compiling" = yes; then : { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "cannot run test program while cross compiling -See \`config.log' for more details" "$LINENO" 5; } +as_fn_error "cannot run test program while cross compiling +See \`config.log' for more details." "$LINENO" 5; } else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @@ -11980,8 +11962,8 @@ $as_echo_n "checking for proc mem file... " >&6; } if test "$cross_compiling" = yes; then : { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "cannot run test program while cross compiling -See \`config.log' for more details" "$LINENO" 5; } +as_fn_error "cannot run test program while cross compiling +See \`config.log' for more details." "$LINENO" 5; } else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @@ -12658,7 +12640,7 @@ _ACEOF if test "program" = "program"; then PHP_BINARIES="$PHP_BINARIES fpm" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -12805,11 +12787,11 @@ if test "$PHP_ISAPI" != "no"; then else ZEUSPATH=$PHP_ISAPI fi - test -f "$ZEUSPATH/web/include/httpext.h" || as_fn_error $? "Unable to find httpext.h in $ZEUSPATH/web/include" "$LINENO" 5 + test -f "$ZEUSPATH/web/include/httpext.h" || as_fn_error "Unable to find httpext.h in $ZEUSPATH/web/include" "$LINENO" 5 enable_maintainer_zts=yes if test "$pthreads_working" != "yes"; then - as_fn_error $? "ZTS currently requires working POSIX threads. We were unable to verify that your system supports Pthreads." "$LINENO" 5 + as_fn_error "ZTS currently requires working POSIX threads. We were unable to verify that your system supports Pthreads." "$LINENO" 5 fi @@ -12850,7 +12832,7 @@ $as_echo "#define WITH_ZEUS 1" >>confdefs.h if test "shared" = "program"; then PHP_BINARIES="$PHP_BINARIES isapi" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -13068,7 +13050,7 @@ if test "$PHP_LITESPEED" != "no"; then if test "program" = "program"; then PHP_BINARIES="$PHP_BINARIES litespeed" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -13216,7 +13198,7 @@ if test "$PHP_MILTER" != "no"; then if test -f /usr/lib/libmilter/libmilter.a ; then MILTERPATH=/usr/lib/libmilter else - as_fn_error $? "Unable to find libmilter.a" "$LINENO" 5 + as_fn_error "Unable to find libmilter.a" "$LINENO" 5 fi fi else @@ -13227,7 +13209,7 @@ if test "$PHP_MILTER" != "no"; then enable_maintainer_zts=yes if test "$pthreads_working" != "yes"; then - as_fn_error $? "ZTS currently requires working POSIX threads. We were unable to verify that your system supports Pthreads." "$LINENO" 5 + as_fn_error "ZTS currently requires working POSIX threads. We were unable to verify that your system supports Pthreads." "$LINENO" 5 fi @@ -13240,7 +13222,7 @@ if test "$PHP_MILTER" != "no"; then if test "program" = "program"; then PHP_BINARIES="$PHP_BINARIES milter" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -13416,7 +13398,7 @@ $as_echo "$ext_output" >&6; } if test "$PHP_NSAPI" != "no"; then if test ! -d $PHP_NSAPI/bin ; then - as_fn_error $? "Please specify the path to the root of your Netscape/iPlanet/Sun Webserver using --with-nsapi=DIR" "$LINENO" 5 + as_fn_error "Please specify the path to the root of your Netscape/iPlanet/Sun Webserver using --with-nsapi=DIR" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for NSAPI include files" >&5 $as_echo_n "checking for NSAPI include files... " >&6; } @@ -13428,7 +13410,8 @@ $as_echo "Netscape 3.x / Sun 7.x style" >&6; } do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : +eval as_val=\$$as_ac_Header + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF @@ -13447,7 +13430,8 @@ $as_echo "iPlanet 4.x / Sun 6.x style" >&6; } do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : +eval as_val=\$$as_ac_Header + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF @@ -13459,7 +13443,7 @@ done NSAPI_INCLUDE="$NSAPI_INCLUDE -I$NSAPI_INC_DIR" fi if test -z "$NSAPI_INCLUDE"; then - as_fn_error $? "Please check you have nsapi.h in either $PHP_NSAPI/include or $PHP_NSAPI/plugins/include" "$LINENO" 5 + as_fn_error "Please check you have nsapi.h in either $PHP_NSAPI/include or $PHP_NSAPI/plugins/include" "$LINENO" 5 fi @@ -13505,7 +13489,7 @@ done enable_maintainer_zts=yes if test "$pthreads_working" != "yes"; then - as_fn_error $? "ZTS currently requires working POSIX threads. We were unable to verify that your system supports Pthreads." "$LINENO" 5 + as_fn_error "ZTS currently requires working POSIX threads. We were unable to verify that your system supports Pthreads." "$LINENO" 5 fi @@ -13515,7 +13499,7 @@ $as_echo "#define HAVE_NSAPI 1" >>confdefs.h if test "shared" = "program"; then PHP_BINARIES="$PHP_BINARIES nsapi" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -13702,12 +13686,12 @@ $as_echo "$ext_output" >&6; } if test "$PHP_PHTTPD" != "no"; then if test ! -d $PHP_PHTTPD ; then - as_fn_error $? "You did not specify a directory" "$LINENO" 5 + as_fn_error "You did not specify a directory" "$LINENO" 5 fi enable_maintainer_zts=yes if test "$pthreads_working" != "yes"; then - as_fn_error $? "ZTS currently requires working POSIX threads. We were unable to verify that your system supports Pthreads." "$LINENO" 5 + as_fn_error "ZTS currently requires working POSIX threads. We were unable to verify that your system supports Pthreads." "$LINENO" 5 fi @@ -13748,7 +13732,7 @@ $as_echo "#define HAVE_PHTTPD 1" >>confdefs.h if test "shared" = "program"; then PHP_BINARIES="$PHP_BINARIES phttpd" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -13938,11 +13922,11 @@ if test "$PHP_PI3WEB" != "no"; then else PI3PATH=$PHP_PI3WEB fi - test -f "$PI3PATH/PiAPI/PiAPI.h" || as_fn_error $? "Unable to find PiAPI.h in $PI3PATH/PiAPI" "$LINENO" 5 + test -f "$PI3PATH/PiAPI/PiAPI.h" || as_fn_error "Unable to find PiAPI.h in $PI3PATH/PiAPI" "$LINENO" 5 enable_maintainer_zts=yes if test "$pthreads_working" != "yes"; then - as_fn_error $? "ZTS currently requires working POSIX threads. We were unable to verify that your system supports Pthreads." "$LINENO" 5 + as_fn_error "ZTS currently requires working POSIX threads. We were unable to verify that your system supports Pthreads." "$LINENO" 5 fi @@ -14076,7 +14060,7 @@ $as_echo "#define WITH_PI3WEB 1" >>confdefs.h if test "shared" = "program"; then PHP_BINARIES="$PHP_BINARIES pi3web" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -14286,24 +14270,24 @@ RESULT= $as_echo_n "checking for Roxen/Pike support... " >&6; } if test "$PHP_ROXEN" != "no"; then if test ! -d $PHP_ROXEN ; then - as_fn_error $? "You did not specify a directory" "$LINENO" 5 + as_fn_error "You did not specify a directory" "$LINENO" 5 fi if test -f $PHP_ROXEN/bin/roxen; then PIKE=$PHP_ROXEN/bin/roxen elif test -f $PHP_ROXEN/bin/pike; then PIKE=$PHP_ROXEN/bin/pike else - as_fn_error $? "Could not find a pike in $PHP_ROXEN/bin/" "$LINENO" 5 + as_fn_error "Could not find a pike in $PHP_ROXEN/bin/" "$LINENO" 5 fi if $PIKE -e 'float v; catch(v = __VERSION__ + (__BUILD__/10000.0)); if(v < 0.7079) exit(1); exit(0);'; then PIKE_MODULE_DIR=`$PIKE --show-paths 2>&1| grep '^Module' | sed -e 's/.*: //'` PIKE_INCLUDE_DIR=`echo $PIKE_MODULE_DIR | sed -e 's,lib/pike/modules,include/pike,' -e 's,lib/modules,include/pike,'` if test -z "$PIKE_INCLUDE_DIR" || test -z "$PIKE_MODULE_DIR"; then - as_fn_error $? "Failed to figure out Pike module and include directories" "$LINENO" 5 + as_fn_error "Failed to figure out Pike module and include directories" "$LINENO" 5 fi else - as_fn_error $? "Roxen/PHP requires Pike 0.7.79 or newer" "$LINENO" 5 + as_fn_error "Roxen/PHP requires Pike 0.7.79 or newer" "$LINENO" 5 fi @@ -14344,7 +14328,7 @@ $as_echo "#define HAVE_ROXEN 1" >>confdefs.h if test "shared" = "program"; then PHP_BINARIES="$PHP_BINARIES roxen" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -14510,7 +14494,7 @@ EOF enable_maintainer_zts=yes if test "$pthreads_working" != "yes"; then - as_fn_error $? "ZTS currently requires working POSIX threads. We were unable to verify that your system supports Pthreads." "$LINENO" 5 + as_fn_error "ZTS currently requires working POSIX threads. We were unable to verify that your system supports Pthreads." "$LINENO" 5 fi @@ -14573,7 +14557,7 @@ $as_echo "thttpd directory does not exist ($PHP_THTTPD)" >&6; } elif grep Premium $PHP_THTTPD/version.h >/dev/null; then patch= else - as_fn_error $? "This version only supports thttpd-2.21b and Premium thttpd" "$LINENO" 5 + as_fn_error "This version only supports thttpd-2.21b and Premium thttpd" "$LINENO" 5 fi if test -n "$GCC"; then @@ -14581,7 +14565,7 @@ $as_echo "thttpd directory does not exist ($PHP_THTTPD)" >&6; } gcc_arg_name=ac_cv_gcc_arg_rdynamic { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC supports -rdynamic" >&5 $as_echo_n "checking whether $CC supports -rdynamic... " >&6; } -if ${ac_cv_gcc_arg_rdynamic+:} false; then : +if test "${ac_cv_gcc_arg_rdynamic+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -14654,7 +14638,7 @@ $as_echo "$ac_cv_gcc_arg_rdynamic" >&6; } if test "static" = "program"; then PHP_BINARIES="$PHP_BINARIES thttpd" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -14801,13 +14785,13 @@ if test "$PHP_TUX" != "no"; then for ac_header in tuxmodule.h do : ac_fn_c_check_header_mongrel "$LINENO" "tuxmodule.h" "ac_cv_header_tuxmodule_h" "$ac_includes_default" -if test "x$ac_cv_header_tuxmodule_h" = xyes; then : +if test "x$ac_cv_header_tuxmodule_h" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_TUXMODULE_H 1 _ACEOF : else - as_fn_error $? "Cannot find tuxmodule.h" "$LINENO" 5 + as_fn_error "Cannot find tuxmodule.h" "$LINENO" 5 fi done @@ -14816,7 +14800,7 @@ done if test "shared" = "program"; then PHP_BINARIES="$PHP_BINARIES tux" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -15055,7 +15039,7 @@ if test "$PHP_WEBJAMES" != "no"; then if test "static" = "program"; then PHP_BINARIES="$PHP_BINARIES webjames" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -15322,7 +15306,7 @@ $as_echo "no" >&6; } if test "program" = "program"; then PHP_BINARIES="$PHP_BINARIES cgi" elif test "$PHP_SAPI" != "none"; then - as_fn_error $? " + as_fn_error " +--------------------------------------------------------------------+ | *** ATTENTION *** | | | @@ -15459,7 +15443,7 @@ $as_echo "none" >&6; } fi if test -z "$PHP_INSTALLED_SAPIS"; then - as_fn_error $? "Nothing to build." "$LINENO" 5 + as_fn_error "Nothing to build." "$LINENO" 5 fi if test "$enable_maintainer_zts" = "yes"; then @@ -15477,7 +15461,7 @@ fi host_alias=$host fi if test -z "$host_alias"; then - as_fn_error $? "host_alias is not set. Make sure to run config.guess" "$LINENO" 5 + as_fn_error "host_alias is not set. Make sure to run config.guess" "$LINENO" 5 fi case $host_alias in *solaris*) @@ -15516,7 +15500,7 @@ $as_echo "${T_MD}Running system checks${T_ME}" >&6; } set dummy sendmail; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_PROG_SENDMAIL+:} false; then : +if test "${ac_cv_path_PROG_SENDMAIL+set}" = set; then : $as_echo_n "(cached) " >&6 else case $PROG_SENDMAIL in @@ -15561,7 +15545,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether system uses EBCDIC" >&5 $as_echo_n "checking whether system uses EBCDIC... " >&6; } -if ${ac_cv_ebcdic+:} false; then : +if test "${ac_cv_ebcdic+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -15603,7 +15587,7 @@ $as_echo "#define CHARSET_EBCDIC 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5 $as_echo_n "checking whether byte ordering is bigendian... " >&6; } -if ${ac_cv_c_bigendian_php+:} false; then : +if test "${ac_cv_c_bigendian_php+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -15650,7 +15634,7 @@ $as_echo "#define WORDS_BIGENDIAN /**/" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether writing to stdout works" >&5 $as_echo_n "checking whether writing to stdout works... " >&6; } -if ${ac_cv_write_stdout+:} false; then : +if test "${ac_cv_write_stdout+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -15748,11 +15732,11 @@ test -d /usr/ucblib && unset found ac_fn_c_check_func "$LINENO" "socket" "ac_cv_func_socket" -if test "x$ac_cv_func_socket" = xyes; then : +if test "x$ac_cv_func_socket" = x""yes; then : found=yes else ac_fn_c_check_func "$LINENO" "__socket" "ac_cv_func___socket" -if test "x$ac_cv_func___socket" = xyes; then : +if test "x$ac_cv_func___socket" = x""yes; then : found=yes else found=no @@ -15776,7 +15760,7 @@ $as_echo "#define HAVE_SOCKET 1" >>confdefs.h unset found { $as_echo "$as_me:${as_lineno-$LINENO}: checking for socket in -lsocket" >&5 $as_echo_n "checking for socket in -lsocket... " >&6; } -if ${ac_cv_lib_socket_socket+:} false; then : +if test "${ac_cv_lib_socket_socket+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -15810,13 +15794,13 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_socket" >&5 $as_echo "$ac_cv_lib_socket_socket" >&6; } -if test "x$ac_cv_lib_socket_socket" = xyes; then : +if test "x$ac_cv_lib_socket_socket" = x""yes; then : found=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __socket in -lsocket" >&5 $as_echo_n "checking for __socket in -lsocket... " >&6; } -if ${ac_cv_lib_socket___socket+:} false; then : +if test "${ac_cv_lib_socket___socket+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -15850,7 +15834,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket___socket" >&5 $as_echo "$ac_cv_lib_socket___socket" >&6; } -if test "x$ac_cv_lib_socket___socket" = xyes; then : +if test "x$ac_cv_lib_socket___socket" = x""yes; then : found=yes else found=no @@ -15916,11 +15900,11 @@ $as_echo "#define HAVE_LIBSOCKET 1" >>confdefs.h unset found ac_fn_c_check_func "$LINENO" "socketpair" "ac_cv_func_socketpair" -if test "x$ac_cv_func_socketpair" = xyes; then : +if test "x$ac_cv_func_socketpair" = x""yes; then : found=yes else ac_fn_c_check_func "$LINENO" "__socketpair" "ac_cv_func___socketpair" -if test "x$ac_cv_func___socketpair" = xyes; then : +if test "x$ac_cv_func___socketpair" = x""yes; then : found=yes else found=no @@ -15944,7 +15928,7 @@ $as_echo "#define HAVE_SOCKETPAIR 1" >>confdefs.h unset found { $as_echo "$as_me:${as_lineno-$LINENO}: checking for socketpair in -lsocket" >&5 $as_echo_n "checking for socketpair in -lsocket... " >&6; } -if ${ac_cv_lib_socket_socketpair+:} false; then : +if test "${ac_cv_lib_socket_socketpair+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -15978,13 +15962,13 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_socketpair" >&5 $as_echo "$ac_cv_lib_socket_socketpair" >&6; } -if test "x$ac_cv_lib_socket_socketpair" = xyes; then : +if test "x$ac_cv_lib_socket_socketpair" = x""yes; then : found=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __socketpair in -lsocket" >&5 $as_echo_n "checking for __socketpair in -lsocket... " >&6; } -if ${ac_cv_lib_socket___socketpair+:} false; then : +if test "${ac_cv_lib_socket___socketpair+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -16018,7 +16002,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket___socketpair" >&5 $as_echo "$ac_cv_lib_socket___socketpair" >&6; } -if test "x$ac_cv_lib_socket___socketpair" = xyes; then : +if test "x$ac_cv_lib_socket___socketpair" = x""yes; then : found=yes else found=no @@ -16084,11 +16068,11 @@ $as_echo "#define HAVE_LIBSOCKET 1" >>confdefs.h unset found ac_fn_c_check_func "$LINENO" "htonl" "ac_cv_func_htonl" -if test "x$ac_cv_func_htonl" = xyes; then : +if test "x$ac_cv_func_htonl" = x""yes; then : found=yes else ac_fn_c_check_func "$LINENO" "__htonl" "ac_cv_func___htonl" -if test "x$ac_cv_func___htonl" = xyes; then : +if test "x$ac_cv_func___htonl" = x""yes; then : found=yes else found=no @@ -16112,7 +16096,7 @@ $as_echo "#define HAVE_HTONL 1" >>confdefs.h unset found { $as_echo "$as_me:${as_lineno-$LINENO}: checking for htonl in -lsocket" >&5 $as_echo_n "checking for htonl in -lsocket... " >&6; } -if ${ac_cv_lib_socket_htonl+:} false; then : +if test "${ac_cv_lib_socket_htonl+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -16146,13 +16130,13 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_htonl" >&5 $as_echo "$ac_cv_lib_socket_htonl" >&6; } -if test "x$ac_cv_lib_socket_htonl" = xyes; then : +if test "x$ac_cv_lib_socket_htonl" = x""yes; then : found=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __htonl in -lsocket" >&5 $as_echo_n "checking for __htonl in -lsocket... " >&6; } -if ${ac_cv_lib_socket___htonl+:} false; then : +if test "${ac_cv_lib_socket___htonl+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -16186,7 +16170,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket___htonl" >&5 $as_echo "$ac_cv_lib_socket___htonl" >&6; } -if test "x$ac_cv_lib_socket___htonl" = xyes; then : +if test "x$ac_cv_lib_socket___htonl" = x""yes; then : found=yes else found=no @@ -16252,11 +16236,11 @@ $as_echo "#define HAVE_LIBSOCKET 1" >>confdefs.h unset found ac_fn_c_check_func "$LINENO" "gethostname" "ac_cv_func_gethostname" -if test "x$ac_cv_func_gethostname" = xyes; then : +if test "x$ac_cv_func_gethostname" = x""yes; then : found=yes else ac_fn_c_check_func "$LINENO" "__gethostname" "ac_cv_func___gethostname" -if test "x$ac_cv_func___gethostname" = xyes; then : +if test "x$ac_cv_func___gethostname" = x""yes; then : found=yes else found=no @@ -16280,7 +16264,7 @@ $as_echo "#define HAVE_GETHOSTNAME 1" >>confdefs.h unset found { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostname in -lnsl" >&5 $as_echo_n "checking for gethostname in -lnsl... " >&6; } -if ${ac_cv_lib_nsl_gethostname+:} false; then : +if test "${ac_cv_lib_nsl_gethostname+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -16314,13 +16298,13 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_gethostname" >&5 $as_echo "$ac_cv_lib_nsl_gethostname" >&6; } -if test "x$ac_cv_lib_nsl_gethostname" = xyes; then : +if test "x$ac_cv_lib_nsl_gethostname" = x""yes; then : found=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __gethostname in -lnsl" >&5 $as_echo_n "checking for __gethostname in -lnsl... " >&6; } -if ${ac_cv_lib_nsl___gethostname+:} false; then : +if test "${ac_cv_lib_nsl___gethostname+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -16354,7 +16338,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl___gethostname" >&5 $as_echo "$ac_cv_lib_nsl___gethostname" >&6; } -if test "x$ac_cv_lib_nsl___gethostname" = xyes; then : +if test "x$ac_cv_lib_nsl___gethostname" = x""yes; then : found=yes else found=no @@ -16420,11 +16404,11 @@ $as_echo "#define HAVE_LIBNSL 1" >>confdefs.h unset found ac_fn_c_check_func "$LINENO" "gethostbyaddr" "ac_cv_func_gethostbyaddr" -if test "x$ac_cv_func_gethostbyaddr" = xyes; then : +if test "x$ac_cv_func_gethostbyaddr" = x""yes; then : found=yes else ac_fn_c_check_func "$LINENO" "__gethostbyaddr" "ac_cv_func___gethostbyaddr" -if test "x$ac_cv_func___gethostbyaddr" = xyes; then : +if test "x$ac_cv_func___gethostbyaddr" = x""yes; then : found=yes else found=no @@ -16448,7 +16432,7 @@ $as_echo "#define HAVE_GETHOSTBYADDR 1" >>confdefs.h unset found { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyaddr in -lnsl" >&5 $as_echo_n "checking for gethostbyaddr in -lnsl... " >&6; } -if ${ac_cv_lib_nsl_gethostbyaddr+:} false; then : +if test "${ac_cv_lib_nsl_gethostbyaddr+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -16482,13 +16466,13 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_gethostbyaddr" >&5 $as_echo "$ac_cv_lib_nsl_gethostbyaddr" >&6; } -if test "x$ac_cv_lib_nsl_gethostbyaddr" = xyes; then : +if test "x$ac_cv_lib_nsl_gethostbyaddr" = x""yes; then : found=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __gethostbyaddr in -lnsl" >&5 $as_echo_n "checking for __gethostbyaddr in -lnsl... " >&6; } -if ${ac_cv_lib_nsl___gethostbyaddr+:} false; then : +if test "${ac_cv_lib_nsl___gethostbyaddr+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -16522,7 +16506,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl___gethostbyaddr" >&5 $as_echo "$ac_cv_lib_nsl___gethostbyaddr" >&6; } -if test "x$ac_cv_lib_nsl___gethostbyaddr" = xyes; then : +if test "x$ac_cv_lib_nsl___gethostbyaddr" = x""yes; then : found=yes else found=no @@ -16588,11 +16572,11 @@ $as_echo "#define HAVE_LIBNSL 1" >>confdefs.h unset found ac_fn_c_check_func "$LINENO" "yp_get_default_domain" "ac_cv_func_yp_get_default_domain" -if test "x$ac_cv_func_yp_get_default_domain" = xyes; then : +if test "x$ac_cv_func_yp_get_default_domain" = x""yes; then : found=yes else ac_fn_c_check_func "$LINENO" "__yp_get_default_domain" "ac_cv_func___yp_get_default_domain" -if test "x$ac_cv_func___yp_get_default_domain" = xyes; then : +if test "x$ac_cv_func___yp_get_default_domain" = x""yes; then : found=yes else found=no @@ -16616,7 +16600,7 @@ $as_echo "#define HAVE_YP_GET_DEFAULT_DOMAIN 1" >>confdefs.h unset found { $as_echo "$as_me:${as_lineno-$LINENO}: checking for yp_get_default_domain in -lnsl" >&5 $as_echo_n "checking for yp_get_default_domain in -lnsl... " >&6; } -if ${ac_cv_lib_nsl_yp_get_default_domain+:} false; then : +if test "${ac_cv_lib_nsl_yp_get_default_domain+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -16650,13 +16634,13 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_yp_get_default_domain" >&5 $as_echo "$ac_cv_lib_nsl_yp_get_default_domain" >&6; } -if test "x$ac_cv_lib_nsl_yp_get_default_domain" = xyes; then : +if test "x$ac_cv_lib_nsl_yp_get_default_domain" = x""yes; then : found=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __yp_get_default_domain in -lnsl" >&5 $as_echo_n "checking for __yp_get_default_domain in -lnsl... " >&6; } -if ${ac_cv_lib_nsl___yp_get_default_domain+:} false; then : +if test "${ac_cv_lib_nsl___yp_get_default_domain+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -16690,7 +16674,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl___yp_get_default_domain" >&5 $as_echo "$ac_cv_lib_nsl___yp_get_default_domain" >&6; } -if test "x$ac_cv_lib_nsl___yp_get_default_domain" = xyes; then : +if test "x$ac_cv_lib_nsl___yp_get_default_domain" = x""yes; then : found=yes else found=no @@ -16757,11 +16741,11 @@ $as_echo "#define HAVE_LIBNSL 1" >>confdefs.h unset found ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" -if test "x$ac_cv_func_dlopen" = xyes; then : +if test "x$ac_cv_func_dlopen" = x""yes; then : found=yes else ac_fn_c_check_func "$LINENO" "__dlopen" "ac_cv_func___dlopen" -if test "x$ac_cv_func___dlopen" = xyes; then : +if test "x$ac_cv_func___dlopen" = x""yes; then : found=yes else found=no @@ -16785,7 +16769,7 @@ $as_echo "#define HAVE_DLOPEN 1" >>confdefs.h unset found { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } -if ${ac_cv_lib_dl_dlopen+:} false; then : +if test "${ac_cv_lib_dl_dlopen+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -16819,13 +16803,13 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } -if test "x$ac_cv_lib_dl_dlopen" = xyes; then : +if test "x$ac_cv_lib_dl_dlopen" = x""yes; then : found=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __dlopen in -ldl" >&5 $as_echo_n "checking for __dlopen in -ldl... " >&6; } -if ${ac_cv_lib_dl___dlopen+:} false; then : +if test "${ac_cv_lib_dl___dlopen+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -16859,7 +16843,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl___dlopen" >&5 $as_echo "$ac_cv_lib_dl___dlopen" >&6; } -if test "x$ac_cv_lib_dl___dlopen" = xyes; then : +if test "x$ac_cv_lib_dl___dlopen" = x""yes; then : found=yes else found=no @@ -16926,7 +16910,7 @@ $as_echo "#define HAVE_LIBDL 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sin in -lm" >&5 $as_echo_n "checking for sin in -lm... " >&6; } -if ${ac_cv_lib_m_sin+:} false; then : +if test "${ac_cv_lib_m_sin+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -16960,7 +16944,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sin" >&5 $as_echo "$ac_cv_lib_m_sin" >&6; } -if test "x$ac_cv_lib_m_sin" = xyes; then : +if test "x$ac_cv_lib_m_sin" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBM 1 _ACEOF @@ -16976,11 +16960,11 @@ fi unset found ac_fn_c_check_func "$LINENO" "inet_aton" "ac_cv_func_inet_aton" -if test "x$ac_cv_func_inet_aton" = xyes; then : +if test "x$ac_cv_func_inet_aton" = x""yes; then : found=yes else ac_fn_c_check_func "$LINENO" "__inet_aton" "ac_cv_func___inet_aton" -if test "x$ac_cv_func___inet_aton" = xyes; then : +if test "x$ac_cv_func___inet_aton" = x""yes; then : found=yes else found=no @@ -17004,7 +16988,7 @@ $as_echo "#define HAVE_INET_ATON 1" >>confdefs.h unset found { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inet_aton in -lresolv" >&5 $as_echo_n "checking for inet_aton in -lresolv... " >&6; } -if ${ac_cv_lib_resolv_inet_aton+:} false; then : +if test "${ac_cv_lib_resolv_inet_aton+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -17038,13 +17022,13 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_resolv_inet_aton" >&5 $as_echo "$ac_cv_lib_resolv_inet_aton" >&6; } -if test "x$ac_cv_lib_resolv_inet_aton" = xyes; then : +if test "x$ac_cv_lib_resolv_inet_aton" = x""yes; then : found=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __inet_aton in -lresolv" >&5 $as_echo_n "checking for __inet_aton in -lresolv... " >&6; } -if ${ac_cv_lib_resolv___inet_aton+:} false; then : +if test "${ac_cv_lib_resolv___inet_aton+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -17078,7 +17062,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_resolv___inet_aton" >&5 $as_echo "$ac_cv_lib_resolv___inet_aton" >&6; } -if test "x$ac_cv_lib_resolv___inet_aton" = xyes; then : +if test "x$ac_cv_lib_resolv___inet_aton" = x""yes; then : found=yes else found=no @@ -17136,7 +17120,7 @@ $as_echo "#define HAVE_LIBRESOLV 1" >>confdefs.h unset found { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inet_aton in -lbind" >&5 $as_echo_n "checking for inet_aton in -lbind... " >&6; } -if ${ac_cv_lib_bind_inet_aton+:} false; then : +if test "${ac_cv_lib_bind_inet_aton+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -17170,13 +17154,13 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bind_inet_aton" >&5 $as_echo "$ac_cv_lib_bind_inet_aton" >&6; } -if test "x$ac_cv_lib_bind_inet_aton" = xyes; then : +if test "x$ac_cv_lib_bind_inet_aton" = x""yes; then : found=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __inet_aton in -lbind" >&5 $as_echo_n "checking for __inet_aton in -lbind... " >&6; } -if ${ac_cv_lib_bind___inet_aton+:} false; then : +if test "${ac_cv_lib_bind___inet_aton+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -17210,7 +17194,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bind___inet_aton" >&5 $as_echo "$ac_cv_lib_bind___inet_aton" >&6; } -if test "x$ac_cv_lib_bind___inet_aton" = xyes; then : +if test "x$ac_cv_lib_bind___inet_aton" = x""yes; then : found=yes else found=no @@ -17277,7 +17261,7 @@ $as_echo "#define HAVE_LIBBIND 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } -if ${ac_cv_header_stdc+:} false; then : +if test "${ac_cv_header_stdc+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -17392,7 +17376,7 @@ for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do as_ac_Header=`$as_echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_hdr that defines DIR" >&5 $as_echo_n "checking for $ac_hdr that defines DIR... " >&6; } -if eval \${$as_ac_Header+:} false; then : +if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -17419,7 +17403,8 @@ fi eval ac_res=\$$as_ac_Header { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : +eval as_val=\$$as_ac_Header + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_hdr" | $as_tr_cpp` 1 _ACEOF @@ -17432,7 +17417,7 @@ done if test $ac_header_dirent = dirent.h; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing opendir" >&5 $as_echo_n "checking for library containing opendir... " >&6; } -if ${ac_cv_search_opendir+:} false; then : +if test "${ac_cv_search_opendir+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS @@ -17466,11 +17451,11 @@ for ac_lib in '' dir; do fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext - if ${ac_cv_search_opendir+:} false; then : + if test "${ac_cv_search_opendir+set}" = set; then : break fi done -if ${ac_cv_search_opendir+:} false; then : +if test "${ac_cv_search_opendir+set}" = set; then : else ac_cv_search_opendir=no @@ -17489,7 +17474,7 @@ fi else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing opendir" >&5 $as_echo_n "checking for library containing opendir... " >&6; } -if ${ac_cv_search_opendir+:} false; then : +if test "${ac_cv_search_opendir+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS @@ -17523,11 +17508,11 @@ for ac_lib in '' x; do fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext - if ${ac_cv_search_opendir+:} false; then : + if test "${ac_cv_search_opendir+set}" = set; then : break fi done -if ${ac_cv_search_opendir+:} false; then : +if test "${ac_cv_search_opendir+set}" = set; then : else ac_cv_search_opendir=no @@ -17622,7 +17607,8 @@ ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" " #endif " -if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : +eval as_val=\$$as_ac_Header + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF @@ -17634,7 +17620,7 @@ done ac_fn_c_check_func "$LINENO" "fopencookie" "ac_cv_func_fopencookie" -if test "x$ac_cv_func_fopencookie" = xyes; then : +if test "x$ac_cv_func_fopencookie" = x""yes; then : have_glibc_fopencookie=yes fi @@ -17776,7 +17762,7 @@ $as_echo "no" >&6; };; { $as_echo "$as_me:${as_lineno-$LINENO}: checking for broken libc stdio" >&5 $as_echo_n "checking for broken libc stdio... " >&6; } - if ${_cv_have_broken_glibc_fopen_append+:} false; then : + if test "${_cv_have_broken_glibc_fopen_append+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -17861,7 +17847,7 @@ $as_echo "no" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether struct tm is in sys/time.h or time.h" >&5 $as_echo_n "checking whether struct tm is in sys/time.h or time.h... " >&6; } -if ${ac_cv_struct_tm+:} false; then : +if test "${ac_cv_struct_tm+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -17898,7 +17884,7 @@ ac_fn_c_check_member "$LINENO" "struct tm" "tm_zone" "ac_cv_member_struct_tm_tm_ #include <$ac_cv_struct_tm> " -if test "x$ac_cv_member_struct_tm_tm_zone" = xyes; then : +if test "x$ac_cv_member_struct_tm_tm_zone" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STRUCT_TM_TM_ZONE 1 @@ -17914,7 +17900,7 @@ $as_echo "#define HAVE_TM_ZONE 1" >>confdefs.h else ac_fn_c_check_decl "$LINENO" "tzname" "ac_cv_have_decl_tzname" "#include <time.h> " -if test "x$ac_cv_have_decl_tzname" = xyes; then : +if test "x$ac_cv_have_decl_tzname" = x""yes; then : ac_have_decl=1 else ac_have_decl=0 @@ -17926,7 +17912,7 @@ _ACEOF { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tzname" >&5 $as_echo_n "checking for tzname... " >&6; } -if ${ac_cv_var_tzname+:} false; then : +if test "${ac_cv_var_tzname+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -18120,7 +18106,7 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tm_gmtoff in struct tm" >&5 $as_echo_n "checking for tm_gmtoff in struct tm... " >&6; } -if ${ac_cv_struct_tm_gmtoff+:} false; then : +if test "${ac_cv_struct_tm_gmtoff+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -18154,7 +18140,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct flock" >&5 $as_echo_n "checking for struct flock... " >&6; } -if ${ac_cv_struct_flock+:} false; then : +if test "${ac_cv_struct_flock+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -18194,7 +18180,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for socklen_t" >&5 $as_echo_n "checking for socklen_t... " >&6; } -if ${ac_cv_socklen_t+:} false; then : +if test "${ac_cv_socklen_t+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -18239,7 +18225,7 @@ fi # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of size_t" >&5 $as_echo_n "checking size of size_t... " >&6; } -if ${ac_cv_sizeof_size_t+:} false; then : +if test "${ac_cv_sizeof_size_t+set}" = set; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (size_t))" "ac_cv_sizeof_size_t" "$ac_includes_default"; then : @@ -18248,8 +18234,9 @@ else if test "$ac_cv_type_size_t" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "cannot compute sizeof (size_t) -See \`config.log' for more details" "$LINENO" 5; } +{ as_fn_set_status 77 +as_fn_error "cannot compute sizeof (size_t) +See \`config.log' for more details." "$LINENO" 5; }; } else ac_cv_sizeof_size_t=0 fi @@ -18272,7 +18259,7 @@ _ACEOF # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long long" >&5 $as_echo_n "checking size of long long... " >&6; } -if ${ac_cv_sizeof_long_long+:} false; then : +if test "${ac_cv_sizeof_long_long+set}" = set; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long long))" "ac_cv_sizeof_long_long" "$ac_includes_default"; then : @@ -18281,8 +18268,9 @@ else if test "$ac_cv_type_long_long" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "cannot compute sizeof (long long) -See \`config.log' for more details" "$LINENO" 5; } +{ as_fn_set_status 77 +as_fn_error "cannot compute sizeof (long long) +See \`config.log' for more details." "$LINENO" 5; }; } else ac_cv_sizeof_long_long=0 fi @@ -18305,7 +18293,7 @@ _ACEOF # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long long int" >&5 $as_echo_n "checking size of long long int... " >&6; } -if ${ac_cv_sizeof_long_long_int+:} false; then : +if test "${ac_cv_sizeof_long_long_int+set}" = set; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long long int))" "ac_cv_sizeof_long_long_int" "$ac_includes_default"; then : @@ -18314,8 +18302,9 @@ else if test "$ac_cv_type_long_long_int" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "cannot compute sizeof (long long int) -See \`config.log' for more details" "$LINENO" 5; } +{ as_fn_set_status 77 +as_fn_error "cannot compute sizeof (long long int) +See \`config.log' for more details." "$LINENO" 5; }; } else ac_cv_sizeof_long_long_int=0 fi @@ -18338,7 +18327,7 @@ _ACEOF # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long" >&5 $as_echo_n "checking size of long... " >&6; } -if ${ac_cv_sizeof_long+:} false; then : +if test "${ac_cv_sizeof_long+set}" = set; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long))" "ac_cv_sizeof_long" "$ac_includes_default"; then : @@ -18347,8 +18336,9 @@ else if test "$ac_cv_type_long" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "cannot compute sizeof (long) -See \`config.log' for more details" "$LINENO" 5; } +{ as_fn_set_status 77 +as_fn_error "cannot compute sizeof (long) +See \`config.log' for more details." "$LINENO" 5; }; } else ac_cv_sizeof_long=0 fi @@ -18371,7 +18361,7 @@ _ACEOF # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of int" >&5 $as_echo_n "checking size of int... " >&6; } -if ${ac_cv_sizeof_int+:} false; then : +if test "${ac_cv_sizeof_int+set}" = set; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (int))" "ac_cv_sizeof_int" "$ac_includes_default"; then : @@ -18380,8 +18370,9 @@ else if test "$ac_cv_type_int" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "cannot compute sizeof (int) -See \`config.log' for more details" "$LINENO" 5; } +{ as_fn_set_status 77 +as_fn_error "cannot compute sizeof (int) +See \`config.log' for more details." "$LINENO" 5; }; } else ac_cv_sizeof_int=0 fi @@ -18404,7 +18395,7 @@ _ACEOF $as_echo_n "checking size of intmax_t... " >&6; } php_cache_value=php_cv_sizeof_intmax_t - if ${php_cv_sizeof_intmax_t+:} false; then : + if test "${php_cv_sizeof_intmax_t+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -18483,7 +18474,7 @@ $as_echo "$php_cv_sizeof_intmax_t" >&6; } $as_echo_n "checking size of ssize_t... " >&6; } php_cache_value=php_cv_sizeof_ssize_t - if ${php_cv_sizeof_ssize_t+:} false; then : + if test "${php_cv_sizeof_ssize_t+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -18562,7 +18553,7 @@ $as_echo "$php_cv_sizeof_ssize_t" >&6; } $as_echo_n "checking size of ptrdiff_t... " >&6; } php_cache_value=php_cv_sizeof_ptrdiff_t - if ${php_cv_sizeof_ptrdiff_t+:} false; then : + if test "${php_cv_sizeof_ptrdiff_t+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -18638,7 +18629,7 @@ $as_echo "$php_cv_sizeof_ptrdiff_t" >&6; } ac_fn_c_check_member "$LINENO" "struct stat" "st_blksize" "ac_cv_member_struct_stat_st_blksize" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_blksize" = xyes; then : +if test "x$ac_cv_member_struct_stat_st_blksize" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 @@ -18652,7 +18643,7 @@ fi if test "`uname -s 2>/dev/null`" != "QNX"; then ac_fn_c_check_member "$LINENO" "struct stat" "st_blocks" "ac_cv_member_struct_stat_st_blocks" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_blocks" = xyes; then : +if test "x$ac_cv_member_struct_stat_st_blocks" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STRUCT_STAT_ST_BLOCKS 1 @@ -18677,7 +18668,7 @@ $as_echo "$as_me: WARNING: warnings level for cc set to 0" >&2;} WARNING_LEVEL=0 fi ac_fn_c_check_member "$LINENO" "struct stat" "st_rdev" "ac_cv_member_struct_stat_st_rdev" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_rdev" = xyes; then : +if test "x$ac_cv_member_struct_stat_st_rdev" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STRUCT_STAT_ST_RDEV 1 @@ -18691,7 +18682,7 @@ fi ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default" -if test "x$ac_cv_type_size_t" = xyes; then : +if test "x$ac_cv_type_size_t" = x""yes; then : else @@ -18703,7 +18694,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for uid_t in sys/types.h" >&5 $as_echo_n "checking for uid_t in sys/types.h... " >&6; } -if ${ac_cv_type_uid_t+:} false; then : +if test "${ac_cv_type_uid_t+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -18735,7 +18726,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct sockaddr_storage" >&5 $as_echo_n "checking for struct sockaddr_storage... " >&6; } -if ${ac_cv_sockaddr_storage+:} false; then : +if test "${ac_cv_sockaddr_storage+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -18767,7 +18758,7 @@ $as_echo "#define HAVE_SOCKADDR_STORAGE 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for field sa_len in struct sockaddr" >&5 $as_echo_n "checking for field sa_len in struct sockaddr... " >&6; } -if ${ac_cv_sockaddr_sa_len+:} false; then : +if test "${ac_cv_sockaddr_sa_len+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -18802,7 +18793,7 @@ $as_echo "#define HAVE_SOCKADDR_SA_LEN 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking for IPv6 support" >&5 $as_echo_n "checking for IPv6 support... " >&6; } -if ${ac_cv_ipv6_support+:} false; then : +if test "${ac_cv_ipv6_support+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -18833,13 +18824,13 @@ $as_echo "$ac_cv_ipv6_support" >&6; } for ac_func in vprintf do : ac_fn_c_check_func "$LINENO" "vprintf" "ac_cv_func_vprintf" -if test "x$ac_cv_func_vprintf" = xyes; then : +if test "x$ac_cv_func_vprintf" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_VPRINTF 1 _ACEOF ac_fn_c_check_func "$LINENO" "_doprnt" "ac_cv_func__doprnt" -if test "x$ac_cv_func__doprnt" = xyes; then : +if test "x$ac_cv_func__doprnt" = x""yes; then : $as_echo "#define HAVE_DOPRNT 1" >>confdefs.h @@ -18935,7 +18926,8 @@ nanosleep \ do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test \"x\$"$as_ac_var"\" = x"yes"; then : +eval as_val=\$$as_ac_var + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF @@ -18951,7 +18943,7 @@ done unset found { $as_echo "$as_me:${as_lineno-$LINENO}: checking for nanosleep in -lrt" >&5 $as_echo_n "checking for nanosleep in -lrt... " >&6; } -if ${ac_cv_lib_rt_nanosleep+:} false; then : +if test "${ac_cv_lib_rt_nanosleep+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -18985,13 +18977,13 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rt_nanosleep" >&5 $as_echo "$ac_cv_lib_rt_nanosleep" >&6; } -if test "x$ac_cv_lib_rt_nanosleep" = xyes; then : +if test "x$ac_cv_lib_rt_nanosleep" = x""yes; then : found=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __nanosleep in -lrt" >&5 $as_echo_n "checking for __nanosleep in -lrt... " >&6; } -if ${ac_cv_lib_rt___nanosleep+:} false; then : +if test "${ac_cv_lib_rt___nanosleep+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -19025,7 +19017,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rt___nanosleep" >&5 $as_echo "$ac_cv_lib_rt___nanosleep" >&6; } -if test "x$ac_cv_lib_rt___nanosleep" = xyes; then : +if test "x$ac_cv_lib_rt___nanosleep" = x""yes; then : found=yes else found=no @@ -19085,7 +19077,7 @@ $as_echo "#define HAVE_LIBRT 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking for getaddrinfo" >&5 $as_echo_n "checking for getaddrinfo... " >&6; } -if ${ac_cv_func_getaddrinfo+:} false; then : +if test "${ac_cv_func_getaddrinfo+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -19168,7 +19160,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __sync_fetch_and_add" >&5 $as_echo_n "checking for __sync_fetch_and_add... " >&6; } -if ${ac_cv_func_sync_fetch_and_add+:} false; then : +if test "${ac_cv_func_sync_fetch_and_add+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -19198,44 +19190,25 @@ $as_echo "#define HAVE_SYNC_FETCH_AND_ADD 1" >>confdefs.h fi -ac_fn_c_check_func "$LINENO" "strlcat" "ac_cv_func_strlcat" -if test "x$ac_cv_func_strlcat" = xyes; then : - $as_echo "#define HAVE_STRLCAT 1" >>confdefs.h - -else - case " $LIBOBJS " in - *" strlcat.$ac_objext "* ) ;; - *) LIBOBJS="$LIBOBJS strlcat.$ac_objext" - ;; -esac - -fi - -ac_fn_c_check_func "$LINENO" "strlcpy" "ac_cv_func_strlcpy" -if test "x$ac_cv_func_strlcpy" = xyes; then : - $as_echo "#define HAVE_STRLCPY 1" >>confdefs.h - -else - case " $LIBOBJS " in - *" strlcpy.$ac_objext "* ) ;; - *) LIBOBJS="$LIBOBJS strlcpy.$ac_objext" - ;; -esac - -fi - -ac_fn_c_check_func "$LINENO" "getopt" "ac_cv_func_getopt" -if test "x$ac_cv_func_getopt" = xyes; then : - $as_echo "#define HAVE_GETOPT 1" >>confdefs.h +for ac_func in strlcat strlcpy getopt +do : + as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" +eval as_val=\$$as_ac_var + if test "x$as_val" = x""yes; then : + cat >>confdefs.h <<_ACEOF +#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 +_ACEOF else case " $LIBOBJS " in - *" getopt.$ac_objext "* ) ;; - *) LIBOBJS="$LIBOBJS getopt.$ac_objext" + *" $ac_func.$ac_objext "* ) ;; + *) LIBOBJS="$LIBOBJS $ac_func.$ac_objext" ;; esac fi +done @@ -19246,7 +19219,8 @@ do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default " -if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : +eval as_val=\$$as_ac_Header + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF @@ -19260,7 +19234,7 @@ done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether utime accepts a null argument" >&5 $as_echo_n "checking whether utime accepts a null argument... " >&6; } -if ${ac_cv_func_utime_null+:} false; then : +if test "${ac_cv_func_utime_null+set}" = set; then : $as_echo_n "(cached) " >&6 else rm -f conftest.data; >conftest.data @@ -19311,7 +19285,7 @@ rm -f conftest.data # for constant arguments. Useless! { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working alloca.h" >&5 $as_echo_n "checking for working alloca.h... " >&6; } -if ${ac_cv_working_alloca_h+:} false; then : +if test "${ac_cv_working_alloca_h+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -19344,7 +19318,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for alloca" >&5 $as_echo_n "checking for alloca... " >&6; } -if ${ac_cv_func_alloca_works+:} false; then : +if test "${ac_cv_func_alloca_works+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -19363,7 +19337,7 @@ else #pragma alloca # else # ifndef alloca /* predefined by HP cc +Olibcalls */ -void *alloca (size_t); +char *alloca (); # endif # endif # endif @@ -19407,7 +19381,7 @@ $as_echo "#define C_ALLOCA 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether \`alloca.c' needs Cray hooks" >&5 $as_echo_n "checking whether \`alloca.c' needs Cray hooks... " >&6; } -if ${ac_cv_os_cray+:} false; then : +if test "${ac_cv_os_cray+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -19434,7 +19408,8 @@ if test $ac_cv_os_cray = yes; then for ac_func in _getb67 GETB67 getb67; do as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test \"x\$"$as_ac_var"\" = x"yes"; then : +eval as_val=\$$as_ac_var + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define CRAY_STACKSEG_END $ac_func @@ -19448,7 +19423,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking stack direction for C alloca" >&5 $as_echo_n "checking stack direction for C alloca... " >&6; } -if ${ac_cv_c_stack_direction+:} false; then : +if test "${ac_cv_c_stack_direction+set}" = set; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : @@ -19499,7 +19474,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for declared timezone" >&5 $as_echo_n "checking for declared timezone... " >&6; } -if ${ac_cv_declared_timezone+:} false; then : +if test "${ac_cv_declared_timezone+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -19544,7 +19519,7 @@ $as_echo "#define HAVE_DECLARED_TIMEZONE 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking for type of reentrant time-related functions" >&5 $as_echo_n "checking for type of reentrant time-related functions... " >&6; } -if ${ac_cv_time_r_type+:} false; then : +if test "${ac_cv_time_r_type+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -19632,7 +19607,7 @@ $as_echo "#define PHP_IRIX_TIME_R 1" >>confdefs.h ac_fn_c_check_func "$LINENO" "readdir_r" "ac_cv_func_readdir_r" -if test "x$ac_cv_func_readdir_r" = xyes; then : +if test "x$ac_cv_func_readdir_r" = x""yes; then : ac_cv_func_readdir_r=yes else ac_cv_func_readdir=no @@ -19641,7 +19616,7 @@ fi if test "$ac_cv_func_readdir_r" = "yes"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for type of readdir_r" >&5 $as_echo_n "checking for type of readdir_r... " >&6; } -if ${ac_cv_what_readdir_r+:} false; then : +if test "${ac_cv_what_readdir_r+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -19699,7 +19674,7 @@ else ac_cv_what_readdir_r=none fi -rm -f conftest.err conftest.i conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ @@ -19725,7 +19700,7 @@ $as_echo "#define HAVE_OLD_READDIR_R 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking for in_addr_t" >&5 $as_echo_n "checking for in_addr_t... " >&6; } -if ${ac_cv_type_in_addr_t+:} false; then : +if test "${ac_cv_type_in_addr_t+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -19760,7 +19735,7 @@ fi for ac_func in crypt_r do : ac_fn_c_check_func "$LINENO" "crypt_r" "ac_cv_func_crypt_r" -if test "x$ac_cv_func_crypt_r" = xyes; then : +if test "x$ac_cv_func_crypt_r" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_CRYPT_R 1 _ACEOF @@ -19774,7 +19749,7 @@ if test "x$php_crypt_r" = "x1"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking which data struct is used by crypt_r" >&5 $as_echo_n "checking which data struct is used by crypt_r... " >&6; } -if ${php_cv_crypt_r_style+:} false; then : +if test "${php_cv_crypt_r_style+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -19870,7 +19845,7 @@ $as_echo "#define CRYPT_R_GNU_SOURCE 1" >>confdefs.h fi if test "$php_cv_crypt_r_style" = "none"; then - as_fn_error $? "Unable to detect data struct used by crypt_r" "$LINENO" 5 + as_fn_error "Unable to detect data struct used by crypt_r" "$LINENO" 5 fi fi @@ -19916,7 +19891,7 @@ $as_echo "$ext_output" >&6; } if test "$PHP_GCOV" = "yes"; then if test "$GCC" != "yes"; then - as_fn_error $? "GCC is required for --enable-gcov" "$LINENO" 5 + as_fn_error "GCC is required for --enable-gcov" "$LINENO" 5 fi case `$php_shtool path $CC` in @@ -19925,7 +19900,7 @@ if test "$PHP_GCOV" = "yes"; then esac if test "$gcc_ccache" = "yes" && (test -z "$CCACHE_DISABLE" || test "$CCACHE_DISABLE" != "1"); then - as_fn_error $? "ccache must be disabled when --enable-gcov option is used. You can disable ccache by setting environment variable CCACHE_DISABLE=1." "$LINENO" 5 + as_fn_error "ccache must be disabled when --enable-gcov option is used. You can disable ccache by setting environment variable CCACHE_DISABLE=1." "$LINENO" 5 fi ltp_version_list="1.5 1.6 1.7" @@ -19934,7 +19909,7 @@ if test "$PHP_GCOV" = "yes"; then set dummy lcov; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_LTP+:} false; then : +if test "${ac_cv_prog_LTP+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$LTP"; then @@ -19971,7 +19946,7 @@ fi set dummy genhtml; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_LTP_GENHTML+:} false; then : +if test "${ac_cv_prog_LTP_GENHTML+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$LTP_GENHTML"; then @@ -20014,7 +19989,7 @@ fi if test "$LTP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ltp version" >&5 $as_echo_n "checking for ltp version... " >&6; } -if ${php_cv_ltp_version+:} false; then : +if test "${php_cv_ltp_version+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -20031,19 +20006,19 @@ fi $as_echo "$php_cv_ltp_version" >&6; } else ltp_msg="To enable code coverage reporting you must have one of the following LTP versions installed: $ltp_version_list" - as_fn_error $? "$ltp_msg" "$LINENO" 5 + as_fn_error "$ltp_msg" "$LINENO" 5 fi case $php_cv_ltp_version in ""|invalid) ltp_msg="You must have one of the following versions of LTP: $ltp_version_list (found: $ltp_version)." - as_fn_error $? "$ltp_msg" "$LINENO" 5 + as_fn_error "$ltp_msg" "$LINENO" 5 LTP="exit 0;" ;; esac if test -z "$LTP_GENHTML"; then - as_fn_error $? "Could not find genhtml from the LTP package" "$LINENO" 5 + as_fn_error "Could not find genhtml from the LTP package" "$LINENO" 5 fi @@ -20275,7 +20250,7 @@ if test "$PHP_LIBGCC" = "yes"; then if test -z "$libgcc_libpath"; then - as_fn_error $? "Cannot locate libgcc. Make sure that gcc is in your path" "$LINENO" 5 + as_fn_error "Cannot locate libgcc. Make sure that gcc is in your path" "$LINENO" 5 fi if test "$libgcc_libpath" != "/usr/$PHP_LIBDIR" && test "$libgcc_libpath" != "/usr/lib"; then @@ -20381,7 +20356,7 @@ $as_echo "$ext_output" >&6; } if test "$PHP_DMALLOC" = "yes"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dmalloc_error in -ldmalloc" >&5 $as_echo_n "checking for dmalloc_error in -ldmalloc... " >&6; } -if ${ac_cv_lib_dmalloc_dmalloc_error+:} false; then : +if test "${ac_cv_lib_dmalloc_dmalloc_error+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -20415,7 +20390,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dmalloc_dmalloc_error" >&5 $as_echo "$ac_cv_lib_dmalloc_dmalloc_error" >&6; } -if test "x$ac_cv_lib_dmalloc_dmalloc_error" = xyes; then : +if test "x$ac_cv_lib_dmalloc_dmalloc_error" = x""yes; then : @@ -20434,7 +20409,7 @@ $as_echo "#define HAVE_DMALLOC 1" >>confdefs.h else - as_fn_error $? "Problem with enabling dmalloc. Please check config.log for details." "$LINENO" 5 + as_fn_error "Problem with enabling dmalloc. Please check config.log for details." "$LINENO" 5 fi @@ -20496,7 +20471,7 @@ if test "$PHP_DTRACE" = "yes"; then for ac_header in sys/sdt.h do : ac_fn_c_check_header_mongrel "$LINENO" "sys/sdt.h" "ac_cv_header_sys_sdt_h" "$ac_includes_default" -if test "x$ac_cv_header_sys_sdt_h" = xyes; then : +if test "x$ac_cv_header_sys_sdt_h" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_SYS_SDT_H 1 _ACEOF @@ -20571,7 +20546,7 @@ $as_echo "#define HAVE_DTRACE 1" >>confdefs.h else - as_fn_error $? "Cannot find sys/sdt.h which is required for DTrace support" "$LINENO" 5 + as_fn_error "Cannot find sys/sdt.h which is required for DTrace support" "$LINENO" 5 fi @@ -20608,7 +20583,7 @@ if test "$PHP_FD_SETSIZE" != "no"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: using $PHP_FD_SETSIZE" >&5 $as_echo "using $PHP_FD_SETSIZE" >&6; } else - as_fn_error $? "Invalid value passed to --enable-fd-setsize!" "$LINENO" 5 + as_fn_error "Invalid value passed to --enable-fd-setsize!" "$LINENO" 5 fi else { $as_echo "$as_me:${as_lineno-$LINENO}: result: using system default" >&5 @@ -20651,7 +20626,7 @@ fi # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long" >&5 $as_echo_n "checking size of long... " >&6; } -if ${ac_cv_sizeof_long+:} false; then : +if test "${ac_cv_sizeof_long+set}" = set; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long))" "ac_cv_sizeof_long" "$ac_includes_default"; then : @@ -20660,8 +20635,9 @@ else if test "$ac_cv_type_long" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "cannot compute sizeof (long) -See \`config.log' for more details" "$LINENO" 5; } +{ as_fn_set_status 77 +as_fn_error "cannot compute sizeof (long) +See \`config.log' for more details." "$LINENO" 5; }; } else ac_cv_sizeof_long=0 fi @@ -20684,7 +20660,7 @@ _ACEOF # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of int" >&5 $as_echo_n "checking size of int... " >&6; } -if ${ac_cv_sizeof_int+:} false; then : +if test "${ac_cv_sizeof_int+set}" = set; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (int))" "ac_cv_sizeof_int" "$ac_includes_default"; then : @@ -20693,8 +20669,9 @@ else if test "$ac_cv_type_int" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "cannot compute sizeof (int) -See \`config.log' for more details" "$LINENO" 5; } +{ as_fn_set_status 77 +as_fn_error "cannot compute sizeof (int) +See \`config.log' for more details." "$LINENO" 5; }; } else ac_cv_sizeof_int=0 fi @@ -20714,7 +20691,7 @@ _ACEOF { $as_echo "$as_me:${as_lineno-$LINENO}: checking for int32_t" >&5 $as_echo_n "checking for int32_t... " >&6; } -if ${ac_cv_int_type_int32_t+:} false; then : +if test "${ac_cv_int_type_int32_t+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -20760,7 +20737,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for uint32_t" >&5 $as_echo_n "checking for uint32_t... " >&6; } -if ${ac_cv_int_type_uint32_t+:} false; then : +if test "${ac_cv_int_type_uint32_t+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -20814,7 +20791,8 @@ stdlib.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : +eval as_val=\$$as_ac_Header + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF @@ -20828,7 +20806,8 @@ for ac_func in strtoll atoll strftime do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test \"x\$"$as_ac_var"\" = x"yes"; then : +eval as_val=\$$as_ac_var + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF @@ -21652,7 +21631,7 @@ $as_echo "#define REGEX 0" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether field re_magic exists in struct regex_t" >&5 $as_echo_n "checking whether field re_magic exists in struct regex_t... " >&6; } -if ${ac_cv_regex_t_re_magic+:} false; then : +if test "${ac_cv_regex_t_re_magic+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -21762,7 +21741,7 @@ if test "$PHP_LIBXML" != "no"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xml2-config path" >&5 $as_echo_n "checking for xml2-config path... " >&6; } -if ${ac_cv_php_xml2_config_path+:} false; then : +if test "${ac_cv_php_xml2_config_path+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -21920,7 +21899,7 @@ $as_echo "$ac_cv_php_xml2_config_path" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether libxml build works" >&5 $as_echo_n "checking whether libxml build works... " >&6; } -if ${php_cv_libxml_build_works+:} false; then : +if test "${php_cv_libxml_build_works+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -21958,7 +21937,7 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } - as_fn_error $? "build test failed. Please check the config.log for details." "$LINENO" 5 + as_fn_error "build test failed. Please check the config.log for details." "$LINENO" 5 fi @@ -22293,10 +22272,10 @@ EOF else - as_fn_error $? "libxml2 version 2.6.11 or greater required." "$LINENO" 5 + as_fn_error "libxml2 version 2.6.11 or greater required." "$LINENO" 5 fi else - as_fn_error $? "xml2-config not found. Please check your libxml2 installation." "$LINENO" 5 + as_fn_error "xml2-config not found. Please check your libxml2 installation." "$LINENO" 5 fi @@ -22681,7 +22660,7 @@ EOF set dummy krb5-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_KRB5_CONFIG+:} false; then : +if test "${ac_cv_path_KRB5_CONFIG+set}" = set; then : $as_echo_n "(cached) " >&6 else case $KRB5_CONFIG in @@ -23047,7 +23026,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for DSA_get_default_method in -lssl" >&5 $as_echo_n "checking for DSA_get_default_method in -lssl... " >&6; } -if ${ac_cv_lib_ssl_DSA_get_default_method+:} false; then : +if test "${ac_cv_lib_ssl_DSA_get_default_method+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -23081,7 +23060,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ssl_DSA_get_default_method" >&5 $as_echo "$ac_cv_lib_ssl_DSA_get_default_method" >&6; } -if test "x$ac_cv_lib_ssl_DSA_get_default_method" = xyes; then : +if test "x$ac_cv_lib_ssl_DSA_get_default_method" = x""yes; then : $as_echo "#define HAVE_DSA_DEFAULT_METHOD 1" >>confdefs.h @@ -23089,7 +23068,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for X509_free in -lcrypto" >&5 $as_echo_n "checking for X509_free in -lcrypto... " >&6; } -if ${ac_cv_lib_crypto_X509_free+:} false; then : +if test "${ac_cv_lib_crypto_X509_free+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -23123,7 +23102,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_crypto_X509_free" >&5 $as_echo "$ac_cv_lib_crypto_X509_free" >&6; } -if test "x$ac_cv_lib_crypto_X509_free" = xyes; then : +if test "x$ac_cv_lib_crypto_X509_free" = x""yes; then : $as_echo "#define HAVE_DSA_DEFAULT_METHOD 1" >>confdefs.h @@ -23149,7 +23128,7 @@ fi set dummy pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_PKG_CONFIG+:} false; then : +if test "${ac_cv_path_PKG_CONFIG+set}" = set; then : $as_echo_n "(cached) " >&6 else case $PKG_CONFIG in @@ -23195,7 +23174,7 @@ fi OPENSSL_INCS=`$PKG_CONFIG --cflags-only-I openssl` OPENSSL_INCDIR=`$PKG_CONFIG --variable=includedir openssl` else - as_fn_error $? "OpenSSL version 0.9.6 or greater required." "$LINENO" 5 + as_fn_error "OpenSSL version 0.9.6 or greater required." "$LINENO" 5 fi if test -n "$OPENSSL_LIBS" && test -n "$OPENSSL_INCS"; then @@ -23348,11 +23327,11 @@ fi done if test -z "$OPENSSL_INCDIR"; then - as_fn_error $? "Cannot find OpenSSL's <evp.h>" "$LINENO" 5 + as_fn_error "Cannot find OpenSSL's <evp.h>" "$LINENO" 5 fi if test -z "$OPENSSL_LIBDIR"; then - as_fn_error $? "Cannot find OpenSSL's libraries" "$LINENO" 5 + as_fn_error "Cannot find OpenSSL's libraries" "$LINENO" 5 fi old_CPPFLAGS=$CPPFLAGS @@ -23376,7 +23355,7 @@ $as_echo ">= 0.9.6" >&6; } else - as_fn_error $? "OpenSSL version 0.9.6 or greater required." "$LINENO" 5 + as_fn_error "OpenSSL version 0.9.6 or greater required." "$LINENO" 5 fi rm -f conftest* @@ -23514,7 +23493,7 @@ rm -f conftest* { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CRYPTO_free in -lcrypto" >&5 $as_echo_n "checking for CRYPTO_free in -lcrypto... " >&6; } -if ${ac_cv_lib_crypto_CRYPTO_free+:} false; then : +if test "${ac_cv_lib_crypto_CRYPTO_free+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -23548,7 +23527,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_crypto_CRYPTO_free" >&5 $as_echo "$ac_cv_lib_crypto_CRYPTO_free" >&6; } -if test "x$ac_cv_lib_crypto_CRYPTO_free" = xyes; then : +if test "x$ac_cv_lib_crypto_CRYPTO_free" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -23584,7 +23563,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_crypto_CRYPTO_free - as_fn_error $? "libcrypto not found!" "$LINENO" 5 + as_fn_error "libcrypto not found!" "$LINENO" 5 fi @@ -23691,7 +23670,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SSL_CTX_set_ssl_version in -lssl" >&5 $as_echo_n "checking for SSL_CTX_set_ssl_version in -lssl... " >&6; } -if ${ac_cv_lib_ssl_SSL_CTX_set_ssl_version+:} false; then : +if test "${ac_cv_lib_ssl_SSL_CTX_set_ssl_version+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -23725,7 +23704,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ssl_SSL_CTX_set_ssl_version" >&5 $as_echo "$ac_cv_lib_ssl_SSL_CTX_set_ssl_version" >&6; } -if test "x$ac_cv_lib_ssl_SSL_CTX_set_ssl_version" = xyes; then : +if test "x$ac_cv_lib_ssl_SSL_CTX_set_ssl_version" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -23739,7 +23718,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_ssl_SSL_CTX_set_ssl_version - as_fn_error $? "libssl not found!" "$LINENO" 5 + as_fn_error "libssl not found!" "$LINENO" 5 fi @@ -23842,7 +23821,7 @@ $as_echo "#define HAVE_OPENSSL_EXT 1" >>confdefs.h else - as_fn_error $? "OpenSSL check failed. Please check config.log for more information." "$LINENO" 5 + as_fn_error "OpenSSL check failed. Please check config.log for more information." "$LINENO" 5 fi @@ -23880,7 +23859,7 @@ $as_echo_n "checking for PCRE headers location... " >&6; } done if test -z "$PCRE_INCDIR"; then - as_fn_error $? "Could not find pcre.h in $PHP_PCRE_REGEX" "$LINENO" 5 + as_fn_error "Could not find pcre.h in $PHP_PCRE_REGEX" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PCRE_INCDIR" >&5 $as_echo "$PCRE_INCDIR" >&6; } @@ -23892,7 +23871,7 @@ $as_echo_n "checking for PCRE library location... " >&6; } done if test -z "$PCRE_LIBDIR" ; then - as_fn_error $? "Could not find libpcre.(a|$SHLIB_SUFFIX_NAME) in $PHP_PCRE_REGEX" "$LINENO" 5 + as_fn_error "Could not find libpcre.(a|$SHLIB_SUFFIX_NAME) in $PHP_PCRE_REGEX" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PCRE_LIBDIR" >&5 $as_echo "$PCRE_LIBDIR" >&6; } @@ -23907,7 +23886,7 @@ $as_echo "$PCRE_LIBDIR" >&6; } fi pcre_version=$pcre_major$pcre_minor if test "$pcre_version" -lt 660; then - as_fn_error $? "The PCRE extension requires PCRE library version >= 6.6" "$LINENO" 5 + as_fn_error "The PCRE extension requires PCRE library version >= 6.6" "$LINENO" 5 fi @@ -24716,7 +24695,7 @@ $as_echo "found in $i" >&6; } if test -z "$SQLITE3_DIR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 $as_echo "not found" >&6; } - as_fn_error $? "Please reinstall the sqlite distribution from http://www.sqlite.org" "$LINENO" 5 + as_fn_error "Please reinstall the sqlite distribution from http://www.sqlite.org" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SQLite 3.3.9+" >&5 @@ -24820,7 +24799,7 @@ $as_echo_n "checking for SQLite 3.3.9+... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqlite3_prepare_v2 in -lsqlite3" >&5 $as_echo_n "checking for sqlite3_prepare_v2 in -lsqlite3... " >&6; } -if ${ac_cv_lib_sqlite3_sqlite3_prepare_v2+:} false; then : +if test "${ac_cv_lib_sqlite3_sqlite3_prepare_v2+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -24854,7 +24833,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_prepare_v2" >&5 $as_echo "$ac_cv_lib_sqlite3_sqlite3_prepare_v2" >&6; } -if test "x$ac_cv_lib_sqlite3_sqlite3_prepare_v2" = xyes; then : +if test "x$ac_cv_lib_sqlite3_sqlite3_prepare_v2" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -24999,7 +24978,7 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 $as_echo "not found" >&6; } - as_fn_error $? "Please install SQLite 3.3.9 first or check libsqlite3 is present" "$LINENO" 5 + as_fn_error "Please install SQLite 3.3.9 first or check libsqlite3 is present" "$LINENO" 5 fi @@ -25102,7 +25081,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqlite3_key in -lsqlite3" >&5 $as_echo_n "checking for sqlite3_key in -lsqlite3... " >&6; } -if ${ac_cv_lib_sqlite3_sqlite3_key+:} false; then : +if test "${ac_cv_lib_sqlite3_sqlite3_key+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -25136,7 +25115,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_key" >&5 $as_echo "$ac_cv_lib_sqlite3_sqlite3_key" >&6; } -if test "x$ac_cv_lib_sqlite3_sqlite3_key" = xyes; then : +if test "x$ac_cv_lib_sqlite3_sqlite3_key" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -25253,7 +25232,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqlite3_load_extension in -lsqlite3" >&5 $as_echo_n "checking for sqlite3_load_extension in -lsqlite3... " >&6; } -if ${ac_cv_lib_sqlite3_sqlite3_load_extension+:} false; then : +if test "${ac_cv_lib_sqlite3_sqlite3_load_extension+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -25287,7 +25266,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_load_extension" >&5 $as_echo "$ac_cv_lib_sqlite3_sqlite3_load_extension" >&6; } -if test "x$ac_cv_lib_sqlite3_sqlite3_load_extension" = xyes; then : +if test "x$ac_cv_lib_sqlite3_sqlite3_load_extension" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -26049,7 +26028,7 @@ EOF fi if test -z "$ZLIB_DIR"; then - as_fn_error $? "Cannot find libz" "$LINENO" 5 + as_fn_error "Cannot find libz" "$LINENO" 5 fi case $ZLIB_DIR in @@ -26063,7 +26042,7 @@ $as_echo_n "checking for zlib version >= 1.2.0.4... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ZLIB_VERSION" >&5 $as_echo "$ZLIB_VERSION" >&6; } if test `echo $ZLIB_VERSION | $SED -e 's/[^0-9]/ /g' | $AWK '{print $1*1000000 + $2*10000 + $3*100 + $4}'` -lt 1020004; then - as_fn_error $? "libz version greater or equal to 1.2.0.4 required" "$LINENO" 5 + as_fn_error "libz version greater or equal to 1.2.0.4 required" "$LINENO" 5 fi @@ -26165,7 +26144,7 @@ $as_echo "$ZLIB_VERSION" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gzgets in -lz" >&5 $as_echo_n "checking for gzgets in -lz... " >&6; } -if ${ac_cv_lib_z_gzgets+:} false; then : +if test "${ac_cv_lib_z_gzgets+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -26199,7 +26178,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_z_gzgets" >&5 $as_echo "$ac_cv_lib_z_gzgets" >&6; } -if test "x$ac_cv_lib_z_gzgets" = xyes; then : +if test "x$ac_cv_lib_z_gzgets" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -26215,7 +26194,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_z_gzgets - as_fn_error $? "ZLIB extension requires gzgets in zlib" "$LINENO" 5 + as_fn_error "ZLIB extension requires gzgets in zlib" "$LINENO" 5 fi @@ -26748,7 +26727,7 @@ $as_echo "found in $i" >&6; } if test -z "$BZIP_DIR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 $as_echo "not found" >&6; } - as_fn_error $? "Please reinstall the BZip2 distribution" "$LINENO" 5 + as_fn_error "Please reinstall the BZip2 distribution" "$LINENO" 5 fi @@ -26850,7 +26829,7 @@ $as_echo "not found" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for BZ2_bzerror in -lbz2" >&5 $as_echo_n "checking for BZ2_bzerror in -lbz2... " >&6; } -if ${ac_cv_lib_bz2_BZ2_bzerror+:} false; then : +if test "${ac_cv_lib_bz2_BZ2_bzerror+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -26884,7 +26863,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bz2_BZ2_bzerror" >&5 $as_echo "$ac_cv_lib_bz2_BZ2_bzerror" >&6; } -if test "x$ac_cv_lib_bz2_BZ2_bzerror" = xyes; then : +if test "x$ac_cv_lib_bz2_BZ2_bzerror" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -27028,7 +27007,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_bz2_BZ2_bzerror - as_fn_error $? "bz2 module requires libbz2 >= 1.0.0" "$LINENO" 5 + as_fn_error "bz2 module requires libbz2 >= 1.0.0" "$LINENO" 5 fi @@ -28109,7 +28088,7 @@ $as_echo "found in $i" >&6; } if test -z "$CURL_DIR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 $as_echo "not found" >&6; } - as_fn_error $? "Please reinstall the libcurl distribution - + as_fn_error "Please reinstall the libcurl distribution - easy.h should be in <curl-dir>/include/curl/" "$LINENO" 5 fi @@ -28132,7 +28111,7 @@ $as_echo_n "checking for cURL 7.10.5 or greater... " >&6; } $as_echo "$curl_version_full" >&6; } CURL_LIBS=`$CURL_CONFIG --libs` else - as_fn_error $? "cURL version 7.10.5 or later is required to compile php with cURL support" "$LINENO" 5 + as_fn_error "cURL version 7.10.5 or later is required to compile php with cURL support" "$LINENO" 5 fi @@ -28378,7 +28357,7 @@ if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then - if ${ac_cv_prog_CPP+:} false; then : + if test "${ac_cv_prog_CPP+set}" = set; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded @@ -28408,7 +28387,7 @@ else # Broken: fails on valid input. continue fi -rm -f conftest.err conftest.i conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. @@ -28424,11 +28403,11 @@ else ac_preproc_ok=: break fi -rm -f conftest.err conftest.i conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi @@ -28467,7 +28446,7 @@ else # Broken: fails on valid input. continue fi -rm -f conftest.err conftest.i conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. @@ -28483,18 +28462,18 @@ else ac_preproc_ok=: break fi -rm -f conftest.err conftest.i conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "C preprocessor \"$CPP\" fails sanity check -See \`config.log' for more details" "$LINENO" 5; } +as_fn_error "C preprocessor \"$CPP\" fails sanity check +See \`config.log' for more details." "$LINENO" 5; } fi ac_ext=c @@ -28537,7 +28516,7 @@ $as_echo "yes" >&6; } for ac_header in openssl/crypto.h do : ac_fn_c_check_header_mongrel "$LINENO" "openssl/crypto.h" "ac_cv_header_openssl_crypto_h" "$ac_includes_default" -if test "x$ac_cv_header_openssl_crypto_h" = xyes; then : +if test "x$ac_cv_header_openssl_crypto_h" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_OPENSSL_CRYPTO_H 1 _ACEOF @@ -28594,7 +28573,7 @@ if ac_fn_c_try_run "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } ac_fn_c_check_header_mongrel "$LINENO" "gcrypt.h" "ac_cv_header_gcrypt_h" "$ac_includes_default" -if test "x$ac_cv_header_gcrypt_h" = xyes; then : +if test "x$ac_cv_header_gcrypt_h" = x""yes; then : $as_echo "#define HAVE_CURL_GNUTLS 1" >>confdefs.h @@ -28720,7 +28699,7 @@ $as_echo "no" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for curl_easy_perform in -lcurl" >&5 $as_echo_n "checking for curl_easy_perform in -lcurl... " >&6; } -if ${ac_cv_lib_curl_curl_easy_perform+:} false; then : +if test "${ac_cv_lib_curl_curl_easy_perform+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -28754,7 +28733,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curl_curl_easy_perform" >&5 $as_echo "$ac_cv_lib_curl_curl_easy_perform" >&6; } -if test "x$ac_cv_lib_curl_curl_easy_perform" = xyes; then : +if test "x$ac_cv_lib_curl_curl_easy_perform" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -28770,7 +28749,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_curl_curl_easy_perform - as_fn_error $? "There is something wrong. Please check config.log for more information." "$LINENO" 5 + as_fn_error "There is something wrong. Please check config.log for more information." "$LINENO" 5 fi @@ -28875,7 +28854,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for curl_version_info in -lcurl" >&5 $as_echo_n "checking for curl_version_info in -lcurl... " >&6; } -if ${ac_cv_lib_curl_curl_version_info+:} false; then : +if test "${ac_cv_lib_curl_curl_version_info+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -28909,7 +28888,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curl_curl_version_info" >&5 $as_echo "$ac_cv_lib_curl_curl_version_info" >&6; } -if test "x$ac_cv_lib_curl_curl_version_info" = xyes; then : +if test "x$ac_cv_lib_curl_curl_version_info" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -29028,7 +29007,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for curl_easy_strerror in -lcurl" >&5 $as_echo_n "checking for curl_easy_strerror in -lcurl... " >&6; } -if ${ac_cv_lib_curl_curl_easy_strerror+:} false; then : +if test "${ac_cv_lib_curl_curl_easy_strerror+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -29062,7 +29041,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curl_curl_easy_strerror" >&5 $as_echo "$ac_cv_lib_curl_curl_easy_strerror" >&6; } -if test "x$ac_cv_lib_curl_curl_easy_strerror" = xyes; then : +if test "x$ac_cv_lib_curl_curl_easy_strerror" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -29181,7 +29160,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for curl_multi_strerror in -lcurl" >&5 $as_echo_n "checking for curl_multi_strerror in -lcurl... " >&6; } -if ${ac_cv_lib_curl_curl_multi_strerror+:} false; then : +if test "${ac_cv_lib_curl_curl_multi_strerror+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -29215,7 +29194,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curl_curl_multi_strerror" >&5 $as_echo "$ac_cv_lib_curl_curl_multi_strerror" >&6; } -if test "x$ac_cv_lib_curl_curl_multi_strerror" = xyes; then : +if test "x$ac_cv_lib_curl_curl_multi_strerror" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -29909,7 +29888,7 @@ if test "$PHP_QDBM" != "no"; then as_ac_Lib=`$as_echo "ac_cv_lib_$LIB''_dpopen" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dpopen in -l$LIB" >&5 $as_echo_n "checking for dpopen in -l$LIB... " >&6; } -if eval \${$as_ac_Lib+:} false; then : +if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -29944,7 +29923,8 @@ fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : +eval as_val=\$$as_ac_Lib + if test "x$as_val" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -29983,10 +29963,10 @@ fi THIS_RESULT=yes if test -z "$THIS_INCLUDE"; then - as_fn_error $? "DBA: Could not find necessary header file(s)." "$LINENO" 5 + as_fn_error "DBA: Could not find necessary header file(s)." "$LINENO" 5 fi if test -z "$THIS_LIBS"; then - as_fn_error $? "DBA: Could not find necessary library." "$LINENO" 5 + as_fn_error "DBA: Could not find necessary library." "$LINENO" 5 fi @@ -30100,7 +30080,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $THIS_FULL_NAME support" >&5 $as_echo_n "checking for $THIS_FULL_NAME support... " >&6; } if test -n ""; then - as_fn_error $? "" "$LINENO" 5 + as_fn_error "" "$LINENO" 5 fi if test "$THIS_RESULT" = "yes" || test "$THIS_RESULT" = "builtin"; then HAVE_DBA=1 @@ -30130,7 +30110,7 @@ if test "$PHP_GDBM" != "no"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $THIS_FULL_NAME support" >&5 $as_echo_n "checking for $THIS_FULL_NAME support... " >&6; } if test -n "You cannot combine --with-gdbm with --with-qdbm"; then - as_fn_error $? "You cannot combine --with-gdbm with --with-qdbm" "$LINENO" 5 + as_fn_error "You cannot combine --with-gdbm with --with-qdbm" "$LINENO" 5 fi if test "$THIS_RESULT" = "yes" || test "$THIS_RESULT" = "builtin"; then HAVE_DBA=1 @@ -30250,7 +30230,7 @@ $as_echo "no" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gdbm_open in -lgdbm" >&5 $as_echo_n "checking for gdbm_open in -lgdbm... " >&6; } -if ${ac_cv_lib_gdbm_gdbm_open+:} false; then : +if test "${ac_cv_lib_gdbm_gdbm_open+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -30284,7 +30264,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gdbm_gdbm_open" >&5 $as_echo "$ac_cv_lib_gdbm_gdbm_open" >&6; } -if test "x$ac_cv_lib_gdbm_gdbm_open" = xyes; then : +if test "x$ac_cv_lib_gdbm_gdbm_open" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -30319,10 +30299,10 @@ fi THIS_RESULT=yes if test -z "$THIS_INCLUDE"; then - as_fn_error $? "DBA: Could not find necessary header file(s)." "$LINENO" 5 + as_fn_error "DBA: Could not find necessary header file(s)." "$LINENO" 5 fi if test -z "$THIS_LIBS"; then - as_fn_error $? "DBA: Could not find necessary library." "$LINENO" 5 + as_fn_error "DBA: Could not find necessary library." "$LINENO" 5 fi @@ -30436,7 +30416,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $THIS_FULL_NAME support" >&5 $as_echo_n "checking for $THIS_FULL_NAME support... " >&6; } if test -n ""; then - as_fn_error $? "" "$LINENO" 5 + as_fn_error "" "$LINENO" 5 fi if test "$THIS_RESULT" = "yes" || test "$THIS_RESULT" = "builtin"; then HAVE_DBA=1 @@ -30567,7 +30547,7 @@ if test "$PHP_NDBM" != "no"; then as_ac_Lib=`$as_echo "ac_cv_lib_$LIB''_dbm_open" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dbm_open in -l$LIB" >&5 $as_echo_n "checking for dbm_open in -l$LIB... " >&6; } -if eval \${$as_ac_Lib+:} false; then : +if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -30602,7 +30582,8 @@ fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : +eval as_val=\$$as_ac_Lib + if test "x$as_val" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -30641,10 +30622,10 @@ fi THIS_RESULT=yes if test -z "$THIS_INCLUDE"; then - as_fn_error $? "DBA: Could not find necessary header file(s)." "$LINENO" 5 + as_fn_error "DBA: Could not find necessary header file(s)." "$LINENO" 5 fi if test -z "$THIS_LIBS"; then - as_fn_error $? "DBA: Could not find necessary library." "$LINENO" 5 + as_fn_error "DBA: Could not find necessary library." "$LINENO" 5 fi @@ -30758,7 +30739,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $THIS_FULL_NAME support" >&5 $as_echo_n "checking for $THIS_FULL_NAME support... " >&6; } if test -n ""; then - as_fn_error $? "" "$LINENO" 5 + as_fn_error "" "$LINENO" 5 fi if test "$THIS_RESULT" = "yes" || test "$THIS_RESULT" = "builtin"; then HAVE_DBA=1 @@ -30915,7 +30896,7 @@ if test "$PHP_TCADB" != "no"; then as_ac_Lib=`$as_echo "ac_cv_lib_$LIB''_tcadbopen" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tcadbopen in -l$LIB" >&5 $as_echo_n "checking for tcadbopen in -l$LIB... " >&6; } -if eval \${$as_ac_Lib+:} false; then : +if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -30950,7 +30931,8 @@ fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : +eval as_val=\$$as_ac_Lib + if test "x$as_val" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -30989,10 +30971,10 @@ fi THIS_RESULT=yes if test -z "$THIS_INCLUDE"; then - as_fn_error $? "DBA: Could not find necessary header file(s)." "$LINENO" 5 + as_fn_error "DBA: Could not find necessary header file(s)." "$LINENO" 5 fi if test -z "$THIS_LIBS"; then - as_fn_error $? "DBA: Could not find necessary library." "$LINENO" 5 + as_fn_error "DBA: Could not find necessary library." "$LINENO" 5 fi @@ -31106,7 +31088,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $THIS_FULL_NAME support" >&5 $as_echo_n "checking for $THIS_FULL_NAME support... " >&6; } if test -n ""; then - as_fn_error $? "" "$LINENO" 5 + as_fn_error "" "$LINENO" 5 fi if test "$THIS_RESULT" = "yes" || test "$THIS_RESULT" = "builtin"; then HAVE_DBA=1 @@ -31182,7 +31164,7 @@ if test "$PHP_DB4" != "no"; then done if test -z "$THIS_INCLUDE"; then - as_fn_error $? "DBA: Could not find necessary header file(s)." "$LINENO" 5 + as_fn_error "DBA: Could not find necessary header file(s)." "$LINENO" 5 fi for LIB in db-5.1 db-5.0 db-4.8 db-4.7 db-4.6 db-4.5 db-4.4 db-4.3 db-4.2 db-4.1 db-4.0 db-4 db4 db; do if test -f $THIS_PREFIX/$PHP_LIBDIR/lib$LIB.a || test -f $THIS_PREFIX/$PHP_LIBDIR/lib$LIB.$SHLIB_SUFFIX_NAME; then @@ -31245,7 +31227,7 @@ rm -f core conftest.err conftest.$ac_objext \ if test -z "$THIS_LIBS"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for DB4 major version" >&5 $as_echo_n "checking for DB4 major version... " >&6; } - as_fn_error $? "Header contains different version" "$LINENO" 5 + as_fn_error "Header contains different version" "$LINENO" 5 fi if test "4" = "4"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for DB4 minor version and patch level" >&5 @@ -31267,7 +31249,7 @@ $as_echo "ok" >&6; } else - as_fn_error $? "Version 4.1 requires patch level 25" "$LINENO" 5 + as_fn_error "Version 4.1 requires patch level 25" "$LINENO" 5 fi rm -f conftest* @@ -31293,7 +31275,7 @@ $as_echo "yes" >&6; } else - as_fn_error $? "At least version 3.3 is required" "$LINENO" 5 + as_fn_error "At least version 3.3 is required" "$LINENO" 5 fi rm -f conftest* @@ -31311,7 +31293,7 @@ _ACEOF fi else - as_fn_error $? "DBA: Could not find necessary library." "$LINENO" 5 + as_fn_error "DBA: Could not find necessary library." "$LINENO" 5 fi THIS_RESULT=yes DB4_LIBS=$THIS_LIBS @@ -31434,7 +31416,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $THIS_FULL_NAME support" >&5 $as_echo_n "checking for $THIS_FULL_NAME support... " >&6; } if test -n ""; then - as_fn_error $? "" "$LINENO" 5 + as_fn_error "" "$LINENO" 5 fi if test "$THIS_RESULT" = "yes" || test "$THIS_RESULT" = "builtin"; then HAVE_DBA=1 @@ -31464,7 +31446,7 @@ if test "$PHP_DB3" != "no"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $THIS_FULL_NAME support" >&5 $as_echo_n "checking for $THIS_FULL_NAME support... " >&6; } if test -n "You cannot combine --with-db3 with --with-db4"; then - as_fn_error $? "You cannot combine --with-db3 with --with-db4" "$LINENO" 5 + as_fn_error "You cannot combine --with-db3 with --with-db4" "$LINENO" 5 fi if test "$THIS_RESULT" = "yes" || test "$THIS_RESULT" = "builtin"; then HAVE_DBA=1 @@ -31503,7 +31485,7 @@ $as_echo "no" >&6; } done if test -z "$THIS_INCLUDE"; then - as_fn_error $? "DBA: Could not find necessary header file(s)." "$LINENO" 5 + as_fn_error "DBA: Could not find necessary header file(s)." "$LINENO" 5 fi for LIB in db-3.3 db-3.2 db-3.1 db-3.0 db-3 db3 db; do if test -f $THIS_PREFIX/$PHP_LIBDIR/lib$LIB.a || test -f $THIS_PREFIX/$PHP_LIBDIR/lib$LIB.$SHLIB_SUFFIX_NAME; then @@ -31566,7 +31548,7 @@ rm -f core conftest.err conftest.$ac_objext \ if test -z "$THIS_LIBS"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for DB3 major version" >&5 $as_echo_n "checking for DB3 major version... " >&6; } - as_fn_error $? "Header contains different version" "$LINENO" 5 + as_fn_error "Header contains different version" "$LINENO" 5 fi if test "3" = "4"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for DB4 minor version and patch level" >&5 @@ -31588,7 +31570,7 @@ $as_echo "ok" >&6; } else - as_fn_error $? "Version 4.1 requires patch level 25" "$LINENO" 5 + as_fn_error "Version 4.1 requires patch level 25" "$LINENO" 5 fi rm -f conftest* @@ -31614,7 +31596,7 @@ $as_echo "yes" >&6; } else - as_fn_error $? "At least version 3.3 is required" "$LINENO" 5 + as_fn_error "At least version 3.3 is required" "$LINENO" 5 fi rm -f conftest* @@ -31632,7 +31614,7 @@ _ACEOF fi else - as_fn_error $? "DBA: Could not find necessary library." "$LINENO" 5 + as_fn_error "DBA: Could not find necessary library." "$LINENO" 5 fi THIS_RESULT=yes DB3_LIBS=$THIS_LIBS @@ -31755,7 +31737,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $THIS_FULL_NAME support" >&5 $as_echo_n "checking for $THIS_FULL_NAME support... " >&6; } if test -n ""; then - as_fn_error $? "" "$LINENO" 5 + as_fn_error "" "$LINENO" 5 fi if test "$THIS_RESULT" = "yes" || test "$THIS_RESULT" = "builtin"; then HAVE_DBA=1 @@ -31785,7 +31767,7 @@ if test "$PHP_DB2" != "no"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $THIS_FULL_NAME support" >&5 $as_echo_n "checking for $THIS_FULL_NAME support... " >&6; } if test -n "You cannot combine --with-db2 with --with-db3 or --with-db4"; then - as_fn_error $? "You cannot combine --with-db2 with --with-db3 or --with-db4" "$LINENO" 5 + as_fn_error "You cannot combine --with-db2 with --with-db3 or --with-db4" "$LINENO" 5 fi if test "$THIS_RESULT" = "yes" || test "$THIS_RESULT" = "builtin"; then HAVE_DBA=1 @@ -31824,7 +31806,7 @@ $as_echo "no" >&6; } done if test -z "$THIS_INCLUDE"; then - as_fn_error $? "DBA: Could not find necessary header file(s)." "$LINENO" 5 + as_fn_error "DBA: Could not find necessary header file(s)." "$LINENO" 5 fi for LIB in db-2 db2 db; do if test -f $THIS_PREFIX/$PHP_LIBDIR/lib$LIB.a || test -f $THIS_PREFIX/$PHP_LIBDIR/lib$LIB.$SHLIB_SUFFIX_NAME; then @@ -31887,7 +31869,7 @@ rm -f core conftest.err conftest.$ac_objext \ if test -z "$THIS_LIBS"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for DB2 major version" >&5 $as_echo_n "checking for DB2 major version... " >&6; } - as_fn_error $? "Header contains different version" "$LINENO" 5 + as_fn_error "Header contains different version" "$LINENO" 5 fi if test "2" = "4"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for DB4 minor version and patch level" >&5 @@ -31909,7 +31891,7 @@ $as_echo "ok" >&6; } else - as_fn_error $? "Version 4.1 requires patch level 25" "$LINENO" 5 + as_fn_error "Version 4.1 requires patch level 25" "$LINENO" 5 fi rm -f conftest* @@ -31935,7 +31917,7 @@ $as_echo "yes" >&6; } else - as_fn_error $? "At least version 3.3 is required" "$LINENO" 5 + as_fn_error "At least version 3.3 is required" "$LINENO" 5 fi rm -f conftest* @@ -31953,7 +31935,7 @@ _ACEOF fi else - as_fn_error $? "DBA: Could not find necessary library." "$LINENO" 5 + as_fn_error "DBA: Could not find necessary library." "$LINENO" 5 fi THIS_RESULT=yes DB2_LIBS=$THIS_LIBS @@ -32076,7 +32058,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $THIS_FULL_NAME support" >&5 $as_echo_n "checking for $THIS_FULL_NAME support... " >&6; } if test -n ""; then - as_fn_error $? "" "$LINENO" 5 + as_fn_error "" "$LINENO" 5 fi if test "$THIS_RESULT" = "yes" || test "$THIS_RESULT" = "builtin"; then HAVE_DBA=1 @@ -32204,10 +32186,10 @@ rm -f core conftest.err conftest.$ac_objext \ THIS_RESULT=yes if test -z "$THIS_INCLUDE"; then - as_fn_error $? "DBA: Could not find necessary header file(s)." "$LINENO" 5 + as_fn_error "DBA: Could not find necessary header file(s)." "$LINENO" 5 fi if test -z "$THIS_LIBS"; then - as_fn_error $? "DBA: Could not find necessary library." "$LINENO" 5 + as_fn_error "DBA: Could not find necessary library." "$LINENO" 5 fi @@ -32321,7 +32303,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $THIS_FULL_NAME support" >&5 $as_echo_n "checking for $THIS_FULL_NAME support... " >&6; } if test -n ""; then - as_fn_error $? "" "$LINENO" 5 + as_fn_error "" "$LINENO" 5 fi if test "$THIS_RESULT" = "yes" || test "$THIS_RESULT" = "builtin"; then HAVE_DBA=1 @@ -32351,7 +32333,7 @@ if test "$PHP_DBM" != "no"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $THIS_FULL_NAME support" >&5 $as_echo_n "checking for $THIS_FULL_NAME support... " >&6; } if test -n "You cannot combine --with-dbm with --with-qdbm"; then - as_fn_error $? "You cannot combine --with-dbm with --with-qdbm" "$LINENO" 5 + as_fn_error "You cannot combine --with-dbm with --with-qdbm" "$LINENO" 5 fi if test "$THIS_RESULT" = "yes" || test "$THIS_RESULT" = "builtin"; then HAVE_DBA=1 @@ -32477,7 +32459,7 @@ $as_echo "no" >&6; } as_ac_Lib=`$as_echo "ac_cv_lib_$LIB''_dbminit" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dbminit in -l$LIB" >&5 $as_echo_n "checking for dbminit in -l$LIB... " >&6; } -if eval \${$as_ac_Lib+:} false; then : +if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -32512,7 +32494,8 @@ fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : +eval as_val=\$$as_ac_Lib + if test "x$as_val" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -32570,10 +32553,10 @@ fi THIS_RESULT=yes if test -z "$THIS_INCLUDE"; then - as_fn_error $? "DBA: Could not find necessary header file(s)." "$LINENO" 5 + as_fn_error "DBA: Could not find necessary header file(s)." "$LINENO" 5 fi if test -z "$THIS_LIBS"; then - as_fn_error $? "DBA: Could not find necessary library." "$LINENO" 5 + as_fn_error "DBA: Could not find necessary library." "$LINENO" 5 fi @@ -32687,7 +32670,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $THIS_FULL_NAME support" >&5 $as_echo_n "checking for $THIS_FULL_NAME support... " >&6; } if test -n ""; then - as_fn_error $? "" "$LINENO" 5 + as_fn_error "" "$LINENO" 5 fi if test "$THIS_RESULT" = "yes" || test "$THIS_RESULT" = "builtin"; then HAVE_DBA=1 @@ -32896,7 +32879,7 @@ elif test "$PHP_CDB" != "no"; then as_ac_Lib=`$as_echo "ac_cv_lib_$LIB''_cdb_read" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for cdb_read in -l$LIB" >&5 $as_echo_n "checking for cdb_read in -l$LIB... " >&6; } -if eval \${$as_ac_Lib+:} false; then : +if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -32931,7 +32914,8 @@ fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : +eval as_val=\$$as_ac_Lib + if test "x$as_val" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -32970,10 +32954,10 @@ fi THIS_RESULT=yes if test -z "$THIS_INCLUDE"; then - as_fn_error $? "DBA: Could not find necessary header file(s)." "$LINENO" 5 + as_fn_error "DBA: Could not find necessary header file(s)." "$LINENO" 5 fi if test -z "$THIS_LIBS"; then - as_fn_error $? "DBA: Could not find necessary library." "$LINENO" 5 + as_fn_error "DBA: Could not find necessary library." "$LINENO" 5 fi @@ -33087,7 +33071,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $THIS_FULL_NAME support" >&5 $as_echo_n "checking for $THIS_FULL_NAME support... " >&6; } if test -n ""; then - as_fn_error $? "" "$LINENO" 5 + as_fn_error "" "$LINENO" 5 fi if test "$THIS_RESULT" = "yes" || test "$THIS_RESULT" = "builtin"; then HAVE_DBA=1 @@ -33119,7 +33103,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $THIS_FULL_NAME support" >&5 $as_echo_n "checking for $THIS_FULL_NAME support... " >&6; } if test -n ""; then - as_fn_error $? "" "$LINENO" 5 + as_fn_error "" "$LINENO" 5 fi if test "$THIS_RESULT" = "yes" || test "$THIS_RESULT" = "builtin"; then HAVE_DBA=1 @@ -33151,7 +33135,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $THIS_FULL_NAME support" >&5 $as_echo_n "checking for $THIS_FULL_NAME support... " >&6; } if test -n ""; then - as_fn_error $? "" "$LINENO" 5 + as_fn_error "" "$LINENO" 5 fi if test "$THIS_RESULT" = "yes" || test "$THIS_RESULT" = "builtin"; then HAVE_DBA=1 @@ -33568,13 +33552,13 @@ fi if test "$PHP_DOM" != "no"; then if test "$PHP_LIBXML" = "no"; then - as_fn_error $? "DOM extension requires LIBXML extension, add --enable-libxml" "$LINENO" 5 + as_fn_error "DOM extension requires LIBXML extension, add --enable-libxml" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xml2-config path" >&5 $as_echo_n "checking for xml2-config path... " >&6; } -if ${ac_cv_php_xml2_config_path+:} false; then : +if test "${ac_cv_php_xml2_config_path+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -33732,7 +33716,7 @@ $as_echo "$ac_cv_php_xml2_config_path" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether libxml build works" >&5 $as_echo_n "checking whether libxml build works... " >&6; } -if ${php_cv_libxml_build_works+:} false; then : +if test "${php_cv_libxml_build_works+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -33770,7 +33754,7 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } - as_fn_error $? "build test failed. Please check the config.log for details." "$LINENO" 5 + as_fn_error "build test failed. Please check the config.log for details." "$LINENO" 5 fi @@ -34147,7 +34131,7 @@ EOF is_it_shared=$PHP_LIBXML_SHARED is_it_enabled=$PHP_LIBXML if test "$am_i_shared" = "no" && test "$is_it_shared" = "yes" ; then - as_fn_error $? " + as_fn_error " You've configured extension dom to build statically, but it depends on extension libxml, which you've configured to build shared. You either need to build dom shared or build libxml statically for the @@ -34155,7 +34139,7 @@ build to be successful. " "$LINENO" 5 fi if test "x$is_it_enabled" = "xno" && test "x" != "xtrue"; then - as_fn_error $? " + as_fn_error " You've configured extension dom, which depends on extension libxml, but you've either not enabled libxml, or have disabled it. " "$LINENO" 5 @@ -34163,10 +34147,10 @@ but you've either not enabled libxml, or have disabled it. else - as_fn_error $? "libxml2 version 2.6.11 or greater required." "$LINENO" 5 + as_fn_error "libxml2 version 2.6.11 or greater required." "$LINENO" 5 fi else - as_fn_error $? "xml2-config not found. Please check your libxml2 installation." "$LINENO" 5 + as_fn_error "xml2-config not found. Please check your libxml2 installation." "$LINENO" 5 fi @@ -34528,7 +34512,7 @@ EOF done if test -z "$ENCHANT_DIR"; then - as_fn_error $? "Cannot find enchant" "$LINENO" 5 + as_fn_error "Cannot find enchant" "$LINENO" 5 fi ENCHANT_LIBDIR=$ENCHANT_DIR/lib @@ -34764,7 +34748,7 @@ $as_echo "#define HAVE_ENCHANT 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking for enchant_broker_set_param in -lenchant" >&5 $as_echo_n "checking for enchant_broker_set_param in -lenchant... " >&6; } -if ${ac_cv_lib_enchant_enchant_broker_set_param+:} false; then : +if test "${ac_cv_lib_enchant_enchant_broker_set_param+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -34798,7 +34782,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_enchant_enchant_broker_set_param" >&5 $as_echo "$ac_cv_lib_enchant_enchant_broker_set_param" >&6; } -if test "x$ac_cv_lib_enchant_enchant_broker_set_param" = xyes; then : +if test "x$ac_cv_lib_enchant_enchant_broker_set_param" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -35524,7 +35508,8 @@ EOF do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test \"x\$"$as_ac_var"\" = x"yes"; then : +eval as_val=\$$as_ac_var + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF @@ -35981,7 +35966,7 @@ EOF is_it_shared=$PHP_PCRE_SHARED is_it_enabled=$PHP_PCRE if test "$am_i_shared" = "no" && test "$is_it_shared" = "yes" ; then - as_fn_error $? " + as_fn_error " You've configured extension filter to build statically, but it depends on extension pcre, which you've configured to build shared. You either need to build filter shared or build pcre statically for the @@ -35989,7 +35974,7 @@ build to be successful. " "$LINENO" 5 fi if test "x$is_it_enabled" = "xno" && test "x" != "xtrue"; then - as_fn_error $? " + as_fn_error " You've configured extension filter, which depends on extension pcre, but you've either not enabled pcre, or have disabled it. " "$LINENO" 5 @@ -36386,7 +36371,7 @@ EOF set dummy pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_PKG_CONFIG+:} false; then : +if test "${ac_cv_path_PKG_CONFIG+set}" = set; then : $as_echo_n "(cached) " >&6 else case $PKG_CONFIG in @@ -36432,7 +36417,7 @@ fi OPENSSL_INCS=`$PKG_CONFIG --cflags-only-I openssl` OPENSSL_INCDIR=`$PKG_CONFIG --variable=includedir openssl` else - as_fn_error $? "OpenSSL version 0.9.6 or greater required." "$LINENO" 5 + as_fn_error "OpenSSL version 0.9.6 or greater required." "$LINENO" 5 fi if test -n "$OPENSSL_LIBS" && test -n "$OPENSSL_INCS"; then @@ -36585,11 +36570,11 @@ fi done if test -z "$OPENSSL_INCDIR"; then - as_fn_error $? "Cannot find OpenSSL's <evp.h>" "$LINENO" 5 + as_fn_error "Cannot find OpenSSL's <evp.h>" "$LINENO" 5 fi if test -z "$OPENSSL_LIBDIR"; then - as_fn_error $? "Cannot find OpenSSL's libraries" "$LINENO" 5 + as_fn_error "Cannot find OpenSSL's libraries" "$LINENO" 5 fi old_CPPFLAGS=$CPPFLAGS @@ -36613,7 +36598,7 @@ $as_echo ">= 0.9.6" >&6; } else - as_fn_error $? "OpenSSL version 0.9.6 or greater required." "$LINENO" 5 + as_fn_error "OpenSSL version 0.9.6 or greater required." "$LINENO" 5 fi rm -f conftest* @@ -36751,7 +36736,7 @@ rm -f conftest* { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CRYPTO_free in -lcrypto" >&5 $as_echo_n "checking for CRYPTO_free in -lcrypto... " >&6; } -if ${ac_cv_lib_crypto_CRYPTO_free+:} false; then : +if test "${ac_cv_lib_crypto_CRYPTO_free+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -36785,7 +36770,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_crypto_CRYPTO_free" >&5 $as_echo "$ac_cv_lib_crypto_CRYPTO_free" >&6; } -if test "x$ac_cv_lib_crypto_CRYPTO_free" = xyes; then : +if test "x$ac_cv_lib_crypto_CRYPTO_free" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -36821,7 +36806,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_crypto_CRYPTO_free - as_fn_error $? "libcrypto not found!" "$LINENO" 5 + as_fn_error "libcrypto not found!" "$LINENO" 5 fi @@ -36928,7 +36913,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SSL_CTX_set_ssl_version in -lssl" >&5 $as_echo_n "checking for SSL_CTX_set_ssl_version in -lssl... " >&6; } -if ${ac_cv_lib_ssl_SSL_CTX_set_ssl_version+:} false; then : +if test "${ac_cv_lib_ssl_SSL_CTX_set_ssl_version+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -36962,7 +36947,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ssl_SSL_CTX_set_ssl_version" >&5 $as_echo "$ac_cv_lib_ssl_SSL_CTX_set_ssl_version" >&6; } -if test "x$ac_cv_lib_ssl_SSL_CTX_set_ssl_version" = xyes; then : +if test "x$ac_cv_lib_ssl_SSL_CTX_set_ssl_version" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -36976,7 +36961,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_ssl_SSL_CTX_set_ssl_version - as_fn_error $? "libssl not found!" "$LINENO" 5 + as_fn_error "libssl not found!" "$LINENO" 5 fi @@ -37388,7 +37373,8 @@ if test "$PHP_GD" = "yes"; then do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test \"x\$"$as_ac_var"\" = x"yes"; then : +eval as_val=\$$as_ac_var + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF @@ -37408,7 +37394,7 @@ done PHP_ZLIB_DIR="$PHP_ZLIB_DIR" PHP_ZLIB_INCDIR="$PHP_ZLIB_DIR/include" else - as_fn_error $? "Can't find zlib headers under \"$PHP_ZLIB_DIR\"" "$LINENO" 5 + as_fn_error "Can't find zlib headers under \"$PHP_ZLIB_DIR\"" "$LINENO" 5 fi else for i in /usr/local /usr; do @@ -37442,7 +37428,7 @@ $as_echo "#define USE_GD_IMGSTRTTF 1" >>confdefs.h done if test -z "$GD_JPEG_DIR"; then - as_fn_error $? "jpeglib.h not found." "$LINENO" 5 + as_fn_error "jpeglib.h not found." "$LINENO" 5 fi @@ -37544,7 +37530,7 @@ $as_echo "#define USE_GD_IMGSTRTTF 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking for jpeg_read_header in -ljpeg" >&5 $as_echo_n "checking for jpeg_read_header in -ljpeg... " >&6; } -if ${ac_cv_lib_jpeg_jpeg_read_header+:} false; then : +if test "${ac_cv_lib_jpeg_jpeg_read_header+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -37578,7 +37564,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_jpeg_jpeg_read_header" >&5 $as_echo "$ac_cv_lib_jpeg_jpeg_read_header" >&6; } -if test "x$ac_cv_lib_jpeg_jpeg_read_header" = xyes; then : +if test "x$ac_cv_lib_jpeg_jpeg_read_header" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -37719,7 +37705,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_jpeg_jpeg_read_header - as_fn_error $? "Problem with libjpeg.(a|so). Please check config.log for more information." "$LINENO" 5 + as_fn_error "Problem with libjpeg.(a|so). Please check config.log for more information." "$LINENO" 5 fi @@ -37737,7 +37723,7 @@ $as_echo "If configure fails try --with-jpeg-dir=<DIR>" >&6; } done if test -z "$GD_VPX_DIR"; then - as_fn_error $? "vpx_codec.h not found." "$LINENO" 5 + as_fn_error "vpx_codec.h not found." "$LINENO" 5 fi @@ -37839,7 +37825,7 @@ $as_echo "If configure fails try --with-jpeg-dir=<DIR>" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for vpx_codec_destroy in -lvpx" >&5 $as_echo_n "checking for vpx_codec_destroy in -lvpx... " >&6; } -if ${ac_cv_lib_vpx_vpx_codec_destroy+:} false; then : +if test "${ac_cv_lib_vpx_vpx_codec_destroy+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -37873,7 +37859,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_vpx_vpx_codec_destroy" >&5 $as_echo "$ac_cv_lib_vpx_vpx_codec_destroy" >&6; } -if test "x$ac_cv_lib_vpx_vpx_codec_destroy" = xyes; then : +if test "x$ac_cv_lib_vpx_vpx_codec_destroy" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -38024,7 +38010,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_vpx_vpx_codec_destroy - as_fn_error $? "Problem with libvpx.(a|so). Please check config.log for more information." "$LINENO" 5 + as_fn_error "Problem with libvpx.(a|so). Please check config.log for more information." "$LINENO" 5 fi @@ -38042,11 +38028,11 @@ $as_echo "If configure fails try --with-vpx-dir=<DIR>" >&6; } done if test -z "$GD_PNG_DIR"; then - as_fn_error $? "png.h not found." "$LINENO" 5 + as_fn_error "png.h not found." "$LINENO" 5 fi if test "$PHP_ZLIB_DIR" = "no"; then - as_fn_error $? "PNG support requires ZLIB. Use --with-zlib-dir=<DIR>" "$LINENO" 5 + as_fn_error "PNG support requires ZLIB. Use --with-zlib-dir=<DIR>" "$LINENO" 5 fi @@ -38148,7 +38134,7 @@ $as_echo "If configure fails try --with-vpx-dir=<DIR>" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for png_write_image in -lpng" >&5 $as_echo_n "checking for png_write_image in -lpng... " >&6; } -if ${ac_cv_lib_png_png_write_image+:} false; then : +if test "${ac_cv_lib_png_png_write_image+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -38182,7 +38168,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_png_png_write_image" >&5 $as_echo "$ac_cv_lib_png_png_write_image" >&6; } -if test "x$ac_cv_lib_png_png_write_image" = xyes; then : +if test "x$ac_cv_lib_png_png_write_image" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -38420,7 +38406,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_png_png_write_image - as_fn_error $? "Problem with libpng.(a|so) or libz.(a|so). Please check config.log for more information." "$LINENO" 5 + as_fn_error "Problem with libpng.(a|so) or libz.(a|so). Please check config.log for more information." "$LINENO" 5 fi @@ -38439,7 +38425,7 @@ $as_echo "If configure fails try --with-png-dir=<DIR> and --with-zlib-dir=<DIR>" done if test -z "$GD_XPM_DIR"; then - as_fn_error $? "libXpm.(a|so) not found." "$LINENO" 5 + as_fn_error "libXpm.(a|so) not found." "$LINENO" 5 fi for i in include include/X11; do @@ -38447,7 +38433,7 @@ $as_echo "If configure fails try --with-png-dir=<DIR> and --with-zlib-dir=<DIR>" done if test -z "$GD_XPM_INC"; then - as_fn_error $? "xpm.h not found." "$LINENO" 5 + as_fn_error "xpm.h not found." "$LINENO" 5 fi @@ -38549,7 +38535,7 @@ $as_echo "If configure fails try --with-png-dir=<DIR> and --with-zlib-dir=<DIR>" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XpmFreeXpmImage in -lXpm" >&5 $as_echo_n "checking for XpmFreeXpmImage in -lXpm... " >&6; } -if ${ac_cv_lib_Xpm_XpmFreeXpmImage+:} false; then : +if test "${ac_cv_lib_Xpm_XpmFreeXpmImage+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -38583,7 +38569,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xpm_XpmFreeXpmImage" >&5 $as_echo "$ac_cv_lib_Xpm_XpmFreeXpmImage" >&6; } -if test "x$ac_cv_lib_Xpm_XpmFreeXpmImage" = xyes; then : +if test "x$ac_cv_lib_Xpm_XpmFreeXpmImage" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -38821,7 +38807,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_Xpm_XpmFreeXpmImage - as_fn_error $? "Problem with libXpm.(a|so) or libX11.(a|so). Please check config.log for more information." "$LINENO" 5 + as_fn_error "Problem with libXpm.(a|so) or libX11.(a|so). Please check config.log for more information." "$LINENO" 5 fi @@ -38843,7 +38829,7 @@ $as_echo "If configure fails try --with-xpm-dir=<DIR>" >&6; } done if test -z "$FREETYPE2_DIR"; then - as_fn_error $? "freetype.h not found." "$LINENO" 5 + as_fn_error "freetype.h not found." "$LINENO" 5 fi @@ -38945,7 +38931,7 @@ $as_echo "If configure fails try --with-xpm-dir=<DIR>" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for FT_New_Face in -lfreetype" >&5 $as_echo_n "checking for FT_New_Face in -lfreetype... " >&6; } -if ${ac_cv_lib_freetype_FT_New_Face+:} false; then : +if test "${ac_cv_lib_freetype_FT_New_Face+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -38979,7 +38965,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_freetype_FT_New_Face" >&5 $as_echo "$ac_cv_lib_freetype_FT_New_Face" >&6; } -if test "x$ac_cv_lib_freetype_FT_New_Face" = xyes; then : +if test "x$ac_cv_lib_freetype_FT_New_Face" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -39160,7 +39146,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_freetype_FT_New_Face - as_fn_error $? "Problem with freetype.(a|so). Please check config.log for more information." "$LINENO" 5 + as_fn_error "Problem with freetype.(a|so). Please check config.log for more information." "$LINENO" 5 fi @@ -39178,7 +39164,7 @@ $as_echo "If configure fails try --with-freetype-dir=<DIR>" >&6; } done if test -z "$GD_T1_DIR"; then - as_fn_error $? "Your t1lib distribution is not installed correctly. Please reinstall it." "$LINENO" 5 + as_fn_error "Your t1lib distribution is not installed correctly. Please reinstall it." "$LINENO" 5 fi @@ -39280,7 +39266,7 @@ $as_echo "If configure fails try --with-freetype-dir=<DIR>" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for T1_StrError in -lt1" >&5 $as_echo_n "checking for T1_StrError in -lt1... " >&6; } -if ${ac_cv_lib_t1_T1_StrError+:} false; then : +if test "${ac_cv_lib_t1_T1_StrError+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -39314,7 +39300,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_t1_T1_StrError" >&5 $as_echo "$ac_cv_lib_t1_T1_StrError" >&6; } -if test "x$ac_cv_lib_t1_T1_StrError" = xyes; then : +if test "x$ac_cv_lib_t1_T1_StrError" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -39458,7 +39444,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_t1_T1_StrError - as_fn_error $? "Problem with libt1.(a|so). Please check config.log for more information." "$LINENO" 5 + as_fn_error "Problem with libt1.(a|so). Please check config.log for more information." "$LINENO" 5 fi @@ -39590,7 +39576,7 @@ else PHP_ZLIB_DIR="$PHP_ZLIB_DIR" PHP_ZLIB_INCDIR="$PHP_ZLIB_DIR/include" else - as_fn_error $? "Can't find zlib headers under \"$PHP_ZLIB_DIR\"" "$LINENO" 5 + as_fn_error "Can't find zlib headers under \"$PHP_ZLIB_DIR\"" "$LINENO" 5 fi else for i in /usr/local /usr; do @@ -39619,7 +39605,7 @@ $as_echo "#define USE_GD_IMGSTRTTF 1" >>confdefs.h done if test -z "$GD_VPX_DIR"; then - as_fn_error $? "vpx_codec.h not found." "$LINENO" 5 + as_fn_error "vpx_codec.h not found." "$LINENO" 5 fi @@ -39721,7 +39707,7 @@ $as_echo "#define USE_GD_IMGSTRTTF 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking for vpx_codec_destroy in -lvpx" >&5 $as_echo_n "checking for vpx_codec_destroy in -lvpx... " >&6; } -if ${ac_cv_lib_vpx_vpx_codec_destroy+:} false; then : +if test "${ac_cv_lib_vpx_vpx_codec_destroy+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -39755,7 +39741,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_vpx_vpx_codec_destroy" >&5 $as_echo "$ac_cv_lib_vpx_vpx_codec_destroy" >&6; } -if test "x$ac_cv_lib_vpx_vpx_codec_destroy" = xyes; then : +if test "x$ac_cv_lib_vpx_vpx_codec_destroy" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -39906,7 +39892,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_vpx_vpx_codec_destroy - as_fn_error $? "Problem with libvpx.(a|so). Please check config.log for more information." "$LINENO" 5 + as_fn_error "Problem with libvpx.(a|so). Please check config.log for more information." "$LINENO" 5 fi @@ -39924,7 +39910,7 @@ $as_echo "If configure fails try --with-vpx-dir=<DIR>" >&6; } done if test -z "$GD_JPEG_DIR"; then - as_fn_error $? "jpeglib.h not found." "$LINENO" 5 + as_fn_error "jpeglib.h not found." "$LINENO" 5 fi @@ -40026,7 +40012,7 @@ $as_echo "If configure fails try --with-vpx-dir=<DIR>" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for jpeg_read_header in -ljpeg" >&5 $as_echo_n "checking for jpeg_read_header in -ljpeg... " >&6; } -if ${ac_cv_lib_jpeg_jpeg_read_header+:} false; then : +if test "${ac_cv_lib_jpeg_jpeg_read_header+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -40060,7 +40046,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_jpeg_jpeg_read_header" >&5 $as_echo "$ac_cv_lib_jpeg_jpeg_read_header" >&6; } -if test "x$ac_cv_lib_jpeg_jpeg_read_header" = xyes; then : +if test "x$ac_cv_lib_jpeg_jpeg_read_header" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -40201,7 +40187,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_jpeg_jpeg_read_header - as_fn_error $? "Problem with libjpeg.(a|so). Please check config.log for more information." "$LINENO" 5 + as_fn_error "Problem with libjpeg.(a|so). Please check config.log for more information." "$LINENO" 5 fi @@ -40219,11 +40205,11 @@ $as_echo "If configure fails try --with-jpeg-dir=<DIR>" >&6; } done if test -z "$GD_PNG_DIR"; then - as_fn_error $? "png.h not found." "$LINENO" 5 + as_fn_error "png.h not found." "$LINENO" 5 fi if test "$PHP_ZLIB_DIR" = "no"; then - as_fn_error $? "PNG support requires ZLIB. Use --with-zlib-dir=<DIR>" "$LINENO" 5 + as_fn_error "PNG support requires ZLIB. Use --with-zlib-dir=<DIR>" "$LINENO" 5 fi @@ -40325,7 +40311,7 @@ $as_echo "If configure fails try --with-jpeg-dir=<DIR>" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for png_write_image in -lpng" >&5 $as_echo_n "checking for png_write_image in -lpng... " >&6; } -if ${ac_cv_lib_png_png_write_image+:} false; then : +if test "${ac_cv_lib_png_png_write_image+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -40359,7 +40345,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_png_png_write_image" >&5 $as_echo "$ac_cv_lib_png_png_write_image" >&6; } -if test "x$ac_cv_lib_png_png_write_image" = xyes; then : +if test "x$ac_cv_lib_png_png_write_image" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -40597,7 +40583,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_png_png_write_image - as_fn_error $? "Problem with libpng.(a|so) or libz.(a|so). Please check config.log for more information." "$LINENO" 5 + as_fn_error "Problem with libpng.(a|so) or libz.(a|so). Please check config.log for more information." "$LINENO" 5 fi @@ -40616,7 +40602,7 @@ $as_echo "If configure fails try --with-png-dir=<DIR> and --with-zlib-dir=<DIR>" done if test -z "$GD_XPM_DIR"; then - as_fn_error $? "libXpm.(a|so) not found." "$LINENO" 5 + as_fn_error "libXpm.(a|so) not found." "$LINENO" 5 fi for i in include include/X11; do @@ -40624,7 +40610,7 @@ $as_echo "If configure fails try --with-png-dir=<DIR> and --with-zlib-dir=<DIR>" done if test -z "$GD_XPM_INC"; then - as_fn_error $? "xpm.h not found." "$LINENO" 5 + as_fn_error "xpm.h not found." "$LINENO" 5 fi @@ -40726,7 +40712,7 @@ $as_echo "If configure fails try --with-png-dir=<DIR> and --with-zlib-dir=<DIR>" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XpmFreeXpmImage in -lXpm" >&5 $as_echo_n "checking for XpmFreeXpmImage in -lXpm... " >&6; } -if ${ac_cv_lib_Xpm_XpmFreeXpmImage+:} false; then : +if test "${ac_cv_lib_Xpm_XpmFreeXpmImage+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -40760,7 +40746,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xpm_XpmFreeXpmImage" >&5 $as_echo "$ac_cv_lib_Xpm_XpmFreeXpmImage" >&6; } -if test "x$ac_cv_lib_Xpm_XpmFreeXpmImage" = xyes; then : +if test "x$ac_cv_lib_Xpm_XpmFreeXpmImage" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -40998,7 +40984,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_Xpm_XpmFreeXpmImage - as_fn_error $? "Problem with libXpm.(a|so) or libX11.(a|so). Please check config.log for more information." "$LINENO" 5 + as_fn_error "Problem with libXpm.(a|so) or libX11.(a|so). Please check config.log for more information." "$LINENO" 5 fi @@ -41020,7 +41006,7 @@ $as_echo "If configure fails try --with-xpm-dir=<DIR>" >&6; } done if test -z "$FREETYPE2_DIR"; then - as_fn_error $? "freetype.h not found." "$LINENO" 5 + as_fn_error "freetype.h not found." "$LINENO" 5 fi @@ -41122,7 +41108,7 @@ $as_echo "If configure fails try --with-xpm-dir=<DIR>" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for FT_New_Face in -lfreetype" >&5 $as_echo_n "checking for FT_New_Face in -lfreetype... " >&6; } -if ${ac_cv_lib_freetype_FT_New_Face+:} false; then : +if test "${ac_cv_lib_freetype_FT_New_Face+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -41156,7 +41142,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_freetype_FT_New_Face" >&5 $as_echo "$ac_cv_lib_freetype_FT_New_Face" >&6; } -if test "x$ac_cv_lib_freetype_FT_New_Face" = xyes; then : +if test "x$ac_cv_lib_freetype_FT_New_Face" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -41337,7 +41323,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_freetype_FT_New_Face - as_fn_error $? "Problem with freetype.(a|so). Please check config.log for more information." "$LINENO" 5 + as_fn_error "Problem with freetype.(a|so). Please check config.log for more information." "$LINENO" 5 fi @@ -41355,7 +41341,7 @@ $as_echo "If configure fails try --with-freetype-dir=<DIR>" >&6; } done if test -z "$GD_T1_DIR"; then - as_fn_error $? "Your t1lib distribution is not installed correctly. Please reinstall it." "$LINENO" 5 + as_fn_error "Your t1lib distribution is not installed correctly. Please reinstall it." "$LINENO" 5 fi @@ -41457,7 +41443,7 @@ $as_echo "If configure fails try --with-freetype-dir=<DIR>" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for T1_StrError in -lt1" >&5 $as_echo_n "checking for T1_StrError in -lt1... " >&6; } -if ${ac_cv_lib_t1_T1_StrError+:} false; then : +if test "${ac_cv_lib_t1_T1_StrError+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -41491,7 +41477,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_t1_T1_StrError" >&5 $as_echo "$ac_cv_lib_t1_T1_StrError" >&6; } -if test "x$ac_cv_lib_t1_T1_StrError" = xyes; then : +if test "x$ac_cv_lib_t1_T1_StrError" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -41635,7 +41621,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_t1_T1_StrError - as_fn_error $? "Problem with libt1.(a|so). Please check config.log for more information." "$LINENO" 5 + as_fn_error "Problem with libt1.(a|so). Please check config.log for more information." "$LINENO" 5 fi @@ -41850,7 +41836,7 @@ $as_echo "#define HAVE_LIBGD 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gdImageString16 in -lgd" >&5 $as_echo_n "checking for gdImageString16 in -lgd... " >&6; } -if ${ac_cv_lib_gd_gdImageString16+:} false; then : +if test "${ac_cv_lib_gd_gdImageString16+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -41884,7 +41870,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gd_gdImageString16" >&5 $as_echo "$ac_cv_lib_gd_gdImageString16" >&6; } -if test "x$ac_cv_lib_gd_gdImageString16" = xyes; then : +if test "x$ac_cv_lib_gd_gdImageString16" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -41998,7 +41984,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gdImagePaletteCopy in -lgd" >&5 $as_echo_n "checking for gdImagePaletteCopy in -lgd... " >&6; } -if ${ac_cv_lib_gd_gdImagePaletteCopy+:} false; then : +if test "${ac_cv_lib_gd_gdImagePaletteCopy+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -42032,7 +42018,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gd_gdImagePaletteCopy" >&5 $as_echo "$ac_cv_lib_gd_gdImagePaletteCopy" >&6; } -if test "x$ac_cv_lib_gd_gdImagePaletteCopy" = xyes; then : +if test "x$ac_cv_lib_gd_gdImagePaletteCopy" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -42146,7 +42132,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gdImageCreateFromPng in -lgd" >&5 $as_echo_n "checking for gdImageCreateFromPng in -lgd... " >&6; } -if ${ac_cv_lib_gd_gdImageCreateFromPng+:} false; then : +if test "${ac_cv_lib_gd_gdImageCreateFromPng+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -42180,7 +42166,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gd_gdImageCreateFromPng" >&5 $as_echo "$ac_cv_lib_gd_gdImageCreateFromPng" >&6; } -if test "x$ac_cv_lib_gd_gdImageCreateFromPng" = xyes; then : +if test "x$ac_cv_lib_gd_gdImageCreateFromPng" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -42294,7 +42280,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gdImageCreateFromGif in -lgd" >&5 $as_echo_n "checking for gdImageCreateFromGif in -lgd... " >&6; } -if ${ac_cv_lib_gd_gdImageCreateFromGif+:} false; then : +if test "${ac_cv_lib_gd_gdImageCreateFromGif+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -42328,7 +42314,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gd_gdImageCreateFromGif" >&5 $as_echo "$ac_cv_lib_gd_gdImageCreateFromGif" >&6; } -if test "x$ac_cv_lib_gd_gdImageCreateFromGif" = xyes; then : +if test "x$ac_cv_lib_gd_gdImageCreateFromGif" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -42442,7 +42428,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gdImageGif in -lgd" >&5 $as_echo_n "checking for gdImageGif in -lgd... " >&6; } -if ${ac_cv_lib_gd_gdImageGif+:} false; then : +if test "${ac_cv_lib_gd_gdImageGif+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -42476,7 +42462,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gd_gdImageGif" >&5 $as_echo "$ac_cv_lib_gd_gdImageGif" >&6; } -if test "x$ac_cv_lib_gd_gdImageGif" = xyes; then : +if test "x$ac_cv_lib_gd_gdImageGif" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -42590,7 +42576,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gdImageWBMP in -lgd" >&5 $as_echo_n "checking for gdImageWBMP in -lgd... " >&6; } -if ${ac_cv_lib_gd_gdImageWBMP+:} false; then : +if test "${ac_cv_lib_gd_gdImageWBMP+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -42624,7 +42610,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gd_gdImageWBMP" >&5 $as_echo "$ac_cv_lib_gd_gdImageWBMP" >&6; } -if test "x$ac_cv_lib_gd_gdImageWBMP" = xyes; then : +if test "x$ac_cv_lib_gd_gdImageWBMP" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -42738,7 +42724,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gdImageCreateFromJpeg in -lgd" >&5 $as_echo_n "checking for gdImageCreateFromJpeg in -lgd... " >&6; } -if ${ac_cv_lib_gd_gdImageCreateFromJpeg+:} false; then : +if test "${ac_cv_lib_gd_gdImageCreateFromJpeg+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -42772,7 +42758,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gd_gdImageCreateFromJpeg" >&5 $as_echo "$ac_cv_lib_gd_gdImageCreateFromJpeg" >&6; } -if test "x$ac_cv_lib_gd_gdImageCreateFromJpeg" = xyes; then : +if test "x$ac_cv_lib_gd_gdImageCreateFromJpeg" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -42886,7 +42872,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gdImageCreateFromXpm in -lgd" >&5 $as_echo_n "checking for gdImageCreateFromXpm in -lgd... " >&6; } -if ${ac_cv_lib_gd_gdImageCreateFromXpm+:} false; then : +if test "${ac_cv_lib_gd_gdImageCreateFromXpm+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -42920,7 +42906,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gd_gdImageCreateFromXpm" >&5 $as_echo "$ac_cv_lib_gd_gdImageCreateFromXpm" >&6; } -if test "x$ac_cv_lib_gd_gdImageCreateFromXpm" = xyes; then : +if test "x$ac_cv_lib_gd_gdImageCreateFromXpm" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -43034,7 +43020,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gdImageCreateFromGd2 in -lgd" >&5 $as_echo_n "checking for gdImageCreateFromGd2 in -lgd... " >&6; } -if ${ac_cv_lib_gd_gdImageCreateFromGd2+:} false; then : +if test "${ac_cv_lib_gd_gdImageCreateFromGd2+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -43068,7 +43054,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gd_gdImageCreateFromGd2" >&5 $as_echo "$ac_cv_lib_gd_gdImageCreateFromGd2" >&6; } -if test "x$ac_cv_lib_gd_gdImageCreateFromGd2" = xyes; then : +if test "x$ac_cv_lib_gd_gdImageCreateFromGd2" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -43182,7 +43168,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gdImageCreateTrueColor in -lgd" >&5 $as_echo_n "checking for gdImageCreateTrueColor in -lgd... " >&6; } -if ${ac_cv_lib_gd_gdImageCreateTrueColor+:} false; then : +if test "${ac_cv_lib_gd_gdImageCreateTrueColor+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -43216,7 +43202,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gd_gdImageCreateTrueColor" >&5 $as_echo "$ac_cv_lib_gd_gdImageCreateTrueColor" >&6; } -if test "x$ac_cv_lib_gd_gdImageCreateTrueColor" = xyes; then : +if test "x$ac_cv_lib_gd_gdImageCreateTrueColor" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -43330,7 +43316,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gdImageSetTile in -lgd" >&5 $as_echo_n "checking for gdImageSetTile in -lgd... " >&6; } -if ${ac_cv_lib_gd_gdImageSetTile+:} false; then : +if test "${ac_cv_lib_gd_gdImageSetTile+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -43364,7 +43350,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gd_gdImageSetTile" >&5 $as_echo "$ac_cv_lib_gd_gdImageSetTile" >&6; } -if test "x$ac_cv_lib_gd_gdImageSetTile" = xyes; then : +if test "x$ac_cv_lib_gd_gdImageSetTile" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -43478,7 +43464,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gdImageEllipse in -lgd" >&5 $as_echo_n "checking for gdImageEllipse in -lgd... " >&6; } -if ${ac_cv_lib_gd_gdImageEllipse+:} false; then : +if test "${ac_cv_lib_gd_gdImageEllipse+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -43512,7 +43498,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gd_gdImageEllipse" >&5 $as_echo "$ac_cv_lib_gd_gdImageEllipse" >&6; } -if test "x$ac_cv_lib_gd_gdImageEllipse" = xyes; then : +if test "x$ac_cv_lib_gd_gdImageEllipse" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -43626,7 +43612,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gdImageSetBrush in -lgd" >&5 $as_echo_n "checking for gdImageSetBrush in -lgd... " >&6; } -if ${ac_cv_lib_gd_gdImageSetBrush+:} false; then : +if test "${ac_cv_lib_gd_gdImageSetBrush+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -43660,7 +43646,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gd_gdImageSetBrush" >&5 $as_echo "$ac_cv_lib_gd_gdImageSetBrush" >&6; } -if test "x$ac_cv_lib_gd_gdImageSetBrush" = xyes; then : +if test "x$ac_cv_lib_gd_gdImageSetBrush" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -43774,7 +43760,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gdImageStringTTF in -lgd" >&5 $as_echo_n "checking for gdImageStringTTF in -lgd... " >&6; } -if ${ac_cv_lib_gd_gdImageStringTTF+:} false; then : +if test "${ac_cv_lib_gd_gdImageStringTTF+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -43808,7 +43794,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gd_gdImageStringTTF" >&5 $as_echo "$ac_cv_lib_gd_gdImageStringTTF" >&6; } -if test "x$ac_cv_lib_gd_gdImageStringTTF" = xyes; then : +if test "x$ac_cv_lib_gd_gdImageStringTTF" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -43922,7 +43908,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gdImageStringFT in -lgd" >&5 $as_echo_n "checking for gdImageStringFT in -lgd... " >&6; } -if ${ac_cv_lib_gd_gdImageStringFT+:} false; then : +if test "${ac_cv_lib_gd_gdImageStringFT+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -43956,7 +43942,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gd_gdImageStringFT" >&5 $as_echo "$ac_cv_lib_gd_gdImageStringFT" >&6; } -if test "x$ac_cv_lib_gd_gdImageStringFT" = xyes; then : +if test "x$ac_cv_lib_gd_gdImageStringFT" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -44070,7 +44056,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gdImageStringFTEx in -lgd" >&5 $as_echo_n "checking for gdImageStringFTEx in -lgd... " >&6; } -if ${ac_cv_lib_gd_gdImageStringFTEx+:} false; then : +if test "${ac_cv_lib_gd_gdImageStringFTEx+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -44104,7 +44090,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gd_gdImageStringFTEx" >&5 $as_echo "$ac_cv_lib_gd_gdImageStringFTEx" >&6; } -if test "x$ac_cv_lib_gd_gdImageStringFTEx" = xyes; then : +if test "x$ac_cv_lib_gd_gdImageStringFTEx" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -44218,7 +44204,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gdImageColorClosestHWB in -lgd" >&5 $as_echo_n "checking for gdImageColorClosestHWB in -lgd... " >&6; } -if ${ac_cv_lib_gd_gdImageColorClosestHWB+:} false; then : +if test "${ac_cv_lib_gd_gdImageColorClosestHWB+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -44252,7 +44238,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gd_gdImageColorClosestHWB" >&5 $as_echo "$ac_cv_lib_gd_gdImageColorClosestHWB" >&6; } -if test "x$ac_cv_lib_gd_gdImageColorClosestHWB" = xyes; then : +if test "x$ac_cv_lib_gd_gdImageColorClosestHWB" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -44366,7 +44352,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gdImageColorResolve in -lgd" >&5 $as_echo_n "checking for gdImageColorResolve in -lgd... " >&6; } -if ${ac_cv_lib_gd_gdImageColorResolve+:} false; then : +if test "${ac_cv_lib_gd_gdImageColorResolve+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -44400,7 +44386,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gd_gdImageColorResolve" >&5 $as_echo "$ac_cv_lib_gd_gdImageColorResolve" >&6; } -if test "x$ac_cv_lib_gd_gdImageColorResolve" = xyes; then : +if test "x$ac_cv_lib_gd_gdImageColorResolve" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -44514,7 +44500,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gdImageGifCtx in -lgd" >&5 $as_echo_n "checking for gdImageGifCtx in -lgd... " >&6; } -if ${ac_cv_lib_gd_gdImageGifCtx+:} false; then : +if test "${ac_cv_lib_gd_gdImageGifCtx+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -44548,7 +44534,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gd_gdImageGifCtx" >&5 $as_echo "$ac_cv_lib_gd_gdImageGifCtx" >&6; } -if test "x$ac_cv_lib_gd_gdImageGifCtx" = xyes; then : +if test "x$ac_cv_lib_gd_gdImageGifCtx" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -44662,7 +44648,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gdCacheCreate in -lgd" >&5 $as_echo_n "checking for gdCacheCreate in -lgd... " >&6; } -if ${ac_cv_lib_gd_gdCacheCreate+:} false; then : +if test "${ac_cv_lib_gd_gdCacheCreate+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -44696,7 +44682,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gd_gdCacheCreate" >&5 $as_echo "$ac_cv_lib_gd_gdCacheCreate" >&6; } -if test "x$ac_cv_lib_gd_gdCacheCreate" = xyes; then : +if test "x$ac_cv_lib_gd_gdCacheCreate" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -44810,7 +44796,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gdFontCacheShutdown in -lgd" >&5 $as_echo_n "checking for gdFontCacheShutdown in -lgd... " >&6; } -if ${ac_cv_lib_gd_gdFontCacheShutdown+:} false; then : +if test "${ac_cv_lib_gd_gdFontCacheShutdown+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -44844,7 +44830,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gd_gdFontCacheShutdown" >&5 $as_echo "$ac_cv_lib_gd_gdFontCacheShutdown" >&6; } -if test "x$ac_cv_lib_gd_gdFontCacheShutdown" = xyes; then : +if test "x$ac_cv_lib_gd_gdFontCacheShutdown" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -44958,7 +44944,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gdFreeFontCache in -lgd" >&5 $as_echo_n "checking for gdFreeFontCache in -lgd... " >&6; } -if ${ac_cv_lib_gd_gdFreeFontCache+:} false; then : +if test "${ac_cv_lib_gd_gdFreeFontCache+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -44992,7 +44978,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gd_gdFreeFontCache" >&5 $as_echo "$ac_cv_lib_gd_gdFreeFontCache" >&6; } -if test "x$ac_cv_lib_gd_gdFreeFontCache" = xyes; then : +if test "x$ac_cv_lib_gd_gdFreeFontCache" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -45106,7 +45092,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gdFontCacheMutexSetup in -lgd" >&5 $as_echo_n "checking for gdFontCacheMutexSetup in -lgd... " >&6; } -if ${ac_cv_lib_gd_gdFontCacheMutexSetup+:} false; then : +if test "${ac_cv_lib_gd_gdFontCacheMutexSetup+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -45140,7 +45126,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gd_gdFontCacheMutexSetup" >&5 $as_echo "$ac_cv_lib_gd_gdFontCacheMutexSetup" >&6; } -if test "x$ac_cv_lib_gd_gdFontCacheMutexSetup" = xyes; then : +if test "x$ac_cv_lib_gd_gdFontCacheMutexSetup" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -45254,7 +45240,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gdNewDynamicCtxEx in -lgd" >&5 $as_echo_n "checking for gdNewDynamicCtxEx in -lgd... " >&6; } -if ${ac_cv_lib_gd_gdNewDynamicCtxEx+:} false; then : +if test "${ac_cv_lib_gd_gdNewDynamicCtxEx+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -45288,7 +45274,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gd_gdNewDynamicCtxEx" >&5 $as_echo "$ac_cv_lib_gd_gdNewDynamicCtxEx" >&6; } -if test "x$ac_cv_lib_gd_gdNewDynamicCtxEx" = xyes; then : +if test "x$ac_cv_lib_gd_gdNewDynamicCtxEx" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -45307,9 +45293,9 @@ fi elif test -z "$GD_INCLUDE"; then - as_fn_error $? "Unable to find gd.h anywhere under $PHP_GD" "$LINENO" 5 + as_fn_error "Unable to find gd.h anywhere under $PHP_GD" "$LINENO" 5 else - as_fn_error $? "Unable to find libgd.(a|so) anywhere under $PHP_GD" "$LINENO" 5 + as_fn_error "Unable to find libgd.(a|so) anywhere under $PHP_GD" "$LINENO" 5 fi @@ -45690,7 +45676,7 @@ else LIBS=$old_LIBS - as_fn_error $? "GD build test failed. Please check the config.log for details." "$LINENO" 5 + as_fn_error "GD build test failed. Please check the config.log for details." "$LINENO" 5 fi @@ -45830,7 +45816,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gdImageCreate in -lgd" >&5 $as_echo_n "checking for gdImageCreate in -lgd... " >&6; } -if ${ac_cv_lib_gd_gdImageCreate+:} false; then : +if test "${ac_cv_lib_gd_gdImageCreate+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -45864,7 +45850,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gd_gdImageCreate" >&5 $as_echo "$ac_cv_lib_gd_gdImageCreate" >&6; } -if test "x$ac_cv_lib_gd_gdImageCreate" = xyes; then : +if test "x$ac_cv_lib_gd_gdImageCreate" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -45876,7 +45862,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_gd_gdImageCreate - as_fn_error $? "GD build test failed. Please check the config.log for details." "$LINENO" 5 + as_fn_error "GD build test failed. Please check the config.log for details." "$LINENO" 5 fi @@ -45961,7 +45947,7 @@ if test "$PHP_GETTEXT" != "no"; then done if test -z "$GETTEXT_DIR"; then - as_fn_error $? "Cannot locate header file libintl.h" "$LINENO" 5 + as_fn_error "Cannot locate header file libintl.h" "$LINENO" 5 fi GETTEXT_LIBDIR=$GETTEXT_DIR/$PHP_LIBDIR @@ -45971,7 +45957,7 @@ if test "$PHP_GETTEXT" != "no"; then LDFLAGS="$LDFLAGS -L$GETTEXT_LIBDIR" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bindtextdomain in -lintl" >&5 $as_echo_n "checking for bindtextdomain in -lintl... " >&6; } -if ${ac_cv_lib_intl_bindtextdomain+:} false; then : +if test "${ac_cv_lib_intl_bindtextdomain+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -46005,7 +45991,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_bindtextdomain" >&5 $as_echo "$ac_cv_lib_intl_bindtextdomain" >&6; } -if test "x$ac_cv_lib_intl_bindtextdomain" = xyes; then : +if test "x$ac_cv_lib_intl_bindtextdomain" = x""yes; then : GETTEXT_LIBS=intl GETTEXT_CHECK_IN_LIB=intl @@ -46013,7 +45999,7 @@ if test "x$ac_cv_lib_intl_bindtextdomain" = xyes; then : else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bindtextdomain in -lc" >&5 $as_echo_n "checking for bindtextdomain in -lc... " >&6; } -if ${ac_cv_lib_c_bindtextdomain+:} false; then : +if test "${ac_cv_lib_c_bindtextdomain+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -46047,14 +46033,14 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_c_bindtextdomain" >&5 $as_echo "$ac_cv_lib_c_bindtextdomain" >&6; } -if test "x$ac_cv_lib_c_bindtextdomain" = xyes; then : +if test "x$ac_cv_lib_c_bindtextdomain" = x""yes; then : GETTEXT_LIBS= GETTEXT_CHECK_IN_LIB=c else - as_fn_error $? "Unable to find required gettext library" "$LINENO" 5 + as_fn_error "Unable to find required gettext library" "$LINENO" 5 fi @@ -46498,7 +46484,7 @@ EOF as_ac_Lib=`$as_echo "ac_cv_lib_$GETTEXT_CHECK_IN_LIB''_ngettext" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in -l$GETTEXT_CHECK_IN_LIB" >&5 $as_echo_n "checking for ngettext in -l$GETTEXT_CHECK_IN_LIB... " >&6; } -if eval \${$as_ac_Lib+:} false; then : +if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -46533,7 +46519,8 @@ fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : +eval as_val=\$$as_ac_Lib + if test "x$as_val" = x""yes; then : $as_echo "#define HAVE_NGETTEXT 1" >>confdefs.h @@ -46542,7 +46529,7 @@ fi as_ac_Lib=`$as_echo "ac_cv_lib_$GETTEXT_CHECK_IN_LIB''_dngettext" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dngettext in -l$GETTEXT_CHECK_IN_LIB" >&5 $as_echo_n "checking for dngettext in -l$GETTEXT_CHECK_IN_LIB... " >&6; } -if eval \${$as_ac_Lib+:} false; then : +if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -46577,7 +46564,8 @@ fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : +eval as_val=\$$as_ac_Lib + if test "x$as_val" = x""yes; then : $as_echo "#define HAVE_DNGETTEXT 1" >>confdefs.h @@ -46586,7 +46574,7 @@ fi as_ac_Lib=`$as_echo "ac_cv_lib_$GETTEXT_CHECK_IN_LIB''_dcngettext" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dcngettext in -l$GETTEXT_CHECK_IN_LIB" >&5 $as_echo_n "checking for dcngettext in -l$GETTEXT_CHECK_IN_LIB... " >&6; } -if eval \${$as_ac_Lib+:} false; then : +if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -46621,7 +46609,8 @@ fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : +eval as_val=\$$as_ac_Lib + if test "x$as_val" = x""yes; then : $as_echo "#define HAVE_DCNGETTEXT 1" >>confdefs.h @@ -46630,7 +46619,7 @@ fi as_ac_Lib=`$as_echo "ac_cv_lib_$GETTEXT_CHECK_IN_LIB''_bind_textdomain_codeset" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bind_textdomain_codeset in -l$GETTEXT_CHECK_IN_LIB" >&5 $as_echo_n "checking for bind_textdomain_codeset in -l$GETTEXT_CHECK_IN_LIB... " >&6; } -if eval \${$as_ac_Lib+:} false; then : +if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -46665,7 +46654,8 @@ fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : +eval as_val=\$$as_ac_Lib + if test "x$as_val" = x""yes; then : $as_echo "#define HAVE_BIND_TEXTDOMAIN_CODESET 1" >>confdefs.h @@ -46727,7 +46717,7 @@ if test "$PHP_GMP" != "no"; then done if test -z "$GMP_DIR"; then - as_fn_error $? "Unable to locate gmp.h" "$LINENO" 5 + as_fn_error "Unable to locate gmp.h" "$LINENO" 5 fi @@ -46829,7 +46819,7 @@ if test "$PHP_GMP" != "no"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __gmp_randinit_lc_2exp_size in -lgmp" >&5 $as_echo_n "checking for __gmp_randinit_lc_2exp_size in -lgmp... " >&6; } -if ${ac_cv_lib_gmp___gmp_randinit_lc_2exp_size+:} false; then : +if test "${ac_cv_lib_gmp___gmp_randinit_lc_2exp_size+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -46863,7 +46853,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gmp___gmp_randinit_lc_2exp_size" >&5 $as_echo "$ac_cv_lib_gmp___gmp_randinit_lc_2exp_size" >&6; } -if test "x$ac_cv_lib_gmp___gmp_randinit_lc_2exp_size" = xyes; then : +if test "x$ac_cv_lib_gmp___gmp_randinit_lc_2exp_size" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -46974,7 +46964,7 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gmp_randinit_lc_2exp_size in -lgmp" >&5 $as_echo_n "checking for gmp_randinit_lc_2exp_size in -lgmp... " >&6; } -if ${ac_cv_lib_gmp_gmp_randinit_lc_2exp_size+:} false; then : +if test "${ac_cv_lib_gmp_gmp_randinit_lc_2exp_size+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -47008,7 +46998,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gmp_gmp_randinit_lc_2exp_size" >&5 $as_echo "$ac_cv_lib_gmp_gmp_randinit_lc_2exp_size" >&6; } -if test "x$ac_cv_lib_gmp_gmp_randinit_lc_2exp_size" = xyes; then : +if test "x$ac_cv_lib_gmp_gmp_randinit_lc_2exp_size" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -47020,7 +47010,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_gmp_gmp_randinit_lc_2exp_size - as_fn_error $? "GNU MP Library version 4.1.2 or greater required." "$LINENO" 5 + as_fn_error "GNU MP Library version 4.1.2 or greater required." "$LINENO" 5 fi @@ -47567,7 +47557,7 @@ $as_echo "#define HAVE_HASH_EXT 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5 $as_echo_n "checking whether byte ordering is bigendian... " >&6; } -if ${ac_cv_c_bigendian_php+:} false; then : +if test "${ac_cv_c_bigendian_php+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -47617,7 +47607,7 @@ $as_echo "#define WORDS_BIGENDIAN /**/" >>confdefs.h # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of short" >&5 $as_echo_n "checking size of short... " >&6; } -if ${ac_cv_sizeof_short+:} false; then : +if test "${ac_cv_sizeof_short+set}" = set; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (short))" "ac_cv_sizeof_short" "$ac_includes_default"; then : @@ -47626,8 +47616,9 @@ else if test "$ac_cv_type_short" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "cannot compute sizeof (short) -See \`config.log' for more details" "$LINENO" 5; } +{ as_fn_set_status 77 +as_fn_error "cannot compute sizeof (short) +See \`config.log' for more details." "$LINENO" 5; }; } else ac_cv_sizeof_short=0 fi @@ -47650,7 +47641,7 @@ _ACEOF # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of int" >&5 $as_echo_n "checking size of int... " >&6; } -if ${ac_cv_sizeof_int+:} false; then : +if test "${ac_cv_sizeof_int+set}" = set; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (int))" "ac_cv_sizeof_int" "$ac_includes_default"; then : @@ -47659,8 +47650,9 @@ else if test "$ac_cv_type_int" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "cannot compute sizeof (int) -See \`config.log' for more details" "$LINENO" 5; } +{ as_fn_set_status 77 +as_fn_error "cannot compute sizeof (int) +See \`config.log' for more details." "$LINENO" 5; }; } else ac_cv_sizeof_int=0 fi @@ -47683,7 +47675,7 @@ _ACEOF # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long" >&5 $as_echo_n "checking size of long... " >&6; } -if ${ac_cv_sizeof_long+:} false; then : +if test "${ac_cv_sizeof_long+set}" = set; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long))" "ac_cv_sizeof_long" "$ac_includes_default"; then : @@ -47692,8 +47684,9 @@ else if test "$ac_cv_type_long" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "cannot compute sizeof (long) -See \`config.log' for more details" "$LINENO" 5; } +{ as_fn_set_status 77 +as_fn_error "cannot compute sizeof (long) +See \`config.log' for more details." "$LINENO" 5; }; } else ac_cv_sizeof_long=0 fi @@ -47716,7 +47709,7 @@ _ACEOF # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long long" >&5 $as_echo_n "checking size of long long... " >&6; } -if ${ac_cv_sizeof_long_long+:} false; then : +if test "${ac_cv_sizeof_long_long+set}" = set; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long long))" "ac_cv_sizeof_long_long" "$ac_includes_default"; then : @@ -47725,8 +47718,9 @@ else if test "$ac_cv_type_long_long" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "cannot compute sizeof (long long) -See \`config.log' for more details" "$LINENO" 5; } +{ as_fn_set_status 77 +as_fn_error "cannot compute sizeof (long long) +See \`config.log' for more details." "$LINENO" 5; }; } else ac_cv_sizeof_long_long=0 fi @@ -48136,14 +48130,14 @@ if test "$PHP_ICONV" != "no"; then if test "$PHP_ICONV" = "yes"; then ac_fn_c_check_func "$LINENO" "iconv" "ac_cv_func_iconv" -if test "x$ac_cv_func_iconv" = xyes; then : +if test "x$ac_cv_func_iconv" = x""yes; then : found_iconv=yes else ac_fn_c_check_func "$LINENO" "libiconv" "ac_cv_func_libiconv" -if test "x$ac_cv_func_libiconv" = xyes; then : +if test "x$ac_cv_func_libiconv" = x""yes; then : echo "#define HAVE_LIBICONV 1" > ext/iconv/php_have_libiconv.h @@ -48178,7 +48172,7 @@ $as_echo "#define HAVE_GICONV_H 1" >>confdefs.h done if test -z "$ICONV_DIR"; then - as_fn_error $? "Please specify the install prefix of iconv with --with-iconv=<DIR>" "$LINENO" 5 + as_fn_error "Please specify the install prefix of iconv with --with-iconv=<DIR>" "$LINENO" 5 fi if test -f $ICONV_DIR/$PHP_LIBDIR/lib$iconv_lib_name.a || @@ -48284,7 +48278,7 @@ $as_echo "#define HAVE_GICONV_H 1" >>confdefs.h as_ac_Lib=`$as_echo "ac_cv_lib_$iconv_lib_name''_libiconv" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libiconv in -l$iconv_lib_name" >&5 $as_echo_n "checking for libiconv in -l$iconv_lib_name... " >&6; } -if eval \${$as_ac_Lib+:} false; then : +if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -48319,7 +48313,8 @@ fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : +eval as_val=\$$as_ac_Lib + if test "x$as_val" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -48445,7 +48440,7 @@ else as_ac_Lib=`$as_echo "ac_cv_lib_$iconv_lib_name''_iconv" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv in -l$iconv_lib_name" >&5 $as_echo_n "checking for iconv in -l$iconv_lib_name... " >&6; } -if eval \${$as_ac_Lib+:} false; then : +if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -48480,7 +48475,8 @@ fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : +eval as_val=\$$as_ac_Lib + if test "x$as_val" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -49381,7 +49377,7 @@ EOF else - as_fn_error $? "Please reinstall the iconv library." "$LINENO" 5 + as_fn_error "Please reinstall the iconv library." "$LINENO" 5 fi fi @@ -49888,7 +49884,7 @@ rm -f conftest* CFLAGS="-I$IMAP_INC_DIR" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for utf8_mime2text signature" >&5 $as_echo_n "checking for utf8_mime2text signature... " >&6; } -if ${ac_cv_utf8_mime2text+:} false; then : +if test "${ac_cv_utf8_mime2text+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -49933,7 +49929,7 @@ $as_echo "#define HAVE_NEW_MIME2TEXT 1" >>confdefs.h CFLAGS="-I$IMAP_INC_DIR" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for U8T_DECOMPOSE" >&5 $as_echo_n "checking for U8T_DECOMPOSE... " >&6; } -if ${ac_cv_u8t_canonical+:} false; then : +if test "${ac_cv_u8t_canonical+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -49968,10 +49964,10 @@ $as_echo "$ac_cv_u8t_canonical" >&6; } CFLAGS=$old_CFLAGS if test "$ac_cv_u8t_decompose" = "no" && test "$ac_cv_utf8_mime2text" = "new"; then - as_fn_error $? "utf8_mime2text() has new signature, but U8T_CANONICAL is missing. This should not happen. Check config.log for additional information." "$LINENO" 5 + as_fn_error "utf8_mime2text() has new signature, but U8T_CANONICAL is missing. This should not happen. Check config.log for additional information." "$LINENO" 5 fi if test "$ac_cv_u8t_decompose" = "yes" && test "$ac_cv_utf8_mime2text" = "old"; then - as_fn_error $? "utf8_mime2text() has old signature, but U8T_CANONICAL is present. This should not happen. Check config.log for additional information." "$LINENO" 5 + as_fn_error "utf8_mime2text() has old signature, but U8T_CANONICAL is present. This should not happen. Check config.log for additional information." "$LINENO" 5 fi old_CPPFLAGS=$CPPFLAGS @@ -50094,7 +50090,7 @@ rm -f conftest* { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pam_start in -lpam" >&5 $as_echo_n "checking for pam_start in -lpam... " >&6; } -if ${ac_cv_lib_pam_pam_start+:} false; then : +if test "${ac_cv_lib_pam_pam_start+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -50128,7 +50124,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pam_pam_start" >&5 $as_echo "$ac_cv_lib_pam_pam_start" >&6; } -if test "x$ac_cv_lib_pam_pam_start" = xyes; then : +if test "x$ac_cv_lib_pam_pam_start" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -50268,7 +50264,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for crypt in -lcrypt" >&5 $as_echo_n "checking for crypt in -lcrypt... " >&6; } -if ${ac_cv_lib_crypt_crypt+:} false; then : +if test "${ac_cv_lib_crypt_crypt+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -50302,7 +50298,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_crypt_crypt" >&5 $as_echo "$ac_cv_lib_crypt_crypt" >&6; } -if test "x$ac_cv_lib_crypt_crypt" = xyes; then : +if test "x$ac_cv_lib_crypt_crypt" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -50358,7 +50354,7 @@ fi if test -z "$IMAP_DIR"; then - as_fn_error $? "Cannot find rfc822.h. Please check your c-client installation." "$LINENO" 5 + as_fn_error "Cannot find rfc822.h. Please check your c-client installation." "$LINENO" 5 fi if test -r "$IMAP_DIR/c-client/c-client.a"; then @@ -50384,7 +50380,7 @@ fi done if test -z "$IMAP_LIBDIR"; then - as_fn_error $? "Cannot find imap library (libc-client.a). Please check your c-client installation." "$LINENO" 5 + as_fn_error "Cannot find imap library (libc-client.a). Please check your c-client installation." "$LINENO" 5 fi @@ -50491,7 +50487,7 @@ fi set dummy krb5-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_KRB5_CONFIG+:} false; then : +if test "${ac_cv_path_KRB5_CONFIG+set}" = set; then : $as_echo_n "(cached) " >&6 else case $KRB5_CONFIG in @@ -50855,7 +50851,7 @@ $as_echo "#define HAVE_IMAP_KRB 1" >>confdefs.h else - as_fn_error $? "Kerberos libraries not found. + as_fn_error "Kerberos libraries not found. Check the path given to --with-kerberos (if no path is given, searches in /usr/kerberos, /usr/local and /usr ) " "$LINENO" 5 @@ -50871,7 +50867,7 @@ _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "auth_gss" >/dev/null 2>&1; then : - as_fn_error $? "This c-client library is built with Kerberos support. + as_fn_error "This c-client library is built with Kerberos support. Add --with-kerberos to your configure line. Check config.log for details. " "$LINENO" 5 @@ -50905,7 +50901,7 @@ rm -f conftest* set dummy pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_PKG_CONFIG+:} false; then : +if test "${ac_cv_path_PKG_CONFIG+set}" = set; then : $as_echo_n "(cached) " >&6 else case $PKG_CONFIG in @@ -50951,7 +50947,7 @@ fi OPENSSL_INCS=`$PKG_CONFIG --cflags-only-I openssl` OPENSSL_INCDIR=`$PKG_CONFIG --variable=includedir openssl` else - as_fn_error $? "OpenSSL version 0.9.6 or greater required." "$LINENO" 5 + as_fn_error "OpenSSL version 0.9.6 or greater required." "$LINENO" 5 fi if test -n "$OPENSSL_LIBS" && test -n "$OPENSSL_INCS"; then @@ -51104,11 +51100,11 @@ fi done if test -z "$OPENSSL_INCDIR"; then - as_fn_error $? "Cannot find OpenSSL's <evp.h>" "$LINENO" 5 + as_fn_error "Cannot find OpenSSL's <evp.h>" "$LINENO" 5 fi if test -z "$OPENSSL_LIBDIR"; then - as_fn_error $? "Cannot find OpenSSL's libraries" "$LINENO" 5 + as_fn_error "Cannot find OpenSSL's libraries" "$LINENO" 5 fi old_CPPFLAGS=$CPPFLAGS @@ -51132,7 +51128,7 @@ $as_echo ">= 0.9.6" >&6; } else - as_fn_error $? "OpenSSL version 0.9.6 or greater required." "$LINENO" 5 + as_fn_error "OpenSSL version 0.9.6 or greater required." "$LINENO" 5 fi rm -f conftest* @@ -51270,7 +51266,7 @@ rm -f conftest* { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CRYPTO_free in -lcrypto" >&5 $as_echo_n "checking for CRYPTO_free in -lcrypto... " >&6; } -if ${ac_cv_lib_crypto_CRYPTO_free+:} false; then : +if test "${ac_cv_lib_crypto_CRYPTO_free+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -51304,7 +51300,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_crypto_CRYPTO_free" >&5 $as_echo "$ac_cv_lib_crypto_CRYPTO_free" >&6; } -if test "x$ac_cv_lib_crypto_CRYPTO_free" = xyes; then : +if test "x$ac_cv_lib_crypto_CRYPTO_free" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -51340,7 +51336,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_crypto_CRYPTO_free - as_fn_error $? "libcrypto not found!" "$LINENO" 5 + as_fn_error "libcrypto not found!" "$LINENO" 5 fi @@ -51447,7 +51443,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SSL_CTX_set_ssl_version in -lssl" >&5 $as_echo_n "checking for SSL_CTX_set_ssl_version in -lssl... " >&6; } -if ${ac_cv_lib_ssl_SSL_CTX_set_ssl_version+:} false; then : +if test "${ac_cv_lib_ssl_SSL_CTX_set_ssl_version+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -51481,7 +51477,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ssl_SSL_CTX_set_ssl_version" >&5 $as_echo "$ac_cv_lib_ssl_SSL_CTX_set_ssl_version" >&6; } -if test "x$ac_cv_lib_ssl_SSL_CTX_set_ssl_version" = xyes; then : +if test "x$ac_cv_lib_ssl_SSL_CTX_set_ssl_version" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -51495,7 +51491,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_ssl_SSL_CTX_set_ssl_version - as_fn_error $? "libssl not found!" "$LINENO" 5 + as_fn_error "libssl not found!" "$LINENO" 5 fi @@ -51598,7 +51594,7 @@ $as_echo "#define HAVE_IMAP_SSL 1" >>confdefs.h else - as_fn_error $? "OpenSSL libraries not found. + as_fn_error "OpenSSL libraries not found. Check the path given to --with-openssl-dir and output in config.log) " "$LINENO" 5 @@ -51614,7 +51610,7 @@ _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "ssl_onceonlyinit" >/dev/null 2>&1; then : - as_fn_error $? "This c-client library is built with SSL support. + as_fn_error "This c-client library is built with SSL support. Add --with-imap-ssl to your configure line. Check config.log for details. " "$LINENO" 5 @@ -51887,7 +51883,7 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } - as_fn_error $? "build test failed. Please check the config.log for details." "$LINENO" 5 + as_fn_error "build test failed. Please check the config.log for details." "$LINENO" 5 fi @@ -52053,7 +52049,7 @@ if test "$PHP_INTERBASE" != "no"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isc_detach_database in -lfbclient" >&5 $as_echo_n "checking for isc_detach_database in -lfbclient... " >&6; } -if ${ac_cv_lib_fbclient_isc_detach_database+:} false; then : +if test "${ac_cv_lib_fbclient_isc_detach_database+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -52087,7 +52083,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_fbclient_isc_detach_database" >&5 $as_echo "$ac_cv_lib_fbclient_isc_detach_database" >&6; } -if test "x$ac_cv_lib_fbclient_isc_detach_database" = xyes; then : +if test "x$ac_cv_lib_fbclient_isc_detach_database" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -52200,7 +52196,7 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isc_detach_database in -lgds" >&5 $as_echo_n "checking for isc_detach_database in -lgds... " >&6; } -if ${ac_cv_lib_gds_isc_detach_database+:} false; then : +if test "${ac_cv_lib_gds_isc_detach_database+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -52234,7 +52230,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gds_isc_detach_database" >&5 $as_echo "$ac_cv_lib_gds_isc_detach_database" >&6; } -if test "x$ac_cv_lib_gds_isc_detach_database" = xyes; then : +if test "x$ac_cv_lib_gds_isc_detach_database" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -52347,7 +52343,7 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isc_detach_database in -lib_util" >&5 $as_echo_n "checking for isc_detach_database in -lib_util... " >&6; } -if ${ac_cv_lib_ib_util_isc_detach_database+:} false; then : +if test "${ac_cv_lib_ib_util_isc_detach_database+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -52381,7 +52377,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ib_util_isc_detach_database" >&5 $as_echo "$ac_cv_lib_ib_util_isc_detach_database" >&6; } -if test "x$ac_cv_lib_ib_util_isc_detach_database" = xyes; then : +if test "x$ac_cv_lib_ib_util_isc_detach_database" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -52395,7 +52391,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_ib_util_isc_detach_database - as_fn_error $? "libgds, libib_util or libfbclient not found! Check config.log for more information." "$LINENO" 5 + as_fn_error "libgds, libib_util or libfbclient not found! Check config.log for more information." "$LINENO" 5 fi @@ -52916,7 +52912,7 @@ ext_output=$PHP_ICU_DIR set dummy icu-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_ICU_CONFIG+:} false; then : +if test "${ac_cv_path_ICU_CONFIG+set}" = set; then : $as_echo_n "(cached) " >&6 else case $ICU_CONFIG in @@ -52965,7 +52961,7 @@ $as_echo_n "checking for location of ICU headers and libraries... " >&6; } if test "$?" != "0" || test -z "$icu_install_prefix"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 $as_echo "not found" >&6; } - as_fn_error $? "Unable to detect ICU prefix or $ICU_CONFIG failed. Please verify ICU install prefix and make sure icu-config works." "$LINENO" 5 + as_fn_error "Unable to detect ICU prefix or $ICU_CONFIG failed. Please verify ICU install prefix and make sure icu-config works." "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: result: $icu_install_prefix" >&5 $as_echo "$icu_install_prefix" >&6; } @@ -52982,7 +52978,7 @@ $as_echo_n "checking for ICU 3.4 or greater... " >&6; } $as_echo "found $icu_version_full" >&6; } if test "$icu_version" -lt "3004"; then - as_fn_error $? "ICU version 3.4 or later is required" "$LINENO" 5 + as_fn_error "ICU version 3.4 or later is required" "$LINENO" 5 fi ICU_VERSION=$icu_version @@ -53140,7 +53136,7 @@ if test -z "$CXX"; then set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CXX+:} false; then : +if test "${ac_cv_prog_CXX+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$CXX"; then @@ -53184,7 +53180,7 @@ do set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_CXX+:} false; then : +if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CXX"; then @@ -53262,7 +53258,7 @@ done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 $as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } -if ${ac_cv_cxx_compiler_gnu+:} false; then : +if test "${ac_cv_cxx_compiler_gnu+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -53299,7 +53295,7 @@ ac_test_CXXFLAGS=${CXXFLAGS+set} ac_save_CXXFLAGS=$CXXFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 $as_echo_n "checking whether $CXX accepts -g... " >&6; } -if ${ac_cv_prog_cxx_g+:} false; then : +if test "${ac_cv_prog_cxx_g+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_save_cxx_werror_flag=$ac_cxx_werror_flag @@ -53389,7 +53385,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5 $as_echo_n "checking how to run the C++ preprocessor... " >&6; } if test -z "$CXXCPP"; then - if ${ac_cv_prog_CXXCPP+:} false; then : + if test "${ac_cv_prog_CXXCPP+set}" = set; then : $as_echo_n "(cached) " >&6 else # Double quotes because CXXCPP needs to be expanded @@ -53419,7 +53415,7 @@ else # Broken: fails on valid input. continue fi -rm -f conftest.err conftest.i conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. @@ -53435,11 +53431,11 @@ else ac_preproc_ok=: break fi -rm -f conftest.err conftest.i conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi @@ -53478,7 +53474,7 @@ else # Broken: fails on valid input. continue fi -rm -f conftest.err conftest.i conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. @@ -53494,18 +53490,18 @@ else ac_preproc_ok=: break fi -rm -f conftest.err conftest.i conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check -See \`config.log' for more details" "$LINENO" 5; } +as_fn_error "C++ preprocessor \"$CXXCPP\" fails sanity check +See \`config.log' for more details." "$LINENO" 5; } fi ac_ext=c @@ -54137,7 +54133,7 @@ $as_echo "#define HAVE_JSON 1 " >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } -if ${ac_cv_header_stdc+:} false; then : +if test "${ac_cv_header_stdc+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -54973,7 +54969,7 @@ EOF fi if test -z "$LDAP_DIR"; then - as_fn_error $? "Cannot find ldap.h" "$LINENO" 5 + as_fn_error "Cannot find ldap.h" "$LINENO" 5 fi @@ -56910,7 +56906,7 @@ $as_echo "#define HAVE_ORALDAP_10 1" >>confdefs.h fi else - as_fn_error $? "Cannot find ldap libraries in $LDAP_LIBDIR." "$LINENO" 5 + as_fn_error "Cannot find ldap libraries in $LDAP_LIBDIR." "$LINENO" 5 fi @@ -56958,7 +56954,7 @@ $as_echo "#define HAVE_LDAP 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking for 3 arg ldap_set_rebind_proc" >&5 $as_echo_n "checking for 3 arg ldap_set_rebind_proc... " >&6; } -if ${ac_cv_3arg_setrebindproc+:} false; then : +if test "${ac_cv_3arg_setrebindproc+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -56991,7 +56987,8 @@ $as_echo "#define HAVE_3ARG_SETREBINDPROC 1" >>confdefs.h do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test \"x\$"$as_ac_var"\" = x"yes"; then : +eval as_val=\$$as_ac_var + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF @@ -57028,7 +57025,7 @@ $as_echo "#define HAVE_LDAP_SASL_H 1" >>confdefs.h LDAP_SASL_INCDIR=$LDAP_SASL_DIR/include LDAP_SASL_LIBDIR=$LDAP_SASL_DIR/$PHP_LIBDIR else - as_fn_error $? "sasl.h not found!" "$LINENO" 5 + as_fn_error "sasl.h not found!" "$LINENO" 5 fi if test "$PHP_LDAP_SASL" = "yes"; then @@ -57136,7 +57133,7 @@ $as_echo "#define HAVE_LDAP_SASL_H 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sasl_version in -lsasl2" >&5 $as_echo_n "checking for sasl_version in -lsasl2... " >&6; } -if ${ac_cv_lib_sasl2_sasl_version+:} false; then : +if test "${ac_cv_lib_sasl2_sasl_version+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -57170,7 +57167,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sasl2_sasl_version" >&5 $as_echo "$ac_cv_lib_sasl2_sasl_version" >&6; } -if test "x$ac_cv_lib_sasl2_sasl_version" = xyes; then : +if test "x$ac_cv_lib_sasl2_sasl_version" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -57314,7 +57311,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_sasl2_sasl_version - as_fn_error $? "LDAP SASL check failed. Please check config.log for more information." "$LINENO" 5 + as_fn_error "LDAP SASL check failed. Please check config.log for more information." "$LINENO" 5 fi @@ -57323,11 +57320,11 @@ fi fi ac_fn_c_check_func "$LINENO" "ldap_bind_s" "ac_cv_func_ldap_bind_s" -if test "x$ac_cv_func_ldap_bind_s" = xyes; then : +if test "x$ac_cv_func_ldap_bind_s" = x""yes; then : else - as_fn_error $? "LDAP build check failed. Please check config.log for more information." "$LINENO" 5 + as_fn_error "LDAP build check failed. Please check config.log for more information." "$LINENO" 5 fi @@ -57517,7 +57514,7 @@ $as_echo "#define USE_COMBINATION_EXPLOSION_CHECK 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking for variable length prototypes and stdarg.h" >&5 $as_echo_n "checking for variable length prototypes and stdarg.h... " >&6; } -if ${php_cv_mbstring_stdarg+:} false; then : +if test "${php_cv_mbstring_stdarg+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -57566,7 +57563,8 @@ $as_echo "$php_cv_mbstring_stdarg" >&6; } do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : +eval as_val=\$$as_ac_Header + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF @@ -57581,7 +57579,7 @@ done # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of int" >&5 $as_echo_n "checking size of int... " >&6; } -if ${ac_cv_sizeof_int+:} false; then : +if test "${ac_cv_sizeof_int+set}" = set; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (int))" "ac_cv_sizeof_int" "$ac_includes_default"; then : @@ -57590,8 +57588,9 @@ else if test "$ac_cv_type_int" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "cannot compute sizeof (int) -See \`config.log' for more details" "$LINENO" 5; } +{ as_fn_set_status 77 +as_fn_error "cannot compute sizeof (int) +See \`config.log' for more details." "$LINENO" 5; }; } else ac_cv_sizeof_int=0 fi @@ -57614,7 +57613,7 @@ _ACEOF # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of short" >&5 $as_echo_n "checking size of short... " >&6; } -if ${ac_cv_sizeof_short+:} false; then : +if test "${ac_cv_sizeof_short+set}" = set; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (short))" "ac_cv_sizeof_short" "$ac_includes_default"; then : @@ -57623,8 +57622,9 @@ else if test "$ac_cv_type_short" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "cannot compute sizeof (short) -See \`config.log' for more details" "$LINENO" 5; } +{ as_fn_set_status 77 +as_fn_error "cannot compute sizeof (short) +See \`config.log' for more details." "$LINENO" 5; }; } else ac_cv_sizeof_short=0 fi @@ -57647,7 +57647,7 @@ _ACEOF # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long" >&5 $as_echo_n "checking size of long... " >&6; } -if ${ac_cv_sizeof_long+:} false; then : +if test "${ac_cv_sizeof_long+set}" = set; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long))" "ac_cv_sizeof_long" "$ac_includes_default"; then : @@ -57656,8 +57656,9 @@ else if test "$ac_cv_type_long" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "cannot compute sizeof (long) -See \`config.log' for more details" "$LINENO" 5; } +{ as_fn_set_status 77 +as_fn_error "cannot compute sizeof (long) +See \`config.log' for more details." "$LINENO" 5; }; } else ac_cv_sizeof_long=0 fi @@ -57676,7 +57677,7 @@ _ACEOF { $as_echo "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5 $as_echo_n "checking for an ANSI C-conforming const... " >&6; } -if ${ac_cv_c_const+:} false; then : +if test "${ac_cv_c_const+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -57756,7 +57757,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether time.h and sys/time.h may both be included" >&5 $as_echo_n "checking whether time.h and sys/time.h may both be included... " >&6; } -if ${ac_cv_header_time+:} false; then : +if test "${ac_cv_header_time+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -57793,7 +57794,7 @@ fi # for constant arguments. Useless! { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working alloca.h" >&5 $as_echo_n "checking for working alloca.h... " >&6; } -if ${ac_cv_working_alloca_h+:} false; then : +if test "${ac_cv_working_alloca_h+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -57826,7 +57827,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for alloca" >&5 $as_echo_n "checking for alloca... " >&6; } -if ${ac_cv_func_alloca_works+:} false; then : +if test "${ac_cv_func_alloca_works+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -57845,7 +57846,7 @@ else #pragma alloca # else # ifndef alloca /* predefined by HP cc +Olibcalls */ -void *alloca (size_t); +char *alloca (); # endif # endif # endif @@ -57889,7 +57890,7 @@ $as_echo "#define C_ALLOCA 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether \`alloca.c' needs Cray hooks" >&5 $as_echo_n "checking whether \`alloca.c' needs Cray hooks... " >&6; } -if ${ac_cv_os_cray+:} false; then : +if test "${ac_cv_os_cray+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -57916,7 +57917,8 @@ if test $ac_cv_os_cray = yes; then for ac_func in _getb67 GETB67 getb67; do as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test \"x\$"$as_ac_var"\" = x"yes"; then : +eval as_val=\$$as_ac_var + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define CRAY_STACKSEG_END $ac_func @@ -57930,7 +57932,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking stack direction for C alloca" >&5 $as_echo_n "checking stack direction for C alloca... " >&6; } -if ${ac_cv_c_stack_direction+:} false; then : +if test "${ac_cv_c_stack_direction+set}" = set; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : @@ -57980,7 +57982,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working memcmp" >&5 $as_echo_n "checking for working memcmp... " >&6; } -if ${ac_cv_func_memcmp_working+:} false; then : +if test "${ac_cv_func_memcmp_working+set}" = set; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : @@ -58041,7 +58043,7 @@ esac ac_fn_c_check_header_mongrel "$LINENO" "stdarg.h" "ac_cv_header_stdarg_h" "$ac_includes_default" -if test "x$ac_cv_header_stdarg_h" = xyes; then : +if test "x$ac_cv_header_stdarg_h" = x""yes; then : $as_echo "#define HAVE_STDARG_PROTOTYPES 1" >>confdefs.h @@ -58120,7 +58122,7 @@ $as_echo "#define HAVE_ONIG 1" >>confdefs.h else if test ! -f "$PHP_ONIG/include/oniguruma.h"; then - as_fn_error $? "oniguruma.h not found in $PHP_ONIG/include" "$LINENO" 5 + as_fn_error "oniguruma.h not found in $PHP_ONIG/include" "$LINENO" 5 fi if test "$PHP_ONIG/include" != "/usr/include"; then @@ -58253,7 +58255,7 @@ $as_echo "#define HAVE_ONIG 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking for onig_init in -lonig" >&5 $as_echo_n "checking for onig_init in -lonig... " >&6; } -if ${ac_cv_lib_onig_onig_init+:} false; then : +if test "${ac_cv_lib_onig_onig_init+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -58287,7 +58289,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_onig_onig_init" >&5 $as_echo "$ac_cv_lib_onig_onig_init" >&6; } -if test "x$ac_cv_lib_onig_onig_init" = xyes; then : +if test "x$ac_cv_lib_onig_onig_init" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -58400,7 +58402,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_onig_onig_init - as_fn_error $? "Problem with oniguruma. Please check config.log for more information." "$LINENO" 5 + as_fn_error "Problem with oniguruma. Please check config.log for more information." "$LINENO" 5 fi @@ -58683,7 +58685,7 @@ $as_echo "#define HAVE_MBREGEX 1" >>confdefs.h done if test -z "$PHP_LIBMBFL_INCLUDE"; then - as_fn_error $? "mbfilter.h not found. Please reinstall libmbfl library." "$LINENO" 5 + as_fn_error "mbfilter.h not found. Please reinstall libmbfl library." "$LINENO" 5 else if test "$PHP_LIBMBFL_INCLUDE" != "/usr/include"; then @@ -58817,7 +58819,7 @@ $as_echo "#define HAVE_MBREGEX 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mbfl_buffer_converter_new in -lmbfl" >&5 $as_echo_n "checking for mbfl_buffer_converter_new in -lmbfl... " >&6; } -if ${ac_cv_lib_mbfl_mbfl_buffer_converter_new+:} false; then : +if test "${ac_cv_lib_mbfl_mbfl_buffer_converter_new+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -58851,7 +58853,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mbfl_mbfl_buffer_converter_new" >&5 $as_echo "$ac_cv_lib_mbfl_mbfl_buffer_converter_new" >&6; } -if test "x$ac_cv_lib_mbfl_mbfl_buffer_converter_new" = xyes; then : +if test "x$ac_cv_lib_mbfl_mbfl_buffer_converter_new" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -58961,7 +58963,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_mbfl_mbfl_buffer_converter_new - as_fn_error $? "Problem with libmbfl. Please check config.log for more information." "$LINENO" 5 + as_fn_error "Problem with libmbfl. Please check config.log for more information." "$LINENO" 5 fi @@ -59521,7 +59523,7 @@ if test "$PHP_MCRYPT" != "no"; then done if test -z "$MCRYPT_DIR"; then - as_fn_error $? "mcrypt.h not found. Please reinstall libmcrypt." "$LINENO" 5 + as_fn_error "mcrypt.h not found. Please reinstall libmcrypt." "$LINENO" 5 fi @@ -59546,7 +59548,7 @@ $as_echo ">= 2.5.6" >&6; } else - as_fn_error $? "libmcrypt version 2.5.6 or greater required." "$LINENO" 5 + as_fn_error "libmcrypt version 2.5.6 or greater required." "$LINENO" 5 fi rm -f conftest* @@ -59653,7 +59655,7 @@ rm -f conftest* { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mcrypt_module_open in -lmcrypt" >&5 $as_echo_n "checking for mcrypt_module_open in -lmcrypt... " >&6; } -if ${ac_cv_lib_mcrypt_mcrypt_module_open+:} false; then : +if test "${ac_cv_lib_mcrypt_mcrypt_module_open+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -59687,7 +59689,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mcrypt_mcrypt_module_open" >&5 $as_echo "$ac_cv_lib_mcrypt_mcrypt_module_open" >&6; } -if test "x$ac_cv_lib_mcrypt_mcrypt_module_open" = xyes; then : +if test "x$ac_cv_lib_mcrypt_mcrypt_module_open" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -59825,7 +59827,7 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mcrypt_module_open in -lmcrypt" >&5 $as_echo_n "checking for mcrypt_module_open in -lmcrypt... " >&6; } -if ${ac_cv_lib_mcrypt_mcrypt_module_open+:} false; then : +if test "${ac_cv_lib_mcrypt_mcrypt_module_open+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -59859,7 +59861,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mcrypt_mcrypt_module_open" >&5 $as_echo "$ac_cv_lib_mcrypt_mcrypt_module_open" >&6; } -if test "x$ac_cv_lib_mcrypt_mcrypt_module_open" = xyes; then : +if test "x$ac_cv_lib_mcrypt_mcrypt_module_open" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -59875,7 +59877,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_mcrypt_mcrypt_module_open - as_fn_error $? "Sorry, I was not able to diagnose which libmcrypt version you have installed." "$LINENO" 5 + as_fn_error "Sorry, I was not able to diagnose which libmcrypt version you have installed." "$LINENO" 5 fi @@ -60374,7 +60376,7 @@ if test "$PHP_MSSQL" != "no"; then done if test -z "$FREETDS_INSTALLATION_DIR"; then - as_fn_error $? "Cannot find FreeTDS in known installation directories" "$LINENO" 5 + as_fn_error "Cannot find FreeTDS in known installation directories" "$LINENO" 5 fi elif test "$PHP_MSSQL" != "no"; then @@ -60386,12 +60388,12 @@ if test "$PHP_MSSQL" != "no"; then FREETDS_INSTALLATION_DIR=$PHP_MSSQL FREETDS_INCLUDE_DIR=$PHP_MSSQL/include/freetds else - as_fn_error $? "Directory $PHP_MSSQL is not a FreeTDS installation directory" "$LINENO" 5 + as_fn_error "Directory $PHP_MSSQL is not a FreeTDS installation directory" "$LINENO" 5 fi fi if test ! -r "$FREETDS_INSTALLATION_DIR/$PHP_LIBDIR/libsybdb.a" && test ! -r "$FREETDS_INSTALLATION_DIR/$PHP_LIBDIR/libsybdb.so"; then - as_fn_error $? "Could not find $FREETDS_INSTALLATION_DIR/$PHP_LIBDIR/libsybdb.a|so" "$LINENO" 5 + as_fn_error "Could not find $FREETDS_INSTALLATION_DIR/$PHP_LIBDIR/libsybdb.a|so" "$LINENO" 5 fi @@ -60818,7 +60820,7 @@ EOF { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_addr in -ldnet_stub" >&5 $as_echo_n "checking for dnet_addr in -ldnet_stub... " >&6; } -if ${ac_cv_lib_dnet_stub_dnet_addr+:} false; then : +if test "${ac_cv_lib_dnet_stub_dnet_addr+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -60852,7 +60854,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_stub_dnet_addr" >&5 $as_echo "$ac_cv_lib_dnet_stub_dnet_addr" >&6; } -if test "x$ac_cv_lib_dnet_stub_dnet_addr" = xyes; then : +if test "x$ac_cv_lib_dnet_stub_dnet_addr" = x""yes; then : if test "$ext_shared" = "yes"; then @@ -61086,7 +61088,7 @@ elif test "$PHP_MYSQL" != "no"; then fi if test -z "$MYSQL_DIR"; then - as_fn_error $? "Cannot find MySQL header files under $PHP_MYSQL. + as_fn_error "Cannot find MySQL header files under $PHP_MYSQL. Note that the MySQL client library is not bundled anymore!" "$LINENO" 5 fi @@ -61118,7 +61120,7 @@ Note that the MySQL client library is not bundled anymore!" "$LINENO" 5 done if test -z "$MYSQL_LIB_DIR"; then - as_fn_error $? "Cannot find lib$MYSQL_LIBNAME under $MYSQL_DIR. + as_fn_error "Cannot find lib$MYSQL_LIBNAME under $MYSQL_DIR. Note that the MySQL client library is not bundled anymore!" "$LINENO" 5 fi @@ -61222,7 +61224,7 @@ Note that the MySQL client library is not bundled anymore!" "$LINENO" 5 as_ac_Lib=`$as_echo "ac_cv_lib_$MYSQL_LIBNAME''_mysql_close" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mysql_close in -l$MYSQL_LIBNAME" >&5 $as_echo_n "checking for mysql_close in -l$MYSQL_LIBNAME... " >&6; } -if eval \${$as_ac_Lib+:} false; then : +if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -61257,7 +61259,8 @@ fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : +eval as_val=\$$as_ac_Lib + if test "x$as_val" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -61467,7 +61470,7 @@ else as_ac_Lib=`$as_echo "ac_cv_lib_$MYSQL_LIBNAME''_mysql_error" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mysql_error in -l$MYSQL_LIBNAME" >&5 $as_echo_n "checking for mysql_error in -l$MYSQL_LIBNAME... " >&6; } -if eval \${$as_ac_Lib+:} false; then : +if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -61502,7 +61505,8 @@ fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : +eval as_val=\$$as_ac_Lib + if test "x$as_val" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -61514,7 +61518,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_$MYSQL_LIBNAME_mysql_error - as_fn_error $? "mysql configure failed. Please check config.log for more information." "$LINENO" 5 + as_fn_error "mysql configure failed. Please check config.log for more information." "$LINENO" 5 fi @@ -61644,7 +61648,7 @@ fi as_ac_Lib=`$as_echo "ac_cv_lib_$MYSQL_LIBNAME''_mysql_errno" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mysql_errno in -l$MYSQL_LIBNAME" >&5 $as_echo_n "checking for mysql_errno in -l$MYSQL_LIBNAME... " >&6; } -if eval \${$as_ac_Lib+:} false; then : +if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -61679,7 +61683,8 @@ fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : +eval as_val=\$$as_ac_Lib + if test "x$as_val" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -61691,7 +61696,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_$MYSQL_LIBNAME_mysql_errno - as_fn_error $? "Try adding --with-zlib-dir=<DIR>. Please check config.log for more information." "$LINENO" 5 + as_fn_error "Try adding --with-zlib-dir=<DIR>. Please check config.log for more information." "$LINENO" 5 fi @@ -62211,7 +62216,7 @@ EOF is_it_shared=$PHP_MYSQLND_SHARED is_it_enabled=$PHP_MYSQLND if test "$am_i_shared" = "no" && test "$is_it_shared" = "yes" ; then - as_fn_error $? " + as_fn_error " You've configured extension mysql to build statically, but it depends on extension mysqlnd, which you've configured to build shared. You either need to build mysql shared or build mysqlnd statically for the @@ -62219,7 +62224,7 @@ build to be successful. " "$LINENO" 5 fi if test "x$is_it_enabled" = "xno" && test "x" != "xtrue"; then - as_fn_error $? " + as_fn_error " You've configured extension mysql, which depends on extension mysqlnd, but you've either not enabled mysqlnd, or have disabled it. " "$LINENO" 5 @@ -62327,7 +62332,7 @@ $as_echo "#define HAVE_EMBEDDED_MYSQLI 1" >>confdefs.h else { $as_echo "$as_me:${as_lineno-$LINENO}: result: mysql_config not found" >&5 $as_echo "mysql_config not found" >&6; } - as_fn_error $? "Please reinstall the mysql distribution" "$LINENO" 5 + as_fn_error "Please reinstall the mysql distribution" "$LINENO" 5 fi @@ -62430,7 +62435,7 @@ $as_echo "mysql_config not found" >&6; } as_ac_Lib=`$as_echo "ac_cv_lib_$MYSQL_LIB_NAME''_mysql_set_server_option" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mysql_set_server_option in -l$MYSQL_LIB_NAME" >&5 $as_echo_n "checking for mysql_set_server_option in -l$MYSQL_LIB_NAME... " >&6; } -if eval \${$as_ac_Lib+:} false; then : +if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -62465,7 +62470,8 @@ fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : +eval as_val=\$$as_ac_Lib + if test "x$as_val" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -62700,7 +62706,7 @@ $as_echo "#define HAVE_MYSQLILIB 1" >>confdefs.h as_ac_Lib=`$as_echo "ac_cv_lib_$MYSQL_LIB_NAME''_mysql_set_character_set" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mysql_set_character_set in -l$MYSQL_LIB_NAME" >&5 $as_echo_n "checking for mysql_set_character_set in -l$MYSQL_LIB_NAME... " >&6; } -if eval \${$as_ac_Lib+:} false; then : +if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -62735,7 +62741,8 @@ fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : +eval as_val=\$$as_ac_Lib + if test "x$as_val" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -62747,7 +62754,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_$MYSQL_LIB_NAME_mysql_set_character_set - as_fn_error $? "MySQLI doesn't support versions < 4.1.13 (for MySQL 4.1.x) and < 5.0.7 for (MySQL 5.0.x) anymore. Please update your libraries." "$LINENO" 5 + as_fn_error "MySQLI doesn't support versions < 4.1.13 (for MySQL 4.1.x) and < 5.0.7 for (MySQL 5.0.x) anymore. Please update your libraries." "$LINENO" 5 fi @@ -62760,7 +62767,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_$MYSQL_LIB_NAME_mysql_set_server_option - as_fn_error $? "wrong mysql library version or lib not found. Check config.log for more information." "$LINENO" 5 + as_fn_error "wrong mysql library version or lib not found. Check config.log for more information." "$LINENO" 5 fi @@ -62865,7 +62872,7 @@ fi as_ac_Lib=`$as_echo "ac_cv_lib_$MYSQL_LIB_NAME''_mysql_stmt_next_result" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mysql_stmt_next_result in -l$MYSQL_LIB_NAME" >&5 $as_echo_n "checking for mysql_stmt_next_result in -l$MYSQL_LIB_NAME... " >&6; } -if eval \${$as_ac_Lib+:} false; then : +if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -62900,7 +62907,8 @@ fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : +eval as_val=\$$as_ac_Lib + if test "x$as_val" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -63247,7 +63255,7 @@ EOF is_it_shared=$PHP_MYSQLND_SHARED is_it_enabled=$PHP_MYSQLND if test "$am_i_shared" = "no" && test "$is_it_shared" = "yes" ; then - as_fn_error $? " + as_fn_error " You've configured extension mysqli to build statically, but it depends on extension mysqlnd, which you've configured to build shared. You either need to build mysqli shared or build mysqlnd statically for the @@ -63255,7 +63263,7 @@ build to be successful. " "$LINENO" 5 fi if test "x$is_it_enabled" = "xno" && test "x" != "xtrue"; then - as_fn_error $? " + as_fn_error " You've configured extension mysqli, which depends on extension mysqlnd, but you've either not enabled mysqlnd, or have disabled it. " "$LINENO" 5 @@ -63331,7 +63339,7 @@ $as_echo "$ext_output" >&6; } if test "$PHP_OCI8" != "no"; then if test -z "$PHP_OCI8"; then - as_fn_error $? "Empty parameter value passed to --with-oci8" "$LINENO" 5 + as_fn_error "Empty parameter value passed to --with-oci8" "$LINENO" 5 fi @@ -63341,7 +63349,7 @@ $as_echo_n "checking PHP version... " >&6; } tmp_version=$PHP_VERSION if test -z "$tmp_version"; then if test -z "$PHP_CONFIG"; then - as_fn_error $? "php-config not found" "$LINENO" 5 + as_fn_error "php-config not found" "$LINENO" 5 fi php_version=`$PHP_CONFIG --version 2>/dev/null|head -n 1|$PHP_OCI8_SED -e 's#\([0-9]\.[0-9]*\.[0-9]*\)\(.*\)#\1#'` else @@ -63349,7 +63357,7 @@ $as_echo_n "checking PHP version... " >&6; } fi if test -z "$php_version"; then - as_fn_error $? "failed to detect PHP version, please report" "$LINENO" 5 + as_fn_error "failed to detect PHP version, please report" "$LINENO" 5 fi ac_IFS=$IFS @@ -63359,9 +63367,9 @@ $as_echo_n "checking PHP version... " >&6; } oci8_php_version=`expr $1 \* 1000000 + $2 \* 1000 + $3` if test "$oci8_php_version" -lt "4003009"; then - as_fn_error $? "You need at least PHP 4.3.9 to be able to use this version of OCI8. PHP $php_version found" "$LINENO" 5 + as_fn_error "You need at least PHP 4.3.9 to be able to use this version of OCI8. PHP $php_version found" "$LINENO" 5 elif test "$oci8_php_version" -ge "6000000"; then - as_fn_error $? "This version of OCI8 is not compatible with PHP 6 or higher" "$LINENO" 5 + as_fn_error "This version of OCI8 is not compatible with PHP 6 or higher" "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: result: $php_version, ok" >&5 $as_echo "$php_version, ok" >&6; } @@ -63374,7 +63382,7 @@ $as_echo "$php_version, ok" >&6; } # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long int" >&5 $as_echo_n "checking size of long int... " >&6; } -if ${ac_cv_sizeof_long_int+:} false; then : +if test "${ac_cv_sizeof_long_int+set}" = set; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long int))" "ac_cv_sizeof_long_int" "$ac_includes_default"; then : @@ -63383,8 +63391,9 @@ else if test "$ac_cv_type_long_int" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "cannot compute sizeof (long int) -See \`config.log' for more details" "$LINENO" 5; } +{ as_fn_set_status 77 +as_fn_error "cannot compute sizeof (long int) +See \`config.log' for more details." "$LINENO" 5; }; } else ac_cv_sizeof_long_int=0 fi @@ -63463,7 +63472,7 @@ $as_echo "$OCI8_DIR" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking ORACLE_HOME library validity" >&5 $as_echo_n "checking ORACLE_HOME library validity... " >&6; } if test ! -d "$OCI8_DIR"; then - as_fn_error $? "${OCI8_DIR} is not a directory" "$LINENO" 5 + as_fn_error "${OCI8_DIR} is not a directory" "$LINENO" 5 fi if test -d "$OCI8_DIR/lib" && test ! -d "$OCI8_DIR/lib32"; then OCI8_LIB_DIR=lib @@ -63473,9 +63482,9 @@ $as_echo_n "checking ORACLE_HOME library validity... " >&6; } OCI8_LIB_DIR=$PHP_OCI8_OH_LIBDIR else if test -f "$OCI8_DIR/libociei.$SHLIB_SUFFIX_NAME"; then - as_fn_error $? "Expected an ORACLE_HOME top level directory but ${OCI8_DIR} appears to be an Instant Client directory. Try --with-oci8=instantclient,${OCI8_DIR}" "$LINENO" 5 + as_fn_error "Expected an ORACLE_HOME top level directory but ${OCI8_DIR} appears to be an Instant Client directory. Try --with-oci8=instantclient,${OCI8_DIR}" "$LINENO" 5 else - as_fn_error $? "Oracle library directory not found in ${OCI8_DIR}" "$LINENO" 5 + as_fn_error "Oracle library directory not found in ${OCI8_DIR}" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OCI8_LIB_DIR" >&5 @@ -63824,7 +63833,7 @@ $as_echo_n "checking Oracle library version compatibility... " >&6; } OCI8_ORACLE_VERSION=8.1 fi else - as_fn_error $? "Oracle libclntsh.$SHLIB_SUFFIX_NAME client library not found" "$LINENO" 5 + as_fn_error "Oracle libclntsh.$SHLIB_SUFFIX_NAME client library not found" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OCI8_ORACLE_VERSION" >&5 $as_echo "$OCI8_ORACLE_VERSION" >&6; } @@ -63832,7 +63841,7 @@ $as_echo "$OCI8_ORACLE_VERSION" >&6; } case $OCI8_ORACLE_VERSION in 7.3|8.0|8.1) - as_fn_error $? "Oracle client libraries < 9.2 are not supported" "$LINENO" 5 + as_fn_error "Oracle client libraries < 9.2 are not supported" "$LINENO" 5 ;; 9.0) @@ -63935,7 +63944,7 @@ $as_echo "$OCI8_ORACLE_VERSION" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for OCIEnvNlsCreate in -lclntsh" >&5 $as_echo_n "checking for OCIEnvNlsCreate in -lclntsh... " >&6; } -if ${ac_cv_lib_clntsh_OCIEnvNlsCreate+:} false; then : +if test "${ac_cv_lib_clntsh_OCIEnvNlsCreate+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -63969,7 +63978,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_clntsh_OCIEnvNlsCreate" >&5 $as_echo "$ac_cv_lib_clntsh_OCIEnvNlsCreate" >&6; } -if test "x$ac_cv_lib_clntsh_OCIEnvNlsCreate" = xyes; then : +if test "x$ac_cv_lib_clntsh_OCIEnvNlsCreate" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -63983,7 +63992,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_clntsh_OCIEnvNlsCreate - as_fn_error $? "Oracle client libraries < 9.2 are not supported" "$LINENO" 5 + as_fn_error "Oracle client libraries < 9.2 are not supported" "$LINENO" 5 fi @@ -64393,7 +64402,7 @@ $as_echo_n "checking Oracle Instant Client directory... " >&6; } if test "$PHP_OCI8_INSTANT_CLIENT" = "yes"; then PHP_OCI8_INSTANT_CLIENT=`ls -d /usr/lib/oracle/*/client${PHP_OCI8_IC_LIBDIR_SUFFIX}/lib/libclntsh.* 2> /dev/null | tail -1 | $PHP_OCI8_SED -e 's#/libclntsh[^/]*##'` if test -z "$PHP_OCI8_INSTANT_CLIENT"; then - as_fn_error $? "Oracle Instant Client directory /usr/lib/oracle/.../client${PHP_OCI8_IC_LIBDIR_SUFFIX}/lib libraries not found. Try --with-oci8=instantclient,DIR" "$LINENO" 5 + as_fn_error "Oracle Instant Client directory /usr/lib/oracle/.../client${PHP_OCI8_IC_LIBDIR_SUFFIX}/lib libraries not found. Try --with-oci8=instantclient,DIR" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PHP_OCI8_INSTANT_CLIENT" >&5 @@ -64516,7 +64525,7 @@ $as_echo "$OCISDKMANINC" >&6; } OCI8INCDIR=$OCISDKMANINC else - as_fn_error $? "Oracle Instant Client SDK header files not found" "$LINENO" 5 + as_fn_error "Oracle Instant Client SDK header files not found" "$LINENO" 5 fi OCISYSLIBLIST=`echo "$OCI8INCDIR" | $PHP_OCI8_SED -e 's!\(.*\)/include$!\1/demo/sysliblist!'` @@ -64620,11 +64629,11 @@ $as_echo_n "checking Oracle Instant Client library version compatibility... " >& OCI8_NNZ=`ls $PHP_OCI8_INSTANT_CLIENT/libnnz*.$SHLIB_SUFFIX_NAME 2> /dev/null | tail -1` if test -f "$OCI8_NNZ" && test -f "$OCI8_LCS"; then if test ! -f "$OCI8_LCS_BASE"; then - as_fn_error $? "Link from $OCI8_LCS_BASE to $OCI8_LCS_BASE.*.1 not found" "$LINENO" 5 + as_fn_error "Link from $OCI8_LCS_BASE to $OCI8_LCS_BASE.*.1 not found" "$LINENO" 5 fi OCI8_ORACLE_VERSION=`echo $OCI8_LCS | $PHP_OCI8_SED -e 's/.*\.\(.*\)\.1$/\1.1/'` else - as_fn_error $? "Oracle Instant Client libraries libnnz.$SHLIB_SUFFIX_NAME and libclntsh.$SHLIB_SUFFIX_NAME not found" "$LINENO" 5 + as_fn_error "Oracle Instant Client libraries libnnz.$SHLIB_SUFFIX_NAME and libclntsh.$SHLIB_SUFFIX_NAME not found" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OCI8_ORACLE_VERSION" >&5 $as_echo "$OCI8_ORACLE_VERSION" >&6; } @@ -65220,7 +65229,7 @@ $as_echo_n "checking for Adabas support... " >&6; } ODBC_INCDIR=$PHP_ADABAS/incl if ! test -f "$ODBC_INCDIR/sqlext.h"; then - as_fn_error $? "ODBC header file '$ODBC_INCDIR/sqlext.h' not found!" "$LINENO" 5 + as_fn_error "ODBC header file '$ODBC_INCDIR/sqlext.h' not found!" "$LINENO" 5 fi @@ -65564,7 +65573,7 @@ $as_echo_n "checking for IBM DB2 support... " >&6; } if ! test -f "$ODBC_INCDIR/sqlcli1.h"; then - as_fn_error $? "ODBC header file '$ODBC_INCDIR/sqlcli1.h' not found!" "$LINENO" 5 + as_fn_error "ODBC header file '$ODBC_INCDIR/sqlcli1.h' not found!" "$LINENO" 5 fi @@ -65611,7 +65620,7 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } - as_fn_error $? " + as_fn_error " build test failed. Please check the config.log for details. You need to source your DB2 environment before running PHP configure: # . \$IBM_DB2/db2profile @@ -66293,7 +66302,7 @@ $as_echo_n "checking for unixODBC support... " >&6; } ODBC_TYPE=unixODBC if ! test -f "$ODBC_INCDIR/sqlext.h"; then - as_fn_error $? "ODBC header file '$ODBC_INCDIR/sqlext.h' not found!" "$LINENO" 5 + as_fn_error "ODBC header file '$ODBC_INCDIR/sqlext.h' not found!" "$LINENO" 5 fi @@ -66956,7 +66965,7 @@ if test "$PHP_PCNTL" != "no"; then for ac_func in fork do : ac_fn_c_check_func "$LINENO" "fork" "ac_cv_func_fork" -if test "x$ac_cv_func_fork" = xyes; then : +if test "x$ac_cv_func_fork" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_FORK 1 _ACEOF @@ -66964,14 +66973,14 @@ _ACEOF $as_echo "#define HAVE_FORK 1" >>confdefs.h else - as_fn_error $? "pcntl: fork() not supported by this platform" "$LINENO" 5 + as_fn_error "pcntl: fork() not supported by this platform" "$LINENO" 5 fi done for ac_func in waitpid do : ac_fn_c_check_func "$LINENO" "waitpid" "ac_cv_func_waitpid" -if test "x$ac_cv_func_waitpid" = xyes; then : +if test "x$ac_cv_func_waitpid" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_WAITPID 1 _ACEOF @@ -66979,14 +66988,14 @@ _ACEOF $as_echo "#define HAVE_WAITPID 1" >>confdefs.h else - as_fn_error $? "pcntl: waitpid() not supported by this platform" "$LINENO" 5 + as_fn_error "pcntl: waitpid() not supported by this platform" "$LINENO" 5 fi done for ac_func in sigaction do : ac_fn_c_check_func "$LINENO" "sigaction" "ac_cv_func_sigaction" -if test "x$ac_cv_func_sigaction" = xyes; then : +if test "x$ac_cv_func_sigaction" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_SIGACTION 1 _ACEOF @@ -66994,7 +67003,7 @@ _ACEOF $as_echo "#define HAVE_SIGACTION 1" >>confdefs.h else - as_fn_error $? "pcntl: sigaction() not supported by this platform" "$LINENO" 5 + as_fn_error "pcntl: sigaction() not supported by this platform" "$LINENO" 5 fi done @@ -67002,7 +67011,8 @@ done do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test \"x\$"$as_ac_var"\" = x"yes"; then : +eval as_val=\$$as_ac_var + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF @@ -67368,7 +67378,7 @@ if test "$PHP_PDO" != "no"; then # we're running in an environment that smells like pear, # and the PHP_PEAR_VERSION env var is not set. That implies # that we're running under a slightly broken pear installer - as_fn_error $? " + as_fn_error " PDO requires that you upgrade your PEAR installer tools. Please do so now by running: @@ -67384,7 +67394,7 @@ Once you've upgraded, please re-try your PDO install. if test "$ext_shared" = "yes" ; then case $host_alias in *darwin*) - as_fn_error $? " + as_fn_error " Due to the way that loadable modules work on OSX/Darwin, you need to compile the PDO package statically into the PHP core. @@ -67694,7 +67704,7 @@ EOF is_it_shared=$PHP_SPL_SHARED is_it_enabled=$PHP_SPL if test "$am_i_shared" = "no" && test "$is_it_shared" = "yes" ; then - as_fn_error $? " + as_fn_error " You've configured extension pdo to build statically, but it depends on extension spl, which you've configured to build shared. You either need to build pdo shared or build spl statically for the @@ -67702,7 +67712,7 @@ build to be successful. " "$LINENO" 5 fi if test "x$is_it_enabled" = "xno" && test "xtrue" != "xtrue"; then - as_fn_error $? " + as_fn_error " You've configured extension pdo, which depends on extension spl, but you've either not enabled spl, or have disabled it. " "$LINENO" 5 @@ -67791,7 +67801,7 @@ $as_echo "$ext_output" >&6; } if test "$PHP_PDO_DBLIB" != "no"; then if test "$PHP_PDO" = "no" && test "$ext_shared" = "no"; then - as_fn_error $? "PDO is not enabled! Add --enable-pdo to your configure line." "$LINENO" 5 + as_fn_error "PDO is not enabled! Add --enable-pdo to your configure line." "$LINENO" 5 fi if test "$PHP_PDO_DBLIB" = "yes"; then @@ -67809,7 +67819,7 @@ if test "$PHP_PDO_DBLIB" != "no"; then done if test -z "$PDO_FREETDS_INSTALLATION_DIR"; then - as_fn_error $? "Cannot find FreeTDS in known installation directories" "$LINENO" 5 + as_fn_error "Cannot find FreeTDS in known installation directories" "$LINENO" 5 fi elif test "$PHP_PDO_DBLIB" != "no"; then @@ -67821,7 +67831,7 @@ if test "$PHP_PDO_DBLIB" != "no"; then PDO_FREETDS_INSTALLATION_DIR=$PHP_PDO_DBLIB PDO_FREETDS_INCLUDE_DIR=$PHP_PDO_DBLIB/include/freetds else - as_fn_error $? "Directory $PHP_PDO_DBLIB is not a FreeTDS installation directory" "$LINENO" 5 + as_fn_error "Directory $PHP_PDO_DBLIB is not a FreeTDS installation directory" "$LINENO" 5 fi fi @@ -67830,7 +67840,7 @@ if test "$PHP_PDO_DBLIB" != "no"; then fi if test ! -r "$PDO_FREETDS_INSTALLATION_DIR/$PHP_LIBDIR/libsybdb.a" && test ! -r "$PDO_FREETDS_INSTALLATION_DIR/$PHP_LIBDIR/libsybdb.so"; then - as_fn_error $? "Could not find $PDO_FREETDS_INSTALLATION_DIR/$PHP_LIBDIR/libsybdb.a|so" "$LINENO" 5 + as_fn_error "Could not find $PDO_FREETDS_INSTALLATION_DIR/$PHP_LIBDIR/libsybdb.a|so" "$LINENO" 5 fi @@ -67966,7 +67976,7 @@ if test "$PHP_PDO_DBLIB" != "no"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PDO includes" >&5 $as_echo_n "checking for PDO includes... " >&6; } -if ${pdo_cv_inc_path+:} false; then : +if test "${pdo_cv_inc_path+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -67986,7 +67996,7 @@ $as_echo "$pdo_cv_inc_path" >&6; } if test -n "$pdo_cv_inc_path"; then : else -as_fn_error $? "Cannot find php_pdo_driver.h." "$LINENO" 5 +as_fn_error "Cannot find php_pdo_driver.h." "$LINENO" 5 fi @@ -68287,7 +68297,7 @@ EOF { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_addr in -ldnet_stub" >&5 $as_echo_n "checking for dnet_addr in -ldnet_stub... " >&6; } -if ${ac_cv_lib_dnet_stub_dnet_addr+:} false; then : +if test "${ac_cv_lib_dnet_stub_dnet_addr+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -68321,7 +68331,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_stub_dnet_addr" >&5 $as_echo "$ac_cv_lib_dnet_stub_dnet_addr" >&6; } -if test "x$ac_cv_lib_dnet_stub_dnet_addr" = xyes; then : +if test "x$ac_cv_lib_dnet_stub_dnet_addr" = x""yes; then : if test "$ext_shared" = "yes"; then @@ -68441,7 +68451,7 @@ $as_echo "#define HAVE_FREETDS 1" >>confdefs.h is_it_shared=$PHP_PDO_SHARED is_it_enabled=$PHP_PDO if test "$am_i_shared" = "no" && test "$is_it_shared" = "yes" ; then - as_fn_error $? " + as_fn_error " You've configured extension pdo_dblib to build statically, but it depends on extension pdo, which you've configured to build shared. You either need to build pdo_dblib shared or build pdo statically for the @@ -68449,7 +68459,7 @@ build to be successful. " "$LINENO" 5 fi if test "x$is_it_enabled" = "xno" && test "x" != "xtrue"; then - as_fn_error $? " + as_fn_error " You've configured extension pdo_dblib, which depends on extension pdo, but you've either not enabled pdo, or have disabled it. " "$LINENO" 5 @@ -68507,7 +68517,7 @@ $as_echo "$ext_output" >&6; } if test "$PHP_PDO_FIREBIRD" != "no"; then if test "$PHP_PDO" = "no" && test "$ext_shared" = "no"; then - as_fn_error $? "PDO is not enabled! Add --enable-pdo to your configure line." "$LINENO" 5 + as_fn_error "PDO is not enabled! Add --enable-pdo to your configure line." "$LINENO" 5 fi if test "$PHP_PDO_FIREBIRD" = "yes"; then @@ -68619,7 +68629,7 @@ if test "$PHP_PDO_FIREBIRD" != "no"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isc_detach_database in -lfbclient" >&5 $as_echo_n "checking for isc_detach_database in -lfbclient... " >&6; } -if ${ac_cv_lib_fbclient_isc_detach_database+:} false; then : +if test "${ac_cv_lib_fbclient_isc_detach_database+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -68653,7 +68663,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_fbclient_isc_detach_database" >&5 $as_echo "$ac_cv_lib_fbclient_isc_detach_database" >&6; } -if test "x$ac_cv_lib_fbclient_isc_detach_database" = xyes; then : +if test "x$ac_cv_lib_fbclient_isc_detach_database" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -68766,7 +68776,7 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isc_detach_database in -lgds" >&5 $as_echo_n "checking for isc_detach_database in -lgds... " >&6; } -if ${ac_cv_lib_gds_isc_detach_database+:} false; then : +if test "${ac_cv_lib_gds_isc_detach_database+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -68800,7 +68810,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gds_isc_detach_database" >&5 $as_echo "$ac_cv_lib_gds_isc_detach_database" >&6; } -if test "x$ac_cv_lib_gds_isc_detach_database" = xyes; then : +if test "x$ac_cv_lib_gds_isc_detach_database" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -68913,7 +68923,7 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isc_detach_database in -lib_util" >&5 $as_echo_n "checking for isc_detach_database in -lib_util... " >&6; } -if ${ac_cv_lib_ib_util_isc_detach_database+:} false; then : +if test "${ac_cv_lib_ib_util_isc_detach_database+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -68947,7 +68957,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ib_util_isc_detach_database" >&5 $as_echo "$ac_cv_lib_ib_util_isc_detach_database" >&6; } -if test "x$ac_cv_lib_ib_util_isc_detach_database" = xyes; then : +if test "x$ac_cv_lib_ib_util_isc_detach_database" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -68961,7 +68971,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_ib_util_isc_detach_database - as_fn_error $? "libfbclient, libgds or libib_util not found! Check config.log for more information." "$LINENO" 5 + as_fn_error "libfbclient, libgds or libib_util not found! Check config.log for more information." "$LINENO" 5 fi @@ -68978,7 +68988,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PDO includes" >&5 $as_echo_n "checking for PDO includes... " >&6; } -if ${pdo_cv_inc_path+:} false; then : +if test "${pdo_cv_inc_path+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -68998,7 +69008,7 @@ $as_echo "$pdo_cv_inc_path" >&6; } if test -n "$pdo_cv_inc_path"; then : else -as_fn_error $? "Cannot find php_pdo_driver.h." "$LINENO" 5 +as_fn_error "Cannot find php_pdo_driver.h." "$LINENO" 5 fi @@ -69434,7 +69444,7 @@ EOF is_it_shared=$PHP_PDO_SHARED is_it_enabled=$PHP_PDO if test "$am_i_shared" = "no" && test "$is_it_shared" = "yes" ; then - as_fn_error $? " + as_fn_error " You've configured extension pdo_firebird to build statically, but it depends on extension pdo, which you've configured to build shared. You either need to build pdo_firebird shared or build pdo statically for the @@ -69442,7 +69452,7 @@ build to be successful. " "$LINENO" 5 fi if test "x$is_it_enabled" = "xno" && test "x" != "xtrue"; then - as_fn_error $? " + as_fn_error " You've configured extension pdo_firebird, which depends on extension pdo, but you've either not enabled pdo, or have disabled it. " "$LINENO" 5 @@ -69525,7 +69535,7 @@ fi if test "$PHP_PDO_MYSQL" != "no"; then if test "$PHP_PDO" = "no" && test "$ext_shared" = "no"; then - as_fn_error $? "PDO is not enabled! Add --enable-pdo to your configure line." "$LINENO" 5 + as_fn_error "PDO is not enabled! Add --enable-pdo to your configure line." "$LINENO" 5 fi @@ -69564,7 +69574,7 @@ $as_echo "$PDO_MYSQL_CONFIG" >&6; } set dummy sed; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_SED+:} false; then : +if test "${ac_cv_path_SED+set}" = set; then : $as_echo_n "(cached) " >&6 else case $SED in @@ -69631,7 +69641,7 @@ $as_echo "libs under $PDO_MYSQL_LIB_DIR; seems promising" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: can not find it" >&5 $as_echo "can not find it" >&6; } - as_fn_error $? "Unable to find your mysql installation" "$LINENO" 5 + as_fn_error "Unable to find your mysql installation" "$LINENO" 5 fi @@ -69669,7 +69679,7 @@ $as_echo "can not find it" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 $as_echo "not found" >&6; } - as_fn_error $? "Unable to find your mysql installation" "$LINENO" 5 + as_fn_error "Unable to find your mysql installation" "$LINENO" 5 fi @@ -69772,7 +69782,7 @@ $as_echo "not found" >&6; } as_ac_Lib=`$as_echo "ac_cv_lib_$PDO_MYSQL_LIBNAME''_mysql_commit" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mysql_commit in -l$PDO_MYSQL_LIBNAME" >&5 $as_echo_n "checking for mysql_commit in -l$PDO_MYSQL_LIBNAME... " >&6; } -if eval \${$as_ac_Lib+:} false; then : +if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -69807,7 +69817,8 @@ fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : +eval as_val=\$$as_ac_Lib + if test "x$as_val" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -70147,7 +70158,7 @@ else as_ac_Lib=`$as_echo "ac_cv_lib_$PDO_MYSQL_LIBNAME''_mysql_commit" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mysql_commit in -l$PDO_MYSQL_LIBNAME" >&5 $as_echo_n "checking for mysql_commit in -l$PDO_MYSQL_LIBNAME... " >&6; } -if eval \${$as_ac_Lib+:} false; then : +if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -70182,7 +70193,8 @@ fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : +eval as_val=\$$as_ac_Lib + if test "x$as_val" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -70194,7 +70206,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_$PDO_MYSQL_LIBNAME_mysql_commit - as_fn_error $? "PDO_MYSQL configure failed, MySQL 4.1 needed. Please check config.log for more information." "$LINENO" 5 + as_fn_error "PDO_MYSQL configure failed, MySQL 4.1 needed. Please check config.log for more information." "$LINENO" 5 fi @@ -70324,7 +70336,7 @@ fi as_ac_Lib=`$as_echo "ac_cv_lib_$PDO_MYSQL_LIBNAME''_mysql_query" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mysql_query in -l$PDO_MYSQL_LIBNAME" >&5 $as_echo_n "checking for mysql_query in -l$PDO_MYSQL_LIBNAME... " >&6; } -if eval \${$as_ac_Lib+:} false; then : +if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -70359,7 +70371,8 @@ fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : +eval as_val=\$$as_ac_Lib + if test "x$as_val" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -70371,7 +70384,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_$PDO_MYSQL_LIBNAME_mysql_query - as_fn_error $? "Try adding --with-zlib-dir=<DIR>. Please check config.log for more information." "$LINENO" 5 + as_fn_error "Try adding --with-zlib-dir=<DIR>. Please check config.log for more information." "$LINENO" 5 fi @@ -70518,7 +70531,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PDO includes" >&5 $as_echo_n "checking for PDO includes... " >&6; } -if ${pdo_cv_inc_path+:} false; then : +if test "${pdo_cv_inc_path+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -70538,7 +70551,7 @@ $as_echo "$pdo_cv_inc_path" >&6; } if test -n "$pdo_cv_inc_path"; then : else -as_fn_error $? "Cannot find php_pdo_driver.h." "$LINENO" 5 +as_fn_error "Cannot find php_pdo_driver.h." "$LINENO" 5 fi @@ -70851,7 +70864,7 @@ EOF is_it_shared=$PHP_PDO_SHARED is_it_enabled=$PHP_PDO if test "$am_i_shared" = "no" && test "$is_it_shared" = "yes" ; then - as_fn_error $? " + as_fn_error " You've configured extension pdo_mysql to build statically, but it depends on extension pdo, which you've configured to build shared. You either need to build pdo_mysql shared or build pdo statically for the @@ -70859,7 +70872,7 @@ build to be successful. " "$LINENO" 5 fi if test "x$is_it_enabled" = "xno" && test "x" != "xtrue"; then - as_fn_error $? " + as_fn_error " You've configured extension pdo_mysql, which depends on extension pdo, but you've either not enabled pdo, or have disabled it. " "$LINENO" 5 @@ -70871,7 +70884,7 @@ but you've either not enabled pdo, or have disabled it. is_it_shared=$PHP_MYSQLND_SHARED is_it_enabled=$PHP_MYSQLND if test "$am_i_shared" = "no" && test "$is_it_shared" = "yes" ; then - as_fn_error $? " + as_fn_error " You've configured extension pdo_mysql to build statically, but it depends on extension mysqlnd, which you've configured to build shared. You either need to build pdo_mysql shared or build mysqlnd statically for the @@ -70879,7 +70892,7 @@ build to be successful. " "$LINENO" 5 fi if test "x$is_it_enabled" = "xno" && test "x" != "xtrue"; then - as_fn_error $? " + as_fn_error " You've configured extension pdo_mysql, which depends on extension mysqlnd, but you've either not enabled mysqlnd, or have disabled it. " "$LINENO" 5 @@ -70954,7 +70967,7 @@ $as_echo "$ext_output" >&6; } if test "$PHP_PDO_OCI" != "no"; then if test "$PHP_PDO" = "no" && test "$ext_shared" = "no"; then - as_fn_error $? "PDO is not enabled! Add --enable-pdo to your configure line." "$LINENO" 5 + as_fn_error "PDO is not enabled! Add --enable-pdo to your configure line." "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking Oracle Install-Dir" >&5 @@ -70970,7 +70983,7 @@ $as_echo "$PHP_PDO_OCI" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking if that is sane" >&5 $as_echo_n "checking if that is sane... " >&6; } if test -z "$PDO_OCI_DIR"; then - as_fn_error $? " + as_fn_error " You need to tell me where to find your Oracle Instant Client SDK, or set ORACLE_HOME. " "$LINENO" 5 else @@ -70985,7 +70998,7 @@ $as_echo "yes" >&6; } # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long int" >&5 $as_echo_n "checking size of long int... " >&6; } -if ${ac_cv_sizeof_long_int+:} false; then : +if test "${ac_cv_sizeof_long_int+set}" = set; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long int))" "ac_cv_sizeof_long_int" "$ac_includes_default"; then : @@ -70994,8 +71007,9 @@ else if test "$ac_cv_type_long_int" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "cannot compute sizeof (long int) -See \`config.log' for more details" "$LINENO" 5; } +{ as_fn_set_status 77 +as_fn_error "cannot compute sizeof (long int) +See \`config.log' for more details." "$LINENO" 5; }; } else ac_cv_sizeof_long_int=0 fi @@ -71165,7 +71179,7 @@ $as_echo "$PDO_OCI_IC_PREFIX/sdk/include" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PDO_OCI_IC_PREFIX/$PDO_OCI_CLIENT_DIR/include" >&5 $as_echo "$PDO_OCI_IC_PREFIX/$PDO_OCI_CLIENT_DIR/include" >&6; } else - as_fn_error $? "I'm too dumb to figure out where the include dir is in your Instant Client install" "$LINENO" 5 + as_fn_error "I'm too dumb to figure out where the include dir is in your Instant Client install" "$LINENO" 5 fi if test -f "$PDO_OCI_IC_PREFIX/lib/oracle/$PDO_OCI_IC_VERS/$PDO_OCI_CLIENT_DIR/lib/libclntsh.$SHLIB_SUFFIX_NAME" ; then PDO_OCI_LIB_DIR="$PDO_OCI_IC_PREFIX/lib/oracle/$PDO_OCI_IC_VERS/$PDO_OCI_CLIENT_DIR/lib" @@ -71174,7 +71188,7 @@ $as_echo "$PDO_OCI_IC_PREFIX/$PDO_OCI_CLIENT_DIR/include" >&6; } elif test -f "$PDO_OCI_IC_PREFIX/libclntsh.$SHLIB_SUFFIX_NAME" ; then PDO_OCI_LIB_DIR="$PDO_OCI_IC_PREFIX" else - as_fn_error $? "I'm too dumb to figure out where the libraries are in your Instant Client install" "$LINENO" 5 + as_fn_error "I'm too dumb to figure out where the libraries are in your Instant Client install" "$LINENO" 5 fi PDO_OCI_VERSION="`echo $PDO_OCI_IC_VERS | cut -d. -f1-2`" else @@ -71185,7 +71199,7 @@ $as_echo "$PDO_OCI_IC_PREFIX/$PDO_OCI_CLIENT_DIR/include" >&6; } # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long int" >&5 $as_echo_n "checking size of long int... " >&6; } -if ${ac_cv_sizeof_long_int+:} false; then : +if test "${ac_cv_sizeof_long_int+set}" = set; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long int))" "ac_cv_sizeof_long_int" "$ac_includes_default"; then : @@ -71194,8 +71208,9 @@ else if test "$ac_cv_type_long_int" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "cannot compute sizeof (long int) -See \`config.log' for more details" "$LINENO" 5; } +{ as_fn_set_status 77 +as_fn_error "cannot compute sizeof (long int) +See \`config.log' for more details." "$LINENO" 5; }; } else ac_cv_sizeof_long_int=0 fi @@ -71233,7 +71248,7 @@ $as_echo_n "checking OCI8 libraries dir... " >&6; } elif test -d "$PDO_OCI_DIR/lib" && test -d "$PDO_OCI_DIR/lib32"; then PDO_OCI_LIB_DIR=$TMP_PDO_OCI_LIB_DIR else - as_fn_error $? "Oracle required OCI8 libraries not found" "$LINENO" 5 + as_fn_error "Oracle required OCI8 libraries not found" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PDO_OCI_LIB_DIR" >&5 $as_echo "$PDO_OCI_LIB_DIR" >&6; } @@ -71600,7 +71615,7 @@ $as_echo_n "checking Oracle version... " >&6; } fi done if test -z "$PDO_OCI_VERSION"; then - as_fn_error $? "Oracle required OCI8 libraries not found under $PDO_OCI_DIR" "$LINENO" 5 + as_fn_error "Oracle required OCI8 libraries not found under $PDO_OCI_DIR" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PDO_OCI_VERSION" >&5 $as_echo "$PDO_OCI_VERSION" >&6; } @@ -71635,7 +71650,7 @@ $as_echo "$PDO_OCI_VERSION" >&6; } ;; *) - as_fn_error $? "Unsupported Oracle version $PDO_OCI_VERSION" "$LINENO" 5 + as_fn_error "Unsupported Oracle version $PDO_OCI_VERSION" "$LINENO" 5 ;; esac @@ -71777,7 +71792,7 @@ $as_echo "$PDO_OCI_VERSION" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for OCIEnvCreate in -lclntsh" >&5 $as_echo_n "checking for OCIEnvCreate in -lclntsh... " >&6; } -if ${ac_cv_lib_clntsh_OCIEnvCreate+:} false; then : +if test "${ac_cv_lib_clntsh_OCIEnvCreate+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -71811,7 +71826,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_clntsh_OCIEnvCreate" >&5 $as_echo "$ac_cv_lib_clntsh_OCIEnvCreate" >&6; } -if test "x$ac_cv_lib_clntsh_OCIEnvCreate" = xyes; then : +if test "x$ac_cv_lib_clntsh_OCIEnvCreate" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -71930,7 +71945,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for OCIEnvNlsCreate in -lclntsh" >&5 $as_echo_n "checking for OCIEnvNlsCreate in -lclntsh... " >&6; } -if ${ac_cv_lib_clntsh_OCIEnvNlsCreate+:} false; then : +if test "${ac_cv_lib_clntsh_OCIEnvNlsCreate+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -71964,7 +71979,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_clntsh_OCIEnvNlsCreate" >&5 $as_echo "$ac_cv_lib_clntsh_OCIEnvNlsCreate" >&6; } -if test "x$ac_cv_lib_clntsh_OCIEnvNlsCreate" = xyes; then : +if test "x$ac_cv_lib_clntsh_OCIEnvNlsCreate" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -72083,7 +72098,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for OCILobIsTemporary in -lclntsh" >&5 $as_echo_n "checking for OCILobIsTemporary in -lclntsh... " >&6; } -if ${ac_cv_lib_clntsh_OCILobIsTemporary+:} false; then : +if test "${ac_cv_lib_clntsh_OCILobIsTemporary+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -72117,7 +72132,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_clntsh_OCILobIsTemporary" >&5 $as_echo "$ac_cv_lib_clntsh_OCILobIsTemporary" >&6; } -if test "x$ac_cv_lib_clntsh_OCILobIsTemporary" = xyes; then : +if test "x$ac_cv_lib_clntsh_OCILobIsTemporary" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -72232,7 +72247,7 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for OCILobIsTemporary in -locijdbc8" >&5 $as_echo_n "checking for OCILobIsTemporary in -locijdbc8... " >&6; } -if ${ac_cv_lib_ocijdbc8_OCILobIsTemporary+:} false; then : +if test "${ac_cv_lib_ocijdbc8_OCILobIsTemporary+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -72266,7 +72281,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ocijdbc8_OCILobIsTemporary" >&5 $as_echo "$ac_cv_lib_ocijdbc8_OCILobIsTemporary" >&6; } -if test "x$ac_cv_lib_ocijdbc8_OCILobIsTemporary" = xyes; then : +if test "x$ac_cv_lib_ocijdbc8_OCILobIsTemporary" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -72412,7 +72427,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for OCICollAssign in -lclntsh" >&5 $as_echo_n "checking for OCICollAssign in -lclntsh... " >&6; } -if ${ac_cv_lib_clntsh_OCICollAssign+:} false; then : +if test "${ac_cv_lib_clntsh_OCICollAssign+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -72446,7 +72461,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_clntsh_OCICollAssign" >&5 $as_echo "$ac_cv_lib_clntsh_OCICollAssign" >&6; } -if test "x$ac_cv_lib_clntsh_OCICollAssign" = xyes; then : +if test "x$ac_cv_lib_clntsh_OCICollAssign" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -72565,7 +72580,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for OCIStmtFetch2 in -lclntsh" >&5 $as_echo_n "checking for OCIStmtFetch2 in -lclntsh... " >&6; } -if ${ac_cv_lib_clntsh_OCIStmtFetch2+:} false; then : +if test "${ac_cv_lib_clntsh_OCIStmtFetch2+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -72599,7 +72614,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_clntsh_OCIStmtFetch2" >&5 $as_echo "$ac_cv_lib_clntsh_OCIStmtFetch2" >&6; } -if test "x$ac_cv_lib_clntsh_OCIStmtFetch2" = xyes; then : +if test "x$ac_cv_lib_clntsh_OCIStmtFetch2" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -72623,7 +72638,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PDO includes" >&5 $as_echo_n "checking for PDO includes... " >&6; } -if ${pdo_cv_inc_path+:} false; then : +if test "${pdo_cv_inc_path+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -72643,7 +72658,7 @@ $as_echo "$pdo_cv_inc_path" >&6; } if test -n "$pdo_cv_inc_path"; then : else -as_fn_error $? "Cannot find php_pdo_driver.h." "$LINENO" 5 +as_fn_error "Cannot find php_pdo_driver.h." "$LINENO" 5 fi @@ -72967,7 +72982,7 @@ EOF is_it_shared=$PHP_PDO_SHARED is_it_enabled=$PHP_PDO if test "$am_i_shared" = "no" && test "$is_it_shared" = "yes" ; then - as_fn_error $? " + as_fn_error " You've configured extension pdo_oci to build statically, but it depends on extension pdo, which you've configured to build shared. You either need to build pdo_oci shared or build pdo statically for the @@ -72975,7 +72990,7 @@ build to be successful. " "$LINENO" 5 fi if test "x$is_it_enabled" = "xno" && test "x" != "xtrue"; then - as_fn_error $? " + as_fn_error " You've configured extension pdo_oci, which depends on extension pdo, but you've either not enabled pdo, or have disabled it. " "$LINENO" 5 @@ -73045,14 +73060,14 @@ $as_echo "$ext_output" >&6; } if test "$PHP_PDO_ODBC" != "no"; then if test "$PHP_PDO" = "no" && test "$ext_shared" = "no"; then - as_fn_error $? "PDO is not enabled! Add --enable-pdo to your configure line." "$LINENO" 5 + as_fn_error "PDO is not enabled! Add --enable-pdo to your configure line." "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PDO includes" >&5 $as_echo_n "checking for PDO includes... " >&6; } -if ${pdo_cv_inc_path+:} false; then : +if test "${pdo_cv_inc_path+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -73072,7 +73087,7 @@ $as_echo "$pdo_cv_inc_path" >&6; } if test -n "$pdo_cv_inc_path"; then : else -as_fn_error $? "Cannot find php_pdo_driver.h." "$LINENO" 5 +as_fn_error "Cannot find php_pdo_driver.h." "$LINENO" 5 fi @@ -73120,7 +73135,7 @@ $as_echo_n "checking for selected PDO ODBC flavour... " >&6; } ;; *) - as_fn_error $? "Unknown ODBC flavour $pdo_odbc_flavour + as_fn_error "Unknown ODBC flavour $pdo_odbc_flavour include and lib dirs are looked for under 'dir'. 'flavour' can be one of: ibm-db2, iODBC, unixODBC, generic @@ -73431,7 +73446,7 @@ $as_echo "no" >&6; } if test "$php_pdo_have_header" != "yes"; then - as_fn_error $? "Cannot find header file(s) for pdo_odbc" "$LINENO" 5 + as_fn_error "Cannot find header file(s) for pdo_odbc" "$LINENO" 5 fi PDO_ODBC_INCLUDE="$pdo_odbc_def_cflags -I$PDO_ODBC_INCDIR -DPDO_ODBC_TYPE=\\\"$pdo_odbc_flavour\\\"" @@ -73625,7 +73640,7 @@ $as_echo "no" >&6; } as_ac_Lib=`$as_echo "ac_cv_lib_$pdo_odbc_def_lib''_SQLBindCol" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SQLBindCol in -l$pdo_odbc_def_lib" >&5 $as_echo_n "checking for SQLBindCol in -l$pdo_odbc_def_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : +if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -73660,7 +73675,8 @@ fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : +eval as_val=\$$as_ac_Lib + if test "x$as_val" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -73763,7 +73779,7 @@ if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : as_ac_Lib=`$as_echo "ac_cv_lib_$pdo_odbc_def_lib''_SQLAllocHandle" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SQLAllocHandle in -l$pdo_odbc_def_lib" >&5 $as_echo_n "checking for SQLAllocHandle in -l$pdo_odbc_def_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : +if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -73798,7 +73814,8 @@ fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : +eval as_val=\$$as_ac_Lib + if test "x$as_val" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -73810,7 +73827,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_$pdo_odbc_def_lib_SQLAllocHandle - as_fn_error $? " + as_fn_error " Your ODBC library does not appear to be ODBC 3 compatible. You should consider using iODBC or unixODBC instead, and loading your libraries as a driver in that environment; it will emulate the @@ -73827,7 +73844,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_$pdo_odbc_def_lib_SQLBindCol - as_fn_error $? "Your ODBC library does not exist or there was an error. Check config.log for more information" "$LINENO" 5 + as_fn_error "Your ODBC library does not exist or there was an error. Check config.log for more information" "$LINENO" 5 fi @@ -74135,7 +74152,7 @@ EOF is_it_shared=$PHP_PDO_SHARED is_it_enabled=$PHP_PDO if test "$am_i_shared" = "no" && test "$is_it_shared" = "yes" ; then - as_fn_error $? " + as_fn_error " You've configured extension pdo_odbc to build statically, but it depends on extension pdo, which you've configured to build shared. You either need to build pdo_odbc shared or build pdo statically for the @@ -74143,7 +74160,7 @@ build to be successful. " "$LINENO" 5 fi if test "x$is_it_enabled" = "xno" && test "x" != "xtrue"; then - as_fn_error $? " + as_fn_error " You've configured extension pdo_odbc, which depends on extension pdo, but you've either not enabled pdo, or have disabled it. " "$LINENO" 5 @@ -74201,7 +74218,7 @@ $as_echo "$ext_output" >&6; } if test "$PHP_PDO_PGSQL" != "no"; then if test "$PHP_PDO" = "no" && test "$ext_shared" = "no"; then - as_fn_error $? "PDO is not enabled! Add --enable-pdo to your configure line." "$LINENO" 5 + as_fn_error "PDO is not enabled! Add --enable-pdo to your configure line." "$LINENO" 5 fi @@ -74264,15 +74281,15 @@ $as_echo "#define HAVE_PG_CONFIG_H 1" >>confdefs.h fi if test -z "$PGSQL_INCLUDE"; then - as_fn_error $? "Cannot find libpq-fe.h. Please specify correct PostgreSQL installation path" "$LINENO" 5 + as_fn_error "Cannot find libpq-fe.h. Please specify correct PostgreSQL installation path" "$LINENO" 5 fi if test -z "$PGSQL_LIBDIR"; then - as_fn_error $? "Cannot find libpq.so. Please specify correct PostgreSQL installation path" "$LINENO" 5 + as_fn_error "Cannot find libpq.so. Please specify correct PostgreSQL installation path" "$LINENO" 5 fi if test -z "$PGSQL_INCLUDE" -a -z "$PGSQL_LIBDIR" ; then - as_fn_error $? "Unable to find libpq anywhere under $PGSQL_SEARCH_PATHS" "$LINENO" 5 + as_fn_error "Unable to find libpq anywhere under $PGSQL_SEARCH_PATHS" "$LINENO" 5 fi @@ -74289,7 +74306,7 @@ $as_echo "yes" >&6; } set dummy pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_PKG_CONFIG+:} false; then : +if test "${ac_cv_path_PKG_CONFIG+set}" = set; then : $as_echo_n "(cached) " >&6 else case $PKG_CONFIG in @@ -74339,7 +74356,7 @@ $as_echo "no" >&6; } LDFLAGS="-L$PGSQL_LIBDIR $LDFLAGS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PQparameterStatus in -lpq" >&5 $as_echo_n "checking for PQparameterStatus in -lpq... " >&6; } -if ${ac_cv_lib_pq_PQparameterStatus+:} false; then : +if test "${ac_cv_lib_pq_PQparameterStatus+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -74373,7 +74390,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_PQparameterStatus" >&5 $as_echo "$ac_cv_lib_pq_PQparameterStatus" >&6; } -if test "x$ac_cv_lib_pq_PQparameterStatus" = xyes; then : +if test "x$ac_cv_lib_pq_PQparameterStatus" = x""yes; then : $as_echo "#define HAVE_PQPARAMETERSTATUS 1" >>confdefs.h @@ -74387,7 +74404,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PQprepare in -lpq" >&5 $as_echo_n "checking for PQprepare in -lpq... " >&6; } -if ${ac_cv_lib_pq_PQprepare+:} false; then : +if test "${ac_cv_lib_pq_PQprepare+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -74421,7 +74438,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_PQprepare" >&5 $as_echo "$ac_cv_lib_pq_PQprepare" >&6; } -if test "x$ac_cv_lib_pq_PQprepare" = xyes; then : +if test "x$ac_cv_lib_pq_PQprepare" = x""yes; then : $as_echo "#define HAVE_PQPREPARE 1" >>confdefs.h @@ -74429,7 +74446,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PQescapeStringConn in -lpq" >&5 $as_echo_n "checking for PQescapeStringConn in -lpq... " >&6; } -if ${ac_cv_lib_pq_PQescapeStringConn+:} false; then : +if test "${ac_cv_lib_pq_PQescapeStringConn+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -74463,7 +74480,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_PQescapeStringConn" >&5 $as_echo "$ac_cv_lib_pq_PQescapeStringConn" >&6; } -if test "x$ac_cv_lib_pq_PQescapeStringConn" = xyes; then : +if test "x$ac_cv_lib_pq_PQescapeStringConn" = x""yes; then : $as_echo "#define HAVE_PQESCAPE_CONN 1" >>confdefs.h @@ -74471,7 +74488,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PQescapeByteaConn in -lpq" >&5 $as_echo_n "checking for PQescapeByteaConn in -lpq... " >&6; } -if ${ac_cv_lib_pq_PQescapeByteaConn+:} false; then : +if test "${ac_cv_lib_pq_PQescapeByteaConn+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -74505,7 +74522,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_PQescapeByteaConn" >&5 $as_echo "$ac_cv_lib_pq_PQescapeByteaConn" >&6; } -if test "x$ac_cv_lib_pq_PQescapeByteaConn" = xyes; then : +if test "x$ac_cv_lib_pq_PQescapeByteaConn" = x""yes; then : $as_echo "#define HAVE_PQESCAPE_BYTEA_CONN 1" >>confdefs.h @@ -74514,7 +74531,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pg_encoding_to_char in -lpq" >&5 $as_echo_n "checking for pg_encoding_to_char in -lpq... " >&6; } -if ${ac_cv_lib_pq_pg_encoding_to_char+:} false; then : +if test "${ac_cv_lib_pq_pg_encoding_to_char+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -74548,7 +74565,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_pg_encoding_to_char" >&5 $as_echo "$ac_cv_lib_pq_pg_encoding_to_char" >&6; } -if test "x$ac_cv_lib_pq_pg_encoding_to_char" = xyes; then : +if test "x$ac_cv_lib_pq_pg_encoding_to_char" = x""yes; then : $as_echo "#define HAVE_PGSQL_WITH_MULTIBYTE_SUPPORT 1" >>confdefs.h @@ -74696,7 +74713,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PDO includes" >&5 $as_echo_n "checking for PDO includes... " >&6; } -if ${pdo_cv_inc_path+:} false; then : +if test "${pdo_cv_inc_path+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -74716,7 +74733,7 @@ $as_echo "$pdo_cv_inc_path" >&6; } if test -n "$pdo_cv_inc_path"; then : else -as_fn_error $? "Cannot find php_pdo_driver.h." "$LINENO" 5 +as_fn_error "Cannot find php_pdo_driver.h." "$LINENO" 5 fi @@ -75020,7 +75037,7 @@ EOF is_it_shared=$PHP_PDO_SHARED is_it_enabled=$PHP_PDO if test "$am_i_shared" = "no" && test "$is_it_shared" = "yes" ; then - as_fn_error $? " + as_fn_error " You've configured extension pdo_pgsql to build statically, but it depends on extension pdo, which you've configured to build shared. You either need to build pdo_pgsql shared or build pdo statically for the @@ -75028,7 +75045,7 @@ build to be successful. " "$LINENO" 5 fi if test "x$is_it_enabled" = "xno" && test "x" != "xtrue"; then - as_fn_error $? " + as_fn_error " You've configured extension pdo_pgsql, which depends on extension pdo, but you've either not enabled pdo, or have disabled it. " "$LINENO" 5 @@ -75086,14 +75103,14 @@ $as_echo "$ext_output" >&6; } if test "$PHP_PDO_SQLITE" != "no"; then if test "$PHP_PDO" = "no" && test "$ext_shared" = "no"; then - as_fn_error $? "PDO is not enabled! Add --enable-pdo to your configure line." "$LINENO" 5 + as_fn_error "PDO is not enabled! Add --enable-pdo to your configure line." "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PDO includes" >&5 $as_echo_n "checking for PDO includes... " >&6; } -if ${pdo_cv_inc_path+:} false; then : +if test "${pdo_cv_inc_path+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -75113,7 +75130,7 @@ $as_echo "$pdo_cv_inc_path" >&6; } if test -n "$pdo_cv_inc_path"; then : else -as_fn_error $? "Cannot find php_pdo_driver.h." "$LINENO" 5 +as_fn_error "Cannot find php_pdo_driver.h." "$LINENO" 5 fi @@ -75139,7 +75156,7 @@ $as_echo "found in $i" >&6; } if test -z "$PDO_SQLITE_DIR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 $as_echo "not found" >&6; } - as_fn_error $? "Please reinstall the sqlite3 distribution" "$LINENO" 5 + as_fn_error "Please reinstall the sqlite3 distribution" "$LINENO" 5 fi @@ -75277,7 +75294,7 @@ $as_echo "not found" >&6; } as_ac_Lib=`$as_echo "ac_cv_lib_$LIBNAME''_$LIBSYMBOL" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LIBSYMBOL in -l$LIBNAME" >&5 $as_echo_n "checking for $LIBSYMBOL in -l$LIBNAME... " >&6; } -if eval \${$as_ac_Lib+:} false; then : +if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -75312,7 +75329,8 @@ fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : +eval as_val=\$$as_ac_Lib + if test "x$as_val" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -75425,7 +75443,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_$LIBNAME_$LIBSYMBOL - as_fn_error $? "wrong sqlite lib version or lib not found" "$LINENO" 5 + as_fn_error "wrong sqlite lib version or lib not found" "$LINENO" 5 fi @@ -75527,7 +75545,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqlite3_key in -lsqlite3" >&5 $as_echo_n "checking for sqlite3_key in -lsqlite3... " >&6; } -if ${ac_cv_lib_sqlite3_sqlite3_key+:} false; then : +if test "${ac_cv_lib_sqlite3_sqlite3_key+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -75561,7 +75579,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_key" >&5 $as_echo "$ac_cv_lib_sqlite3_sqlite3_key" >&6; } -if test "x$ac_cv_lib_sqlite3_sqlite3_key" = xyes; then : +if test "x$ac_cv_lib_sqlite3_sqlite3_key" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -76239,7 +76257,7 @@ EOF is_it_shared=$PHP_SQLITE3_SHARED is_it_enabled=$PHP_SQLITE3 if test "$am_i_shared" = "no" && test "$is_it_shared" = "yes" ; then - as_fn_error $? " + as_fn_error " You've configured extension pdo_sqlite to build statically, but it depends on extension sqlite3, which you've configured to build shared. You either need to build pdo_sqlite shared or build sqlite3 statically for the @@ -76247,7 +76265,7 @@ build to be successful. " "$LINENO" 5 fi if test "x$is_it_enabled" = "xno" && test "x" != "xtrue"; then - as_fn_error $? " + as_fn_error " You've configured extension pdo_sqlite, which depends on extension sqlite3, but you've either not enabled sqlite3, or have disabled it. " "$LINENO" 5 @@ -76289,7 +76307,8 @@ but you've either not enabled sqlite3, or have disabled it. do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test \"x\$"$as_ac_var"\" = x"yes"; then : +eval as_val=\$$as_ac_var + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF @@ -76300,7 +76319,7 @@ done for ac_header in time.h do : ac_fn_c_check_header_mongrel "$LINENO" "time.h" "ac_cv_header_time_h" "$ac_includes_default" -if test "x$ac_cv_header_time_h" = xyes; then : +if test "x$ac_cv_header_time_h" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_TIME_H 1 _ACEOF @@ -76408,7 +76427,7 @@ done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fdatasync in -lrt" >&5 $as_echo_n "checking for fdatasync in -lrt... " >&6; } -if ${ac_cv_lib_rt_fdatasync+:} false; then : +if test "${ac_cv_lib_rt_fdatasync+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -76442,7 +76461,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rt_fdatasync" >&5 $as_echo "$ac_cv_lib_rt_fdatasync" >&6; } -if test "x$ac_cv_lib_rt_fdatasync" = xyes; then : +if test "x$ac_cv_lib_rt_fdatasync" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -76486,7 +76505,7 @@ fi is_it_shared=$PHP_PDO_SHARED is_it_enabled=$PHP_PDO if test "$am_i_shared" = "no" && test "$is_it_shared" = "yes" ; then - as_fn_error $? " + as_fn_error " You've configured extension pdo_sqlite to build statically, but it depends on extension pdo, which you've configured to build shared. You either need to build pdo_sqlite shared or build pdo statically for the @@ -76494,7 +76513,7 @@ build to be successful. " "$LINENO" 5 fi if test "x$is_it_enabled" = "xno" && test "x" != "xtrue"; then - as_fn_error $? " + as_fn_error " You've configured extension pdo_sqlite, which depends on extension pdo, but you've either not enabled pdo, or have disabled it. " "$LINENO" 5 @@ -76612,15 +76631,15 @@ $as_echo "#define HAVE_PG_CONFIG_H 1" >>confdefs.h fi if test -z "$PGSQL_INCLUDE"; then - as_fn_error $? "Cannot find libpq-fe.h. Please specify correct PostgreSQL installation path" "$LINENO" 5 + as_fn_error "Cannot find libpq-fe.h. Please specify correct PostgreSQL installation path" "$LINENO" 5 fi if test -z "$PGSQL_LIBDIR"; then - as_fn_error $? "Cannot find libpq.so. Please specify correct PostgreSQL installation path" "$LINENO" 5 + as_fn_error "Cannot find libpq.so. Please specify correct PostgreSQL installation path" "$LINENO" 5 fi if test -z "$PGSQL_INCLUDE" -a -z "$PGSQL_LIBDIR" ; then - as_fn_error $? "Unable to find libpq anywhere under $PGSQL_SEARCH_PATHS" "$LINENO" 5 + as_fn_error "Unable to find libpq anywhere under $PGSQL_SEARCH_PATHS" "$LINENO" 5 fi @@ -76631,7 +76650,7 @@ $as_echo "#define HAVE_PGSQL 1" >>confdefs.h LDFLAGS="-L$PGSQL_LIBDIR $LDFLAGS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PQescapeString in -lpq" >&5 $as_echo_n "checking for PQescapeString in -lpq... " >&6; } -if ${ac_cv_lib_pq_PQescapeString+:} false; then : +if test "${ac_cv_lib_pq_PQescapeString+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -76665,7 +76684,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_PQescapeString" >&5 $as_echo "$ac_cv_lib_pq_PQescapeString" >&6; } -if test "x$ac_cv_lib_pq_PQescapeString" = xyes; then : +if test "x$ac_cv_lib_pq_PQescapeString" = x""yes; then : $as_echo "#define HAVE_PQESCAPE 1" >>confdefs.h @@ -76673,7 +76692,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PQunescapeBytea in -lpq" >&5 $as_echo_n "checking for PQunescapeBytea in -lpq... " >&6; } -if ${ac_cv_lib_pq_PQunescapeBytea+:} false; then : +if test "${ac_cv_lib_pq_PQunescapeBytea+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -76707,7 +76726,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_PQunescapeBytea" >&5 $as_echo "$ac_cv_lib_pq_PQunescapeBytea" >&6; } -if test "x$ac_cv_lib_pq_PQunescapeBytea" = xyes; then : +if test "x$ac_cv_lib_pq_PQunescapeBytea" = x""yes; then : $as_echo "#define HAVE_PQUNESCAPEBYTEA 1" >>confdefs.h @@ -76715,7 +76734,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PQsetnonblocking in -lpq" >&5 $as_echo_n "checking for PQsetnonblocking in -lpq... " >&6; } -if ${ac_cv_lib_pq_PQsetnonblocking+:} false; then : +if test "${ac_cv_lib_pq_PQsetnonblocking+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -76749,7 +76768,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_PQsetnonblocking" >&5 $as_echo "$ac_cv_lib_pq_PQsetnonblocking" >&6; } -if test "x$ac_cv_lib_pq_PQsetnonblocking" = xyes; then : +if test "x$ac_cv_lib_pq_PQsetnonblocking" = x""yes; then : $as_echo "#define HAVE_PQSETNONBLOCKING 1" >>confdefs.h @@ -76757,7 +76776,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PQcmdTuples in -lpq" >&5 $as_echo_n "checking for PQcmdTuples in -lpq... " >&6; } -if ${ac_cv_lib_pq_PQcmdTuples+:} false; then : +if test "${ac_cv_lib_pq_PQcmdTuples+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -76791,7 +76810,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_PQcmdTuples" >&5 $as_echo "$ac_cv_lib_pq_PQcmdTuples" >&6; } -if test "x$ac_cv_lib_pq_PQcmdTuples" = xyes; then : +if test "x$ac_cv_lib_pq_PQcmdTuples" = x""yes; then : $as_echo "#define HAVE_PQCMDTUPLES 1" >>confdefs.h @@ -76799,7 +76818,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PQoidValue in -lpq" >&5 $as_echo_n "checking for PQoidValue in -lpq... " >&6; } -if ${ac_cv_lib_pq_PQoidValue+:} false; then : +if test "${ac_cv_lib_pq_PQoidValue+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -76833,7 +76852,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_PQoidValue" >&5 $as_echo "$ac_cv_lib_pq_PQoidValue" >&6; } -if test "x$ac_cv_lib_pq_PQoidValue" = xyes; then : +if test "x$ac_cv_lib_pq_PQoidValue" = x""yes; then : $as_echo "#define HAVE_PQOIDVALUE 1" >>confdefs.h @@ -76841,7 +76860,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PQclientEncoding in -lpq" >&5 $as_echo_n "checking for PQclientEncoding in -lpq... " >&6; } -if ${ac_cv_lib_pq_PQclientEncoding+:} false; then : +if test "${ac_cv_lib_pq_PQclientEncoding+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -76875,7 +76894,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_PQclientEncoding" >&5 $as_echo "$ac_cv_lib_pq_PQclientEncoding" >&6; } -if test "x$ac_cv_lib_pq_PQclientEncoding" = xyes; then : +if test "x$ac_cv_lib_pq_PQclientEncoding" = x""yes; then : $as_echo "#define HAVE_PQCLIENTENCODING 1" >>confdefs.h @@ -76883,7 +76902,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PQparameterStatus in -lpq" >&5 $as_echo_n "checking for PQparameterStatus in -lpq... " >&6; } -if ${ac_cv_lib_pq_PQparameterStatus+:} false; then : +if test "${ac_cv_lib_pq_PQparameterStatus+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -76917,7 +76936,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_PQparameterStatus" >&5 $as_echo "$ac_cv_lib_pq_PQparameterStatus" >&6; } -if test "x$ac_cv_lib_pq_PQparameterStatus" = xyes; then : +if test "x$ac_cv_lib_pq_PQparameterStatus" = x""yes; then : $as_echo "#define HAVE_PQPARAMETERSTATUS 1" >>confdefs.h @@ -76925,7 +76944,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PQprotocolVersion in -lpq" >&5 $as_echo_n "checking for PQprotocolVersion in -lpq... " >&6; } -if ${ac_cv_lib_pq_PQprotocolVersion+:} false; then : +if test "${ac_cv_lib_pq_PQprotocolVersion+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -76959,7 +76978,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_PQprotocolVersion" >&5 $as_echo "$ac_cv_lib_pq_PQprotocolVersion" >&6; } -if test "x$ac_cv_lib_pq_PQprotocolVersion" = xyes; then : +if test "x$ac_cv_lib_pq_PQprotocolVersion" = x""yes; then : $as_echo "#define HAVE_PQPROTOCOLVERSION 1" >>confdefs.h @@ -76967,7 +76986,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PQtransactionStatus in -lpq" >&5 $as_echo_n "checking for PQtransactionStatus in -lpq... " >&6; } -if ${ac_cv_lib_pq_PQtransactionStatus+:} false; then : +if test "${ac_cv_lib_pq_PQtransactionStatus+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -77001,7 +77020,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_PQtransactionStatus" >&5 $as_echo "$ac_cv_lib_pq_PQtransactionStatus" >&6; } -if test "x$ac_cv_lib_pq_PQtransactionStatus" = xyes; then : +if test "x$ac_cv_lib_pq_PQtransactionStatus" = x""yes; then : $as_echo "#define HAVE_PGTRANSACTIONSTATUS 1" >>confdefs.h @@ -77009,7 +77028,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PQexecParams in -lpq" >&5 $as_echo_n "checking for PQexecParams in -lpq... " >&6; } -if ${ac_cv_lib_pq_PQexecParams+:} false; then : +if test "${ac_cv_lib_pq_PQexecParams+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -77043,7 +77062,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_PQexecParams" >&5 $as_echo "$ac_cv_lib_pq_PQexecParams" >&6; } -if test "x$ac_cv_lib_pq_PQexecParams" = xyes; then : +if test "x$ac_cv_lib_pq_PQexecParams" = x""yes; then : $as_echo "#define HAVE_PQEXECPARAMS 1" >>confdefs.h @@ -77051,7 +77070,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PQprepare in -lpq" >&5 $as_echo_n "checking for PQprepare in -lpq... " >&6; } -if ${ac_cv_lib_pq_PQprepare+:} false; then : +if test "${ac_cv_lib_pq_PQprepare+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -77085,7 +77104,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_PQprepare" >&5 $as_echo "$ac_cv_lib_pq_PQprepare" >&6; } -if test "x$ac_cv_lib_pq_PQprepare" = xyes; then : +if test "x$ac_cv_lib_pq_PQprepare" = x""yes; then : $as_echo "#define HAVE_PQPREPARE 1" >>confdefs.h @@ -77093,7 +77112,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PQexecPrepared in -lpq" >&5 $as_echo_n "checking for PQexecPrepared in -lpq... " >&6; } -if ${ac_cv_lib_pq_PQexecPrepared+:} false; then : +if test "${ac_cv_lib_pq_PQexecPrepared+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -77127,7 +77146,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_PQexecPrepared" >&5 $as_echo "$ac_cv_lib_pq_PQexecPrepared" >&6; } -if test "x$ac_cv_lib_pq_PQexecPrepared" = xyes; then : +if test "x$ac_cv_lib_pq_PQexecPrepared" = x""yes; then : $as_echo "#define HAVE_PQEXECPREPARED 1" >>confdefs.h @@ -77135,7 +77154,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PQresultErrorField in -lpq" >&5 $as_echo_n "checking for PQresultErrorField in -lpq... " >&6; } -if ${ac_cv_lib_pq_PQresultErrorField+:} false; then : +if test "${ac_cv_lib_pq_PQresultErrorField+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -77169,7 +77188,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_PQresultErrorField" >&5 $as_echo "$ac_cv_lib_pq_PQresultErrorField" >&6; } -if test "x$ac_cv_lib_pq_PQresultErrorField" = xyes; then : +if test "x$ac_cv_lib_pq_PQresultErrorField" = x""yes; then : $as_echo "#define HAVE_PQRESULTERRORFIELD 1" >>confdefs.h @@ -77177,7 +77196,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PQsendQueryParams in -lpq" >&5 $as_echo_n "checking for PQsendQueryParams in -lpq... " >&6; } -if ${ac_cv_lib_pq_PQsendQueryParams+:} false; then : +if test "${ac_cv_lib_pq_PQsendQueryParams+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -77211,7 +77230,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_PQsendQueryParams" >&5 $as_echo "$ac_cv_lib_pq_PQsendQueryParams" >&6; } -if test "x$ac_cv_lib_pq_PQsendQueryParams" = xyes; then : +if test "x$ac_cv_lib_pq_PQsendQueryParams" = x""yes; then : $as_echo "#define HAVE_PQSENDQUERYPARAMS 1" >>confdefs.h @@ -77219,7 +77238,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PQsendPrepare in -lpq" >&5 $as_echo_n "checking for PQsendPrepare in -lpq... " >&6; } -if ${ac_cv_lib_pq_PQsendPrepare+:} false; then : +if test "${ac_cv_lib_pq_PQsendPrepare+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -77253,7 +77272,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_PQsendPrepare" >&5 $as_echo "$ac_cv_lib_pq_PQsendPrepare" >&6; } -if test "x$ac_cv_lib_pq_PQsendPrepare" = xyes; then : +if test "x$ac_cv_lib_pq_PQsendPrepare" = x""yes; then : $as_echo "#define HAVE_PQSENDPREPARE 1" >>confdefs.h @@ -77261,7 +77280,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PQsendQueryPrepared in -lpq" >&5 $as_echo_n "checking for PQsendQueryPrepared in -lpq... " >&6; } -if ${ac_cv_lib_pq_PQsendQueryPrepared+:} false; then : +if test "${ac_cv_lib_pq_PQsendQueryPrepared+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -77295,7 +77314,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_PQsendQueryPrepared" >&5 $as_echo "$ac_cv_lib_pq_PQsendQueryPrepared" >&6; } -if test "x$ac_cv_lib_pq_PQsendQueryPrepared" = xyes; then : +if test "x$ac_cv_lib_pq_PQsendQueryPrepared" = x""yes; then : $as_echo "#define HAVE_PQSENDQUERYPREPARED 1" >>confdefs.h @@ -77303,7 +77322,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PQputCopyData in -lpq" >&5 $as_echo_n "checking for PQputCopyData in -lpq... " >&6; } -if ${ac_cv_lib_pq_PQputCopyData+:} false; then : +if test "${ac_cv_lib_pq_PQputCopyData+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -77337,7 +77356,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_PQputCopyData" >&5 $as_echo "$ac_cv_lib_pq_PQputCopyData" >&6; } -if test "x$ac_cv_lib_pq_PQputCopyData" = xyes; then : +if test "x$ac_cv_lib_pq_PQputCopyData" = x""yes; then : $as_echo "#define HAVE_PQPUTCOPYDATA 1" >>confdefs.h @@ -77345,7 +77364,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PQputCopyEnd in -lpq" >&5 $as_echo_n "checking for PQputCopyEnd in -lpq... " >&6; } -if ${ac_cv_lib_pq_PQputCopyEnd+:} false; then : +if test "${ac_cv_lib_pq_PQputCopyEnd+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -77379,7 +77398,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_PQputCopyEnd" >&5 $as_echo "$ac_cv_lib_pq_PQputCopyEnd" >&6; } -if test "x$ac_cv_lib_pq_PQputCopyEnd" = xyes; then : +if test "x$ac_cv_lib_pq_PQputCopyEnd" = x""yes; then : $as_echo "#define HAVE_PQPUTCOPYEND 1" >>confdefs.h @@ -77387,7 +77406,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PQgetCopyData in -lpq" >&5 $as_echo_n "checking for PQgetCopyData in -lpq... " >&6; } -if ${ac_cv_lib_pq_PQgetCopyData+:} false; then : +if test "${ac_cv_lib_pq_PQgetCopyData+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -77421,7 +77440,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_PQgetCopyData" >&5 $as_echo "$ac_cv_lib_pq_PQgetCopyData" >&6; } -if test "x$ac_cv_lib_pq_PQgetCopyData" = xyes; then : +if test "x$ac_cv_lib_pq_PQgetCopyData" = x""yes; then : $as_echo "#define HAVE_PQGETCOPYDATA 1" >>confdefs.h @@ -77429,7 +77448,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PQfreemem in -lpq" >&5 $as_echo_n "checking for PQfreemem in -lpq... " >&6; } -if ${ac_cv_lib_pq_PQfreemem+:} false; then : +if test "${ac_cv_lib_pq_PQfreemem+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -77463,7 +77482,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_PQfreemem" >&5 $as_echo "$ac_cv_lib_pq_PQfreemem" >&6; } -if test "x$ac_cv_lib_pq_PQfreemem" = xyes; then : +if test "x$ac_cv_lib_pq_PQfreemem" = x""yes; then : $as_echo "#define HAVE_PQFREEMEM 1" >>confdefs.h @@ -77471,7 +77490,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PQsetErrorVerbosity in -lpq" >&5 $as_echo_n "checking for PQsetErrorVerbosity in -lpq... " >&6; } -if ${ac_cv_lib_pq_PQsetErrorVerbosity+:} false; then : +if test "${ac_cv_lib_pq_PQsetErrorVerbosity+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -77505,7 +77524,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_PQsetErrorVerbosity" >&5 $as_echo "$ac_cv_lib_pq_PQsetErrorVerbosity" >&6; } -if test "x$ac_cv_lib_pq_PQsetErrorVerbosity" = xyes; then : +if test "x$ac_cv_lib_pq_PQsetErrorVerbosity" = x""yes; then : $as_echo "#define HAVE_PQSETERRORVERBOSITY 1" >>confdefs.h @@ -77513,7 +77532,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PQftable in -lpq" >&5 $as_echo_n "checking for PQftable in -lpq... " >&6; } -if ${ac_cv_lib_pq_PQftable+:} false; then : +if test "${ac_cv_lib_pq_PQftable+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -77547,7 +77566,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_PQftable" >&5 $as_echo "$ac_cv_lib_pq_PQftable" >&6; } -if test "x$ac_cv_lib_pq_PQftable" = xyes; then : +if test "x$ac_cv_lib_pq_PQftable" = x""yes; then : $as_echo "#define HAVE_PQFTABLE 1" >>confdefs.h @@ -77555,7 +77574,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PQescapeStringConn in -lpq" >&5 $as_echo_n "checking for PQescapeStringConn in -lpq... " >&6; } -if ${ac_cv_lib_pq_PQescapeStringConn+:} false; then : +if test "${ac_cv_lib_pq_PQescapeStringConn+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -77589,7 +77608,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_PQescapeStringConn" >&5 $as_echo "$ac_cv_lib_pq_PQescapeStringConn" >&6; } -if test "x$ac_cv_lib_pq_PQescapeStringConn" = xyes; then : +if test "x$ac_cv_lib_pq_PQescapeStringConn" = x""yes; then : $as_echo "#define HAVE_PQESCAPE_CONN 1" >>confdefs.h @@ -77597,7 +77616,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PQescapeByteaConn in -lpq" >&5 $as_echo_n "checking for PQescapeByteaConn in -lpq... " >&6; } -if ${ac_cv_lib_pq_PQescapeByteaConn+:} false; then : +if test "${ac_cv_lib_pq_PQescapeByteaConn+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -77631,7 +77650,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_PQescapeByteaConn" >&5 $as_echo "$ac_cv_lib_pq_PQescapeByteaConn" >&6; } -if test "x$ac_cv_lib_pq_PQescapeByteaConn" = xyes; then : +if test "x$ac_cv_lib_pq_PQescapeByteaConn" = x""yes; then : $as_echo "#define HAVE_PQESCAPE_BYTEA_CONN 1" >>confdefs.h @@ -77639,7 +77658,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pg_encoding_to_char in -lpq" >&5 $as_echo_n "checking for pg_encoding_to_char in -lpq... " >&6; } -if ${ac_cv_lib_pq_pg_encoding_to_char+:} false; then : +if test "${ac_cv_lib_pq_pg_encoding_to_char+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -77673,7 +77692,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_pg_encoding_to_char" >&5 $as_echo "$ac_cv_lib_pq_pg_encoding_to_char" >&6; } -if test "x$ac_cv_lib_pq_pg_encoding_to_char" = xyes; then : +if test "x$ac_cv_lib_pq_pg_encoding_to_char" = x""yes; then : $as_echo "#define HAVE_PGSQL_WITH_MULTIBYTE_SUPPORT 1" >>confdefs.h @@ -77681,7 +77700,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for lo_create in -lpq" >&5 $as_echo_n "checking for lo_create in -lpq... " >&6; } -if ${ac_cv_lib_pq_lo_create+:} false; then : +if test "${ac_cv_lib_pq_lo_create+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -77715,7 +77734,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_lo_create" >&5 $as_echo "$ac_cv_lib_pq_lo_create" >&6; } -if test "x$ac_cv_lib_pq_lo_create" = xyes; then : +if test "x$ac_cv_lib_pq_lo_create" = x""yes; then : $as_echo "#define HAVE_PG_LO_CREATE 1" >>confdefs.h @@ -77723,7 +77742,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for lo_import_with_oid in -lpq" >&5 $as_echo_n "checking for lo_import_with_oid in -lpq... " >&6; } -if ${ac_cv_lib_pq_lo_import_with_oid+:} false; then : +if test "${ac_cv_lib_pq_lo_import_with_oid+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -77757,7 +77776,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pq_lo_import_with_oid" >&5 $as_echo "$ac_cv_lib_pq_lo_import_with_oid" >&6; } -if test "x$ac_cv_lib_pq_lo_import_with_oid" = xyes; then : +if test "x$ac_cv_lib_pq_lo_import_with_oid" = x""yes; then : $as_echo "#define HAVE_PG_LO_IMPORT_WITH_OID 1" >>confdefs.h @@ -78567,7 +78586,7 @@ $as_echo "no" >&6; } is_it_shared=$PHP_HASH_SHARED is_it_enabled=$PHP_HASH if test "$am_i_shared" = "no" && test "$is_it_shared" = "yes" ; then - as_fn_error $? " + as_fn_error " You've configured extension phar to build statically, but it depends on extension hash, which you've configured to build shared. You either need to build phar shared or build hash statically for the @@ -78575,7 +78594,7 @@ build to be successful. " "$LINENO" 5 fi if test "x$is_it_enabled" = "xno" && test "xtrue" != "xtrue"; then - as_fn_error $? " + as_fn_error " You've configured extension phar, which depends on extension hash, but you've either not enabled hash, or have disabled it. " "$LINENO" 5 @@ -78586,7 +78605,7 @@ but you've either not enabled hash, or have disabled it. is_it_shared=$PHP_SPL_SHARED is_it_enabled=$PHP_SPL if test "$am_i_shared" = "no" && test "$is_it_shared" = "yes" ; then - as_fn_error $? " + as_fn_error " You've configured extension phar to build statically, but it depends on extension spl, which you've configured to build shared. You either need to build phar shared or build spl statically for the @@ -78594,7 +78613,7 @@ build to be successful. " "$LINENO" 5 fi if test "x$is_it_enabled" = "xno" && test "xtrue" != "xtrue"; then - as_fn_error $? " + as_fn_error " You've configured extension phar, which depends on extension spl, but you've either not enabled spl, or have disabled it. " "$LINENO" 5 @@ -78954,7 +78973,7 @@ EOF for ac_header in sys/mkdev.h do : ac_fn_c_check_header_mongrel "$LINENO" "sys/mkdev.h" "ac_cv_header_sys_mkdev_h" "$ac_includes_default" -if test "x$ac_cv_header_sys_mkdev_h" = xyes; then : +if test "x$ac_cv_header_sys_mkdev_h" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_SYS_MKDEV_H 1 _ACEOF @@ -78968,7 +78987,8 @@ done do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test \"x\$"$as_ac_var"\" = x"yes"; then : +eval as_val=\$$as_ac_var + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF @@ -79019,7 +79039,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for utsname.domainname" >&5 $as_echo_n "checking for utsname.domainname... " >&6; } -if ${ac_cv_have_utsname_domainname+:} false; then : +if test "${ac_cv_have_utsname_domainname+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -79416,7 +79436,7 @@ EOF done if test -z "$PSPELL_DIR"; then - as_fn_error $? "Cannot find pspell" "$LINENO" 5 + as_fn_error "Cannot find pspell" "$LINENO" 5 fi PSPELL_LIBDIR=$PSPELL_DIR/$PHP_LIBDIR @@ -79618,7 +79638,7 @@ EOF { $as_echo "$as_me:${as_lineno-$LINENO}: checking for new_aspell_config in -laspell" >&5 $as_echo_n "checking for new_aspell_config in -laspell... " >&6; } -if ${ac_cv_lib_aspell_new_aspell_config+:} false; then : +if test "${ac_cv_lib_aspell_new_aspell_config+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -79652,7 +79672,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_aspell_new_aspell_config" >&5 $as_echo "$ac_cv_lib_aspell_new_aspell_config" >&6; } -if test "x$ac_cv_lib_aspell_new_aspell_config" = xyes; then : +if test "x$ac_cv_lib_aspell_new_aspell_config" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -79906,7 +79926,7 @@ if test "$PHP_READLINE" && test "$PHP_READLINE" != "no"; then done if test -z "$READLINE_DIR"; then - as_fn_error $? "Please reinstall readline - I cannot find readline.h" "$LINENO" 5 + as_fn_error "Please reinstall readline - I cannot find readline.h" "$LINENO" 5 fi @@ -79944,7 +79964,7 @@ if test "$PHP_READLINE" && test "$PHP_READLINE" != "no"; then PHP_READLINE_LIBS="" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tgetent in -lncurses" >&5 $as_echo_n "checking for tgetent in -lncurses... " >&6; } -if ${ac_cv_lib_ncurses_tgetent+:} false; then : +if test "${ac_cv_lib_ncurses_tgetent+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -79978,7 +79998,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ncurses_tgetent" >&5 $as_echo "$ac_cv_lib_ncurses_tgetent" >&6; } -if test "x$ac_cv_lib_ncurses_tgetent" = xyes; then : +if test "x$ac_cv_lib_ncurses_tgetent" = x""yes; then : @@ -80009,7 +80029,7 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tgetent in -ltermcap" >&5 $as_echo_n "checking for tgetent in -ltermcap... " >&6; } -if ${ac_cv_lib_termcap_tgetent+:} false; then : +if test "${ac_cv_lib_termcap_tgetent+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -80043,7 +80063,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_termcap_tgetent" >&5 $as_echo "$ac_cv_lib_termcap_tgetent" >&6; } -if test "x$ac_cv_lib_termcap_tgetent" = xyes; then : +if test "x$ac_cv_lib_termcap_tgetent" = x""yes; then : @@ -80175,7 +80195,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for readline in -lreadline" >&5 $as_echo_n "checking for readline in -lreadline... " >&6; } -if ${ac_cv_lib_readline_readline+:} false; then : +if test "${ac_cv_lib_readline_readline+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -80209,7 +80229,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_readline_readline" >&5 $as_echo "$ac_cv_lib_readline_readline" >&6; } -if test "x$ac_cv_lib_readline_readline" = xyes; then : +if test "x$ac_cv_lib_readline_readline" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -80319,7 +80339,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_readline_readline - as_fn_error $? "readline library not found" "$LINENO" 5 + as_fn_error "readline library not found" "$LINENO" 5 fi @@ -80424,7 +80444,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for rl_pending_input in -lreadline" >&5 $as_echo_n "checking for rl_pending_input in -lreadline... " >&6; } -if ${ac_cv_lib_readline_rl_pending_input+:} false; then : +if test "${ac_cv_lib_readline_rl_pending_input+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -80458,7 +80478,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_readline_rl_pending_input" >&5 $as_echo "$ac_cv_lib_readline_rl_pending_input" >&6; } -if test "x$ac_cv_lib_readline_rl_pending_input" = xyes; then : +if test "x$ac_cv_lib_readline_rl_pending_input" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -80470,7 +80490,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_readline_rl_pending_input - as_fn_error $? "invalid readline installation detected. Try --with-libedit instead." "$LINENO" 5 + as_fn_error "invalid readline installation detected. Try --with-libedit instead." "$LINENO" 5 fi @@ -80575,7 +80595,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for rl_callback_read_char in -lreadline" >&5 $as_echo_n "checking for rl_callback_read_char in -lreadline... " >&6; } -if ${ac_cv_lib_readline_rl_callback_read_char+:} false; then : +if test "${ac_cv_lib_readline_rl_callback_read_char+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -80609,7 +80629,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_readline_rl_callback_read_char" >&5 $as_echo "$ac_cv_lib_readline_rl_callback_read_char" >&6; } -if test "x$ac_cv_lib_readline_rl_callback_read_char" = xyes; then : +if test "x$ac_cv_lib_readline_rl_callback_read_char" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -80728,7 +80748,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for rl_on_new_line in -ledit" >&5 $as_echo_n "checking for rl_on_new_line in -ledit... " >&6; } -if ${ac_cv_lib_edit_rl_on_new_line+:} false; then : +if test "${ac_cv_lib_edit_rl_on_new_line+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -80762,7 +80782,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_edit_rl_on_new_line" >&5 $as_echo "$ac_cv_lib_edit_rl_on_new_line" >&6; } -if test "x$ac_cv_lib_edit_rl_on_new_line" = xyes; then : +if test "x$ac_cv_lib_edit_rl_on_new_line" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -80793,7 +80813,7 @@ elif test "$PHP_LIBEDIT" != "no"; then done if test -z "$LIBEDIT_DIR"; then - as_fn_error $? "Please reinstall libedit - I cannot find readline.h" "$LINENO" 5 + as_fn_error "Please reinstall libedit - I cannot find readline.h" "$LINENO" 5 fi @@ -80830,7 +80850,7 @@ elif test "$PHP_LIBEDIT" != "no"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tgetent in -lncurses" >&5 $as_echo_n "checking for tgetent in -lncurses... " >&6; } -if ${ac_cv_lib_ncurses_tgetent+:} false; then : +if test "${ac_cv_lib_ncurses_tgetent+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -80864,7 +80884,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ncurses_tgetent" >&5 $as_echo "$ac_cv_lib_ncurses_tgetent" >&6; } -if test "x$ac_cv_lib_ncurses_tgetent" = xyes; then : +if test "x$ac_cv_lib_ncurses_tgetent" = x""yes; then : @@ -80894,7 +80914,7 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tgetent in -ltermcap" >&5 $as_echo_n "checking for tgetent in -ltermcap... " >&6; } -if ${ac_cv_lib_termcap_tgetent+:} false; then : +if test "${ac_cv_lib_termcap_tgetent+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -80928,7 +80948,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_termcap_tgetent" >&5 $as_echo "$ac_cv_lib_termcap_tgetent" >&6; } -if test "x$ac_cv_lib_termcap_tgetent" = xyes; then : +if test "x$ac_cv_lib_termcap_tgetent" = x""yes; then : @@ -81059,7 +81079,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for readline in -ledit" >&5 $as_echo_n "checking for readline in -ledit... " >&6; } -if ${ac_cv_lib_edit_readline+:} false; then : +if test "${ac_cv_lib_edit_readline+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -81093,7 +81113,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_edit_readline" >&5 $as_echo "$ac_cv_lib_edit_readline" >&6; } -if test "x$ac_cv_lib_edit_readline" = xyes; then : +if test "x$ac_cv_lib_edit_readline" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -81203,7 +81223,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_edit_readline - as_fn_error $? "edit library required by readline not found" "$LINENO" 5 + as_fn_error "edit library required by readline not found" "$LINENO" 5 fi @@ -81308,7 +81328,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for rl_callback_read_char in -ledit" >&5 $as_echo_n "checking for rl_callback_read_char in -ledit... " >&6; } -if ${ac_cv_lib_edit_rl_callback_read_char+:} false; then : +if test "${ac_cv_lib_edit_rl_callback_read_char+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -81342,7 +81362,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_edit_rl_callback_read_char" >&5 $as_echo "$ac_cv_lib_edit_rl_callback_read_char" >&6; } -if test "x$ac_cv_lib_edit_rl_callback_read_char" = xyes; then : +if test "x$ac_cv_lib_edit_rl_callback_read_char" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -81461,7 +81481,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for rl_on_new_line in -ledit" >&5 $as_echo_n "checking for rl_on_new_line in -ledit... " >&6; } -if ${ac_cv_lib_edit_rl_on_new_line+:} false; then : +if test "${ac_cv_lib_edit_rl_on_new_line+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -81495,7 +81515,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_edit_rl_on_new_line" >&5 $as_echo "$ac_cv_lib_edit_rl_on_new_line" >&6; } -if test "x$ac_cv_lib_edit_rl_on_new_line" = xyes; then : +if test "x$ac_cv_lib_edit_rl_on_new_line" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -81524,7 +81544,7 @@ if test "$PHP_READLINE" != "no" || test "$PHP_LIBEDIT" != "no"; then for ac_func in rl_completion_matches do : ac_fn_c_check_func "$LINENO" "rl_completion_matches" "ac_cv_func_rl_completion_matches" -if test "x$ac_cv_func_rl_completion_matches" = xyes; then : +if test "x$ac_cv_func_rl_completion_matches" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_RL_COMPLETION_MATCHES 1 _ACEOF @@ -81899,7 +81919,7 @@ if test "$PHP_RECODE" != "no"; then done if test -z "$RECODE_DIR"; then - as_fn_error $? "Can not find recode.h anywhere under $RECODE_LIST." "$LINENO" 5 + as_fn_error "Can not find recode.h anywhere under $RECODE_LIST." "$LINENO" 5 fi @@ -82001,7 +82021,7 @@ if test "$PHP_RECODE" != "no"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for recode_format_table in -lrecode" >&5 $as_echo_n "checking for recode_format_table in -lrecode... " >&6; } -if ${ac_cv_lib_recode_recode_format_table+:} false; then : +if test "${ac_cv_lib_recode_recode_format_table+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -82035,7 +82055,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_recode_recode_format_table" >&5 $as_echo "$ac_cv_lib_recode_recode_format_table" >&6; } -if test "x$ac_cv_lib_recode_recode_format_table" = xyes; then : +if test "x$ac_cv_lib_recode_recode_format_table" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -82269,7 +82289,7 @@ $as_echo "#define HAVE_BROKEN_RECODE 1" >>confdefs.h else - as_fn_error $? "I cannot link librecode (-L$RECODE_DIR/$RECODE_LIB -lrecode). Is it installed?" "$LINENO" 5 + as_fn_error "I cannot link librecode (-L$RECODE_DIR/$RECODE_LIB -lrecode). Is it installed?" "$LINENO" 5 fi rm -f core conftest.err conftest.$ac_objext \ @@ -82321,7 +82341,7 @@ $as_echo "#define HAVE_LIBRECODE 1" >>confdefs.h for ac_header in stdbool.h do : ac_fn_c_check_header_mongrel "$LINENO" "stdbool.h" "ac_cv_header_stdbool_h" "$ac_includes_default" -if test "x$ac_cv_header_stdbool_h" = xyes; then : +if test "x$ac_cv_header_stdbool_h" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STDBOOL_H 1 _ACEOF @@ -82996,7 +83016,7 @@ if test "$PHP_SESSION" != "no"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether pwrite works" >&5 $as_echo_n "checking whether pwrite works... " >&6; } -if ${ac_cv_pwrite+:} false; then : +if test "${ac_cv_pwrite+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -83106,7 +83126,7 @@ $as_echo "#define PHP_PWRITE_64 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether pread works" >&5 $as_echo_n "checking whether pread works... " >&6; } -if ${ac_cv_pread+:} false; then : +if test "${ac_cv_pread+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -83513,7 +83533,7 @@ EOF is_it_shared=$PHP_HASH_SHARED is_it_enabled=$PHP_HASH if test "$am_i_shared" = "no" && test "$is_it_shared" = "yes" ; then - as_fn_error $? " + as_fn_error " You've configured extension session to build statically, but it depends on extension hash, which you've configured to build shared. You either need to build session shared or build hash statically for the @@ -83521,7 +83541,7 @@ build to be successful. " "$LINENO" 5 fi if test "x$is_it_enabled" = "xno" && test "xtrue" != "xtrue"; then - as_fn_error $? " + as_fn_error " You've configured extension session, which depends on extension hash, but you've either not enabled hash, or have disabled it. " "$LINENO" 5 @@ -83532,7 +83552,7 @@ but you've either not enabled hash, or have disabled it. is_it_shared=$PHP_SPL_SHARED is_it_enabled=$PHP_SPL if test "$am_i_shared" = "no" && test "$is_it_shared" = "yes" ; then - as_fn_error $? " + as_fn_error " You've configured extension session to build statically, but it depends on extension spl, which you've configured to build shared. You either need to build session shared or build spl statically for the @@ -83540,7 +83560,7 @@ build to be successful. " "$LINENO" 5 fi if test "x$is_it_enabled" = "xno" && test "x" != "xtrue"; then - as_fn_error $? " + as_fn_error " You've configured extension session, which depends on extension spl, but you've either not enabled spl, or have disabled it. " "$LINENO" 5 @@ -83580,7 +83600,7 @@ if test "$PHP_MM" != "no"; then done if test -z "$MM_DIR" ; then - as_fn_error $? "cannot find mm library" "$LINENO" 5 + as_fn_error "cannot find mm library" "$LINENO" 5 fi @@ -84151,13 +84171,13 @@ fi if test "$PHP_SIMPLEXML" != "no"; then if test "$PHP_LIBXML" = "no"; then - as_fn_error $? "SimpleXML extension requires LIBXML extension, add --enable-libxml" "$LINENO" 5 + as_fn_error "SimpleXML extension requires LIBXML extension, add --enable-libxml" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xml2-config path" >&5 $as_echo_n "checking for xml2-config path... " >&6; } -if ${ac_cv_php_xml2_config_path+:} false; then : +if test "${ac_cv_php_xml2_config_path+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -84315,7 +84335,7 @@ $as_echo "$ac_cv_php_xml2_config_path" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether libxml build works" >&5 $as_echo_n "checking whether libxml build works... " >&6; } -if ${php_cv_libxml_build_works+:} false; then : +if test "${php_cv_libxml_build_works+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -84353,7 +84373,7 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } - as_fn_error $? "build test failed. Please check the config.log for details." "$LINENO" 5 + as_fn_error "build test failed. Please check the config.log for details." "$LINENO" 5 fi @@ -84673,10 +84693,10 @@ EOF else - as_fn_error $? "libxml2 version 2.6.11 or greater required." "$LINENO" 5 + as_fn_error "libxml2 version 2.6.11 or greater required." "$LINENO" 5 fi else - as_fn_error $? "xml2-config not found. Please check your libxml2 installation." "$LINENO" 5 + as_fn_error "xml2-config not found. Please check your libxml2 installation." "$LINENO" 5 fi @@ -84685,7 +84705,7 @@ else is_it_shared=$PHP_LIBXML_SHARED is_it_enabled=$PHP_LIBXML if test "$am_i_shared" = "no" && test "$is_it_shared" = "yes" ; then - as_fn_error $? " + as_fn_error " You've configured extension simplexml to build statically, but it depends on extension libxml, which you've configured to build shared. You either need to build simplexml shared or build libxml statically for the @@ -84693,7 +84713,7 @@ build to be successful. " "$LINENO" 5 fi if test "x$is_it_enabled" = "xno" && test "x" != "xtrue"; then - as_fn_error $? " + as_fn_error " You've configured extension simplexml, which depends on extension libxml, but you've either not enabled libxml, or have disabled it. " "$LINENO" 5 @@ -84704,7 +84724,7 @@ but you've either not enabled libxml, or have disabled it. is_it_shared=$PHP_SPL_SHARED is_it_enabled=$PHP_SPL if test "$am_i_shared" = "no" && test "$is_it_shared" = "yes" ; then - as_fn_error $? " + as_fn_error " You've configured extension simplexml to build statically, but it depends on extension spl, which you've configured to build shared. You either need to build simplexml shared or build spl statically for the @@ -84712,7 +84732,7 @@ build to be successful. " "$LINENO" 5 fi if test "x$is_it_enabled" = "xno" && test "xtrue" != "xtrue"; then - as_fn_error $? " + as_fn_error " You've configured extension simplexml, which depends on extension spl, but you've either not enabled spl, or have disabled it. " "$LINENO" 5 @@ -84797,7 +84817,7 @@ if test "$PHP_SNMP" != "no"; then set dummy net-snmp-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_SNMP_CONFIG+:} false; then : +if test "${ac_cv_path_SNMP_CONFIG+set}" = set; then : $as_echo_n "(cached) " >&6 else case $SNMP_CONFIG in @@ -84972,13 +84992,13 @@ fi SNMP_LIBNAME=netsnmp else - as_fn_error $? "Could not find the required paths. Please check your net-snmp installation." "$LINENO" 5 + as_fn_error "Could not find the required paths. Please check your net-snmp installation." "$LINENO" 5 fi else - as_fn_error $? "Net-SNMP version 5.3 or greater reqired (detected $snmp_full_version)." "$LINENO" 5 + as_fn_error "Net-SNMP version 5.3 or greater reqired (detected $snmp_full_version)." "$LINENO" 5 fi else - as_fn_error $? "Could not find net-snmp-config binary. Please check your net-snmp installation." "$LINENO" 5 + as_fn_error "Could not find net-snmp-config binary. Please check your net-snmp installation." "$LINENO" 5 fi @@ -85081,7 +85101,7 @@ fi as_ac_Lib=`$as_echo "ac_cv_lib_$SNMP_LIBNAME''_init_snmp" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for init_snmp in -l$SNMP_LIBNAME" >&5 $as_echo_n "checking for init_snmp in -l$SNMP_LIBNAME... " >&6; } -if eval \${$as_ac_Lib+:} false; then : +if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -85116,7 +85136,8 @@ fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : +eval as_val=\$$as_ac_Lib + if test "x$as_val" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -85132,7 +85153,7 @@ else ext_shared=$save_ext_shared unset ac_cv_lib_$SNMP_LIBNAME_init_snmp - as_fn_error $? "SNMP sanity check failed. Please check config.log for more information." "$LINENO" 5 + as_fn_error "SNMP sanity check failed. Please check config.log for more information." "$LINENO" 5 fi @@ -85238,7 +85259,7 @@ fi as_ac_Lib=`$as_echo "ac_cv_lib_$SNMP_LIBNAME''_shutdown_snmp_logging" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shutdown_snmp_logging in -l$SNMP_LIBNAME" >&5 $as_echo_n "checking for shutdown_snmp_logging in -l$SNMP_LIBNAME... " >&6; } -if eval \${$as_ac_Lib+:} false; then : +if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -85273,7 +85294,8 @@ fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : +eval as_val=\$$as_ac_Lib + if test "x$as_val" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -85295,7 +85317,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for buggy snmp_snprint_value" >&5 $as_echo_n "checking for buggy snmp_snprint_value... " >&6; } -if ${ac_cv_buggy_snprint_value+:} false; then : +if test "${ac_cv_buggy_snprint_value+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -85750,13 +85772,13 @@ fi if test "$PHP_SOAP" != "no"; then if test "$PHP_LIBXML" = "no"; then - as_fn_error $? "SOAP extension requires LIBXML extension, add --enable-libxml" "$LINENO" 5 + as_fn_error "SOAP extension requires LIBXML extension, add --enable-libxml" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xml2-config path" >&5 $as_echo_n "checking for xml2-config path... " >&6; } -if ${ac_cv_php_xml2_config_path+:} false; then : +if test "${ac_cv_php_xml2_config_path+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -85914,7 +85936,7 @@ $as_echo "$ac_cv_php_xml2_config_path" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether libxml build works" >&5 $as_echo_n "checking whether libxml build works... " >&6; } -if ${php_cv_libxml_build_works+:} false; then : +if test "${php_cv_libxml_build_works+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -85952,7 +85974,7 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } - as_fn_error $? "build test failed. Please check the config.log for details." "$LINENO" 5 + as_fn_error "build test failed. Please check the config.log for details." "$LINENO" 5 fi @@ -86272,10 +86294,10 @@ EOF else - as_fn_error $? "libxml2 version 2.6.11 or greater required." "$LINENO" 5 + as_fn_error "libxml2 version 2.6.11 or greater required." "$LINENO" 5 fi else - as_fn_error $? "xml2-config not found. Please check your libxml2 installation." "$LINENO" 5 + as_fn_error "xml2-config not found. Please check your libxml2 installation." "$LINENO" 5 fi @@ -86329,7 +86351,7 @@ $as_echo "$ext_output" >&6; } if test "$PHP_SOCKETS" != "no"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct cmsghdr" >&5 $as_echo_n "checking for struct cmsghdr... " >&6; } -if ${ac_cv_cmsghdr+:} false; then : +if test "${ac_cv_cmsghdr+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -86367,7 +86389,8 @@ $as_echo "#define HAVE_CMSGHDR 1" >>confdefs.h do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test \"x\$"$as_ac_var"\" = x"yes"; then : +eval as_val=\$$as_ac_var + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF @@ -86379,7 +86402,8 @@ done do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : +eval as_val=\$$as_ac_Header + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF @@ -87095,7 +87119,7 @@ EOF is_it_shared=$PHP_PCRE_SHARED is_it_enabled=$PHP_PCRE if test "$am_i_shared" = "no" && test "$is_it_shared" = "yes" ; then - as_fn_error $? " + as_fn_error " You've configured extension spl to build statically, but it depends on extension pcre, which you've configured to build shared. You either need to build spl shared or build pcre statically for the @@ -87103,7 +87127,7 @@ build to be successful. " "$LINENO" 5 fi if test "x$is_it_enabled" = "xno" && test "xtrue" != "xtrue"; then - as_fn_error $? " + as_fn_error " You've configured extension spl, which depends on extension pcre, but you've either not enabled pcre, or have disabled it. " "$LINENO" 5 @@ -87113,7 +87137,7 @@ but you've either not enabled pcre, or have disabled it. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether flush should be called explicitly after a buffered io" >&5 $as_echo_n "checking whether flush should be called explicitly after a buffered io... " >&6; } -if ${ac_cv_flush_io+:} false; then : +if test "${ac_cv_flush_io+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -87185,7 +87209,7 @@ fi if test "$ac_cv_func_crypt" = "no"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for crypt in -lcrypt" >&5 $as_echo_n "checking for crypt in -lcrypt... " >&6; } -if ${ac_cv_lib_crypt_crypt+:} false; then : +if test "${ac_cv_lib_crypt_crypt+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -87219,7 +87243,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_crypt_crypt" >&5 $as_echo "$ac_cv_lib_crypt_crypt" >&6; } -if test "x$ac_cv_lib_crypt_crypt" = xyes; then : +if test "x$ac_cv_lib_crypt_crypt" = x""yes; then : LIBS="-lcrypt $LIBS -lcrypt" @@ -87232,7 +87256,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for standard DES crypt" >&5 $as_echo_n "checking for standard DES crypt... " >&6; } -if ${ac_cv_crypt_des+:} false; then : +if test "${ac_cv_crypt_des+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -87279,7 +87303,7 @@ $as_echo "$ac_cv_crypt_des" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for extended DES crypt" >&5 $as_echo_n "checking for extended DES crypt... " >&6; } -if ${ac_cv_crypt_ext_des+:} false; then : +if test "${ac_cv_crypt_ext_des+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -87326,7 +87350,7 @@ $as_echo "$ac_cv_crypt_ext_des" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for MD5 crypt" >&5 $as_echo_n "checking for MD5 crypt... " >&6; } -if ${ac_cv_crypt_md5+:} false; then : +if test "${ac_cv_crypt_md5+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -87382,7 +87406,7 @@ $as_echo "$ac_cv_crypt_md5" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Blowfish crypt" >&5 $as_echo_n "checking for Blowfish crypt... " >&6; } -if ${ac_cv_crypt_blowfish+:} false; then : +if test "${ac_cv_crypt_blowfish+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -87435,7 +87459,7 @@ $as_echo "$ac_cv_crypt_blowfish" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SHA512 crypt" >&5 $as_echo_n "checking for SHA512 crypt... " >&6; } -if ${ac_cv_crypt_SHA512+:} false; then : +if test "${ac_cv_crypt_SHA512+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -87487,7 +87511,7 @@ $as_echo "$ac_cv_crypt_SHA512" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SHA256 crypt" >&5 $as_echo_n "checking for SHA256 crypt... " >&6; } -if ${ac_cv_crypt_SHA256+:} false; then : +if test "${ac_cv_crypt_SHA256+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -87542,7 +87566,7 @@ if test "$ac_cv_crypt_blowfish" = "no" || test "$ac_cv_crypt_des" = "no" || test { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports __alignof__" >&5 $as_echo_n "checking whether the compiler supports __alignof__... " >&6; } -if ${ac_cv_alignof_exists+:} false; then : +if test "${ac_cv_alignof_exists+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -87581,7 +87605,7 @@ $as_echo "#define HAVE_ALIGNOF 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports aligned attribute" >&5 $as_echo_n "checking whether the compiler supports aligned attribute... " >&6; } -if ${ac_cv_attribute_aligned+:} false; then : +if test "${ac_cv_attribute_aligned+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -87788,7 +87812,8 @@ for ac_func in getcwd getwd asinh acosh atanh log1p hypot glob strfmon nice fpcl do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test \"x\$"$as_ac_var"\" = x"yes"; then : +eval as_val=\$$as_ac_var + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF @@ -87798,7 +87823,7 @@ done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working POSIX fnmatch" >&5 $as_echo_n "checking for working POSIX fnmatch... " >&6; } -if ${ac_cv_func_fnmatch_works+:} false; then : +if test "${ac_cv_func_fnmatch_works+set}" = set; then : $as_echo_n "(cached) " >&6 else # Some versions of Solaris, SCO, and the GNU C Library @@ -87853,7 +87878,8 @@ for ac_func in fork CreateProcess do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test \"x\$"$as_ac_var"\" = x"yes"; then : +eval as_val=\$$as_ac_var + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF @@ -87893,11 +87919,11 @@ fi unset found ac_fn_c_check_func "$LINENO" "res_nsearch" "ac_cv_func_res_nsearch" -if test "x$ac_cv_func_res_nsearch" = xyes; then : +if test "x$ac_cv_func_res_nsearch" = x""yes; then : found=yes else ac_fn_c_check_func "$LINENO" "__res_nsearch" "ac_cv_func___res_nsearch" -if test "x$ac_cv_func___res_nsearch" = xyes; then : +if test "x$ac_cv_func___res_nsearch" = x""yes; then : found=yes else found=no @@ -87921,7 +87947,7 @@ $as_echo "#define HAVE_RES_NSEARCH 1" >>confdefs.h unset found { $as_echo "$as_me:${as_lineno-$LINENO}: checking for res_nsearch in -lresolv" >&5 $as_echo_n "checking for res_nsearch in -lresolv... " >&6; } -if ${ac_cv_lib_resolv_res_nsearch+:} false; then : +if test "${ac_cv_lib_resolv_res_nsearch+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -87955,13 +87981,13 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_resolv_res_nsearch" >&5 $as_echo "$ac_cv_lib_resolv_res_nsearch" >&6; } -if test "x$ac_cv_lib_resolv_res_nsearch" = xyes; then : +if test "x$ac_cv_lib_resolv_res_nsearch" = x""yes; then : found=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __res_nsearch in -lresolv" >&5 $as_echo_n "checking for __res_nsearch in -lresolv... " >&6; } -if ${ac_cv_lib_resolv___res_nsearch+:} false; then : +if test "${ac_cv_lib_resolv___res_nsearch+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -87995,7 +88021,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_resolv___res_nsearch" >&5 $as_echo "$ac_cv_lib_resolv___res_nsearch" >&6; } -if test "x$ac_cv_lib_resolv___res_nsearch" = xyes; then : +if test "x$ac_cv_lib_resolv___res_nsearch" = x""yes; then : found=yes else found=no @@ -88053,7 +88079,7 @@ $as_echo "#define HAVE_LIBRESOLV 1" >>confdefs.h unset found { $as_echo "$as_me:${as_lineno-$LINENO}: checking for res_nsearch in -lbind" >&5 $as_echo_n "checking for res_nsearch in -lbind... " >&6; } -if ${ac_cv_lib_bind_res_nsearch+:} false; then : +if test "${ac_cv_lib_bind_res_nsearch+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -88087,13 +88113,13 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bind_res_nsearch" >&5 $as_echo "$ac_cv_lib_bind_res_nsearch" >&6; } -if test "x$ac_cv_lib_bind_res_nsearch" = xyes; then : +if test "x$ac_cv_lib_bind_res_nsearch" = x""yes; then : found=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __res_nsearch in -lbind" >&5 $as_echo_n "checking for __res_nsearch in -lbind... " >&6; } -if ${ac_cv_lib_bind___res_nsearch+:} false; then : +if test "${ac_cv_lib_bind___res_nsearch+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -88127,7 +88153,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bind___res_nsearch" >&5 $as_echo "$ac_cv_lib_bind___res_nsearch" >&6; } -if test "x$ac_cv_lib_bind___res_nsearch" = xyes; then : +if test "x$ac_cv_lib_bind___res_nsearch" = x""yes; then : found=yes else found=no @@ -88185,7 +88211,7 @@ $as_echo "#define HAVE_LIBBIND 1" >>confdefs.h unset found { $as_echo "$as_me:${as_lineno-$LINENO}: checking for res_nsearch in -lsocket" >&5 $as_echo_n "checking for res_nsearch in -lsocket... " >&6; } -if ${ac_cv_lib_socket_res_nsearch+:} false; then : +if test "${ac_cv_lib_socket_res_nsearch+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -88219,13 +88245,13 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_res_nsearch" >&5 $as_echo "$ac_cv_lib_socket_res_nsearch" >&6; } -if test "x$ac_cv_lib_socket_res_nsearch" = xyes; then : +if test "x$ac_cv_lib_socket_res_nsearch" = x""yes; then : found=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __res_nsearch in -lsocket" >&5 $as_echo_n "checking for __res_nsearch in -lsocket... " >&6; } -if ${ac_cv_lib_socket___res_nsearch+:} false; then : +if test "${ac_cv_lib_socket___res_nsearch+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -88259,7 +88285,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket___res_nsearch" >&5 $as_echo "$ac_cv_lib_socket___res_nsearch" >&6; } -if test "x$ac_cv_lib_socket___res_nsearch" = xyes; then : +if test "x$ac_cv_lib_socket___res_nsearch" = x""yes; then : found=yes else found=no @@ -88331,11 +88357,11 @@ $as_echo "#define HAVE_LIBSOCKET 1" >>confdefs.h unset found ac_fn_c_check_func "$LINENO" "dns_search" "ac_cv_func_dns_search" -if test "x$ac_cv_func_dns_search" = xyes; then : +if test "x$ac_cv_func_dns_search" = x""yes; then : found=yes else ac_fn_c_check_func "$LINENO" "__dns_search" "ac_cv_func___dns_search" -if test "x$ac_cv_func___dns_search" = xyes; then : +if test "x$ac_cv_func___dns_search" = x""yes; then : found=yes else found=no @@ -88359,7 +88385,7 @@ $as_echo "#define HAVE_DNS_SEARCH 1" >>confdefs.h unset found { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dns_search in -lresolv" >&5 $as_echo_n "checking for dns_search in -lresolv... " >&6; } -if ${ac_cv_lib_resolv_dns_search+:} false; then : +if test "${ac_cv_lib_resolv_dns_search+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -88393,13 +88419,13 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_resolv_dns_search" >&5 $as_echo "$ac_cv_lib_resolv_dns_search" >&6; } -if test "x$ac_cv_lib_resolv_dns_search" = xyes; then : +if test "x$ac_cv_lib_resolv_dns_search" = x""yes; then : found=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __dns_search in -lresolv" >&5 $as_echo_n "checking for __dns_search in -lresolv... " >&6; } -if ${ac_cv_lib_resolv___dns_search+:} false; then : +if test "${ac_cv_lib_resolv___dns_search+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -88433,7 +88459,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_resolv___dns_search" >&5 $as_echo "$ac_cv_lib_resolv___dns_search" >&6; } -if test "x$ac_cv_lib_resolv___dns_search" = xyes; then : +if test "x$ac_cv_lib_resolv___dns_search" = x""yes; then : found=yes else found=no @@ -88491,7 +88517,7 @@ $as_echo "#define HAVE_LIBRESOLV 1" >>confdefs.h unset found { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dns_search in -lbind" >&5 $as_echo_n "checking for dns_search in -lbind... " >&6; } -if ${ac_cv_lib_bind_dns_search+:} false; then : +if test "${ac_cv_lib_bind_dns_search+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -88525,13 +88551,13 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bind_dns_search" >&5 $as_echo "$ac_cv_lib_bind_dns_search" >&6; } -if test "x$ac_cv_lib_bind_dns_search" = xyes; then : +if test "x$ac_cv_lib_bind_dns_search" = x""yes; then : found=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __dns_search in -lbind" >&5 $as_echo_n "checking for __dns_search in -lbind... " >&6; } -if ${ac_cv_lib_bind___dns_search+:} false; then : +if test "${ac_cv_lib_bind___dns_search+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -88565,7 +88591,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bind___dns_search" >&5 $as_echo "$ac_cv_lib_bind___dns_search" >&6; } -if test "x$ac_cv_lib_bind___dns_search" = xyes; then : +if test "x$ac_cv_lib_bind___dns_search" = x""yes; then : found=yes else found=no @@ -88623,7 +88649,7 @@ $as_echo "#define HAVE_LIBBIND 1" >>confdefs.h unset found { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dns_search in -lsocket" >&5 $as_echo_n "checking for dns_search in -lsocket... " >&6; } -if ${ac_cv_lib_socket_dns_search+:} false; then : +if test "${ac_cv_lib_socket_dns_search+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -88657,13 +88683,13 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_dns_search" >&5 $as_echo "$ac_cv_lib_socket_dns_search" >&6; } -if test "x$ac_cv_lib_socket_dns_search" = xyes; then : +if test "x$ac_cv_lib_socket_dns_search" = x""yes; then : found=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __dns_search in -lsocket" >&5 $as_echo_n "checking for __dns_search in -lsocket... " >&6; } -if ${ac_cv_lib_socket___dns_search+:} false; then : +if test "${ac_cv_lib_socket___dns_search+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -88697,7 +88723,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket___dns_search" >&5 $as_echo "$ac_cv_lib_socket___dns_search" >&6; } -if test "x$ac_cv_lib_socket___dns_search" = xyes; then : +if test "x$ac_cv_lib_socket___dns_search" = x""yes; then : found=yes else found=no @@ -88769,11 +88795,11 @@ $as_echo "#define HAVE_LIBSOCKET 1" >>confdefs.h unset found ac_fn_c_check_func "$LINENO" "dn_expand" "ac_cv_func_dn_expand" -if test "x$ac_cv_func_dn_expand" = xyes; then : +if test "x$ac_cv_func_dn_expand" = x""yes; then : found=yes else ac_fn_c_check_func "$LINENO" "__dn_expand" "ac_cv_func___dn_expand" -if test "x$ac_cv_func___dn_expand" = xyes; then : +if test "x$ac_cv_func___dn_expand" = x""yes; then : found=yes else found=no @@ -88797,7 +88823,7 @@ $as_echo "#define HAVE_DN_EXPAND 1" >>confdefs.h unset found { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dn_expand in -lresolv" >&5 $as_echo_n "checking for dn_expand in -lresolv... " >&6; } -if ${ac_cv_lib_resolv_dn_expand+:} false; then : +if test "${ac_cv_lib_resolv_dn_expand+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -88831,13 +88857,13 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_resolv_dn_expand" >&5 $as_echo "$ac_cv_lib_resolv_dn_expand" >&6; } -if test "x$ac_cv_lib_resolv_dn_expand" = xyes; then : +if test "x$ac_cv_lib_resolv_dn_expand" = x""yes; then : found=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __dn_expand in -lresolv" >&5 $as_echo_n "checking for __dn_expand in -lresolv... " >&6; } -if ${ac_cv_lib_resolv___dn_expand+:} false; then : +if test "${ac_cv_lib_resolv___dn_expand+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -88871,7 +88897,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_resolv___dn_expand" >&5 $as_echo "$ac_cv_lib_resolv___dn_expand" >&6; } -if test "x$ac_cv_lib_resolv___dn_expand" = xyes; then : +if test "x$ac_cv_lib_resolv___dn_expand" = x""yes; then : found=yes else found=no @@ -88929,7 +88955,7 @@ $as_echo "#define HAVE_LIBRESOLV 1" >>confdefs.h unset found { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dn_expand in -lbind" >&5 $as_echo_n "checking for dn_expand in -lbind... " >&6; } -if ${ac_cv_lib_bind_dn_expand+:} false; then : +if test "${ac_cv_lib_bind_dn_expand+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -88963,13 +88989,13 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bind_dn_expand" >&5 $as_echo "$ac_cv_lib_bind_dn_expand" >&6; } -if test "x$ac_cv_lib_bind_dn_expand" = xyes; then : +if test "x$ac_cv_lib_bind_dn_expand" = x""yes; then : found=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __dn_expand in -lbind" >&5 $as_echo_n "checking for __dn_expand in -lbind... " >&6; } -if ${ac_cv_lib_bind___dn_expand+:} false; then : +if test "${ac_cv_lib_bind___dn_expand+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -89003,7 +89029,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bind___dn_expand" >&5 $as_echo "$ac_cv_lib_bind___dn_expand" >&6; } -if test "x$ac_cv_lib_bind___dn_expand" = xyes; then : +if test "x$ac_cv_lib_bind___dn_expand" = x""yes; then : found=yes else found=no @@ -89061,7 +89087,7 @@ $as_echo "#define HAVE_LIBBIND 1" >>confdefs.h unset found { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dn_expand in -lsocket" >&5 $as_echo_n "checking for dn_expand in -lsocket... " >&6; } -if ${ac_cv_lib_socket_dn_expand+:} false; then : +if test "${ac_cv_lib_socket_dn_expand+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -89095,13 +89121,13 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_dn_expand" >&5 $as_echo "$ac_cv_lib_socket_dn_expand" >&6; } -if test "x$ac_cv_lib_socket_dn_expand" = xyes; then : +if test "x$ac_cv_lib_socket_dn_expand" = x""yes; then : found=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __dn_expand in -lsocket" >&5 $as_echo_n "checking for __dn_expand in -lsocket... " >&6; } -if ${ac_cv_lib_socket___dn_expand+:} false; then : +if test "${ac_cv_lib_socket___dn_expand+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -89135,7 +89161,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket___dn_expand" >&5 $as_echo "$ac_cv_lib_socket___dn_expand" >&6; } -if test "x$ac_cv_lib_socket___dn_expand" = xyes; then : +if test "x$ac_cv_lib_socket___dn_expand" = x""yes; then : found=yes else found=no @@ -89207,11 +89233,11 @@ $as_echo "#define HAVE_LIBSOCKET 1" >>confdefs.h unset found ac_fn_c_check_func "$LINENO" "dn_skipname" "ac_cv_func_dn_skipname" -if test "x$ac_cv_func_dn_skipname" = xyes; then : +if test "x$ac_cv_func_dn_skipname" = x""yes; then : found=yes else ac_fn_c_check_func "$LINENO" "__dn_skipname" "ac_cv_func___dn_skipname" -if test "x$ac_cv_func___dn_skipname" = xyes; then : +if test "x$ac_cv_func___dn_skipname" = x""yes; then : found=yes else found=no @@ -89235,7 +89261,7 @@ $as_echo "#define HAVE_DN_SKIPNAME 1" >>confdefs.h unset found { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dn_skipname in -lresolv" >&5 $as_echo_n "checking for dn_skipname in -lresolv... " >&6; } -if ${ac_cv_lib_resolv_dn_skipname+:} false; then : +if test "${ac_cv_lib_resolv_dn_skipname+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -89269,13 +89295,13 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_resolv_dn_skipname" >&5 $as_echo "$ac_cv_lib_resolv_dn_skipname" >&6; } -if test "x$ac_cv_lib_resolv_dn_skipname" = xyes; then : +if test "x$ac_cv_lib_resolv_dn_skipname" = x""yes; then : found=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __dn_skipname in -lresolv" >&5 $as_echo_n "checking for __dn_skipname in -lresolv... " >&6; } -if ${ac_cv_lib_resolv___dn_skipname+:} false; then : +if test "${ac_cv_lib_resolv___dn_skipname+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -89309,7 +89335,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_resolv___dn_skipname" >&5 $as_echo "$ac_cv_lib_resolv___dn_skipname" >&6; } -if test "x$ac_cv_lib_resolv___dn_skipname" = xyes; then : +if test "x$ac_cv_lib_resolv___dn_skipname" = x""yes; then : found=yes else found=no @@ -89367,7 +89393,7 @@ $as_echo "#define HAVE_LIBRESOLV 1" >>confdefs.h unset found { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dn_skipname in -lbind" >&5 $as_echo_n "checking for dn_skipname in -lbind... " >&6; } -if ${ac_cv_lib_bind_dn_skipname+:} false; then : +if test "${ac_cv_lib_bind_dn_skipname+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -89401,13 +89427,13 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bind_dn_skipname" >&5 $as_echo "$ac_cv_lib_bind_dn_skipname" >&6; } -if test "x$ac_cv_lib_bind_dn_skipname" = xyes; then : +if test "x$ac_cv_lib_bind_dn_skipname" = x""yes; then : found=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __dn_skipname in -lbind" >&5 $as_echo_n "checking for __dn_skipname in -lbind... " >&6; } -if ${ac_cv_lib_bind___dn_skipname+:} false; then : +if test "${ac_cv_lib_bind___dn_skipname+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -89441,7 +89467,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bind___dn_skipname" >&5 $as_echo "$ac_cv_lib_bind___dn_skipname" >&6; } -if test "x$ac_cv_lib_bind___dn_skipname" = xyes; then : +if test "x$ac_cv_lib_bind___dn_skipname" = x""yes; then : found=yes else found=no @@ -89499,7 +89525,7 @@ $as_echo "#define HAVE_LIBBIND 1" >>confdefs.h unset found { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dn_skipname in -lsocket" >&5 $as_echo_n "checking for dn_skipname in -lsocket... " >&6; } -if ${ac_cv_lib_socket_dn_skipname+:} false; then : +if test "${ac_cv_lib_socket_dn_skipname+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -89533,13 +89559,13 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_dn_skipname" >&5 $as_echo "$ac_cv_lib_socket_dn_skipname" >&6; } -if test "x$ac_cv_lib_socket_dn_skipname" = xyes; then : +if test "x$ac_cv_lib_socket_dn_skipname" = x""yes; then : found=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __dn_skipname in -lsocket" >&5 $as_echo_n "checking for __dn_skipname in -lsocket... " >&6; } -if ${ac_cv_lib_socket___dn_skipname+:} false; then : +if test "${ac_cv_lib_socket___dn_skipname+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -89573,7 +89599,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket___dn_skipname" >&5 $as_echo "$ac_cv_lib_socket___dn_skipname" >&6; } -if test "x$ac_cv_lib_socket___dn_skipname" = xyes; then : +if test "x$ac_cv_lib_socket___dn_skipname" = x""yes; then : found=yes else found=no @@ -89647,11 +89673,11 @@ $as_echo "#define HAVE_LIBSOCKET 1" >>confdefs.h unset found ac_fn_c_check_func "$LINENO" "res_search" "ac_cv_func_res_search" -if test "x$ac_cv_func_res_search" = xyes; then : +if test "x$ac_cv_func_res_search" = x""yes; then : found=yes else ac_fn_c_check_func "$LINENO" "__res_search" "ac_cv_func___res_search" -if test "x$ac_cv_func___res_search" = xyes; then : +if test "x$ac_cv_func___res_search" = x""yes; then : found=yes else found=no @@ -89675,7 +89701,7 @@ $as_echo "#define HAVE_RES_SEARCH 1" >>confdefs.h unset found { $as_echo "$as_me:${as_lineno-$LINENO}: checking for res_search in -lresolv" >&5 $as_echo_n "checking for res_search in -lresolv... " >&6; } -if ${ac_cv_lib_resolv_res_search+:} false; then : +if test "${ac_cv_lib_resolv_res_search+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -89709,13 +89735,13 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_resolv_res_search" >&5 $as_echo "$ac_cv_lib_resolv_res_search" >&6; } -if test "x$ac_cv_lib_resolv_res_search" = xyes; then : +if test "x$ac_cv_lib_resolv_res_search" = x""yes; then : found=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __res_search in -lresolv" >&5 $as_echo_n "checking for __res_search in -lresolv... " >&6; } -if ${ac_cv_lib_resolv___res_search+:} false; then : +if test "${ac_cv_lib_resolv___res_search+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -89749,7 +89775,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_resolv___res_search" >&5 $as_echo "$ac_cv_lib_resolv___res_search" >&6; } -if test "x$ac_cv_lib_resolv___res_search" = xyes; then : +if test "x$ac_cv_lib_resolv___res_search" = x""yes; then : found=yes else found=no @@ -89807,7 +89833,7 @@ $as_echo "#define HAVE_LIBRESOLV 1" >>confdefs.h unset found { $as_echo "$as_me:${as_lineno-$LINENO}: checking for res_search in -lbind" >&5 $as_echo_n "checking for res_search in -lbind... " >&6; } -if ${ac_cv_lib_bind_res_search+:} false; then : +if test "${ac_cv_lib_bind_res_search+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -89841,13 +89867,13 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bind_res_search" >&5 $as_echo "$ac_cv_lib_bind_res_search" >&6; } -if test "x$ac_cv_lib_bind_res_search" = xyes; then : +if test "x$ac_cv_lib_bind_res_search" = x""yes; then : found=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __res_search in -lbind" >&5 $as_echo_n "checking for __res_search in -lbind... " >&6; } -if ${ac_cv_lib_bind___res_search+:} false; then : +if test "${ac_cv_lib_bind___res_search+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -89881,7 +89907,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bind___res_search" >&5 $as_echo "$ac_cv_lib_bind___res_search" >&6; } -if test "x$ac_cv_lib_bind___res_search" = xyes; then : +if test "x$ac_cv_lib_bind___res_search" = x""yes; then : found=yes else found=no @@ -89939,7 +89965,7 @@ $as_echo "#define HAVE_LIBBIND 1" >>confdefs.h unset found { $as_echo "$as_me:${as_lineno-$LINENO}: checking for res_search in -lsocket" >&5 $as_echo_n "checking for res_search in -lsocket... " >&6; } -if ${ac_cv_lib_socket_res_search+:} false; then : +if test "${ac_cv_lib_socket_res_search+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -89973,13 +89999,13 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_res_search" >&5 $as_echo "$ac_cv_lib_socket_res_search" >&6; } -if test "x$ac_cv_lib_socket_res_search" = xyes; then : +if test "x$ac_cv_lib_socket_res_search" = x""yes; then : found=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __res_search in -lsocket" >&5 $as_echo_n "checking for __res_search in -lsocket... " >&6; } -if ${ac_cv_lib_socket___res_search+:} false; then : +if test "${ac_cv_lib_socket___res_search+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -90013,7 +90039,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket___res_search" >&5 $as_echo "$ac_cv_lib_socket___res_search" >&6; } -if test "x$ac_cv_lib_socket___res_search" = xyes; then : +if test "x$ac_cv_lib_socket___res_search" = x""yes; then : found=yes else found=no @@ -90082,7 +90108,7 @@ $as_echo "#define HAVE_LIBSOCKET 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether atof() accepts NAN" >&5 $as_echo_n "checking whether atof() accepts NAN... " >&6; } -if ${ac_cv_atof_accept_nan+:} false; then : +if test "${ac_cv_atof_accept_nan+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -90135,7 +90161,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether atof() accepts INF" >&5 $as_echo_n "checking whether atof() accepts INF... " >&6; } -if ${ac_cv_atof_accept_inf+:} false; then : +if test "${ac_cv_atof_accept_inf+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -90191,7 +90217,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether HUGE_VAL == INF" >&5 $as_echo_n "checking whether HUGE_VAL == INF... " >&6; } -if ${ac_cv_huge_val_inf+:} false; then : +if test "${ac_cv_huge_val_inf+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -90247,7 +90273,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether HUGE_VAL + -HUGEVAL == NAN" >&5 $as_echo_n "checking whether HUGE_VAL + -HUGEVAL == NAN... " >&6; } -if ${ac_cv_huge_val_nan+:} false; then : +if test "${ac_cv_huge_val_nan+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -90305,7 +90331,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether strptime() declaration fails" >&5 $as_echo_n "checking whether strptime() declaration fails... " >&6; } -if ${ac_cv_strptime_decl_fails+:} false; then : +if test "${ac_cv_strptime_decl_fails+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -90351,7 +90377,7 @@ fi for ac_header in wchar.h do : ac_fn_c_check_header_mongrel "$LINENO" "wchar.h" "ac_cv_header_wchar_h" "$ac_includes_default" -if test "x$ac_cv_header_wchar_h" = xyes; then : +if test "x$ac_cv_header_wchar_h" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_WCHAR_H 1 _ACEOF @@ -90363,7 +90389,7 @@ done for ac_func in mblen do : ac_fn_c_check_func "$LINENO" "mblen" "ac_cv_func_mblen" -if test "x$ac_cv_func_mblen" = xyes; then : +if test "x$ac_cv_func_mblen" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_MBLEN 1 _ACEOF @@ -90375,7 +90401,8 @@ for ac_func in mbrlen mbsinit do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test \"x\$"$as_ac_var"\" = x"yes"; then : +eval as_val=\$$as_ac_var + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF @@ -90385,7 +90412,7 @@ done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mbstate_t" >&5 $as_echo_n "checking for mbstate_t... " >&6; } -if ${ac_cv_type_mbstate_t+:} false; then : +if test "${ac_cv_type_mbstate_t+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -90428,7 +90455,7 @@ fi for ac_header in atomic.h do : ac_fn_c_check_header_mongrel "$LINENO" "atomic.h" "ac_cv_header_atomic_h" "$ac_includes_default" -if test "x$ac_cv_header_atomic_h" = xyes; then : +if test "x$ac_cv_header_atomic_h" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_ATOMIC_H 1 _ACEOF @@ -90846,7 +90873,7 @@ $as_echo "$ext_output" >&6; } if test "$PHP_SYBASE_CT" != "no"; then if test "$PHP_SYBASE" && test "$PHP_SYBASE" != "no" && test "$ext_shared" = "no"; then - as_fn_error $? "You can not use both --with-sybase and --with-sybase-ct in same build!" "$LINENO" 5 + as_fn_error "You can not use both --with-sybase and --with-sybase-ct in same build!" "$LINENO" 5 fi @@ -91163,7 +91190,7 @@ EOF # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long int" >&5 $as_echo_n "checking size of long int... " >&6; } -if ${ac_cv_sizeof_long_int+:} false; then : +if test "${ac_cv_sizeof_long_int+set}" = set; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long int))" "ac_cv_sizeof_long_int" "$ac_includes_default"; then : @@ -91172,8 +91199,9 @@ else if test "$ac_cv_type_long_int" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "cannot compute sizeof (long int) -See \`config.log' for more details" "$LINENO" 5; } +{ as_fn_set_status 77 +as_fn_error "cannot compute sizeof (long int) +See \`config.log' for more details." "$LINENO" 5; }; } else ac_cv_sizeof_long_int=0 fi @@ -91240,7 +91268,7 @@ $as_echo "found in $SYBASE_CT_INCDIR" >&6; } fi else - as_fn_error $? "ctpublic.h missing!" "$LINENO" 5 + as_fn_error "ctpublic.h missing!" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking Checking Sybase libdir" >&5 @@ -91518,7 +91546,7 @@ $as_echo "Sybase64: $SYBASE_CT_LIBS" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for netg_errstr in -lsybtcl64" >&5 $as_echo_n "checking for netg_errstr in -lsybtcl64... " >&6; } -if ${ac_cv_lib_sybtcl64_netg_errstr+:} false; then : +if test "${ac_cv_lib_sybtcl64_netg_errstr+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -91552,7 +91580,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sybtcl64_netg_errstr" >&5 $as_echo "$ac_cv_lib_sybtcl64_netg_errstr" >&6; } -if test "x$ac_cv_lib_sybtcl64_netg_errstr" = xyes; then : +if test "x$ac_cv_lib_sybtcl64_netg_errstr" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -91713,7 +91741,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for insck__getVdate in -linsck64" >&5 $as_echo_n "checking for insck__getVdate in -linsck64... " >&6; } -if ${ac_cv_lib_insck64_insck__getVdate+:} false; then : +if test "${ac_cv_lib_insck64_insck__getVdate+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -91747,7 +91775,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_insck64_insck__getVdate" >&5 $as_echo "$ac_cv_lib_insck64_insck__getVdate" >&6; } -if test "x$ac_cv_lib_insck64_insck__getVdate" = xyes; then : +if test "x$ac_cv_lib_insck64_insck__getVdate" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -91881,7 +91909,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bsd_tcp in -linsck64" >&5 $as_echo_n "checking for bsd_tcp in -linsck64... " >&6; } -if ${ac_cv_lib_insck64_bsd_tcp+:} false; then : +if test "${ac_cv_lib_insck64_bsd_tcp+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -91915,7 +91943,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_insck64_bsd_tcp" >&5 $as_echo "$ac_cv_lib_insck64_bsd_tcp" >&6; } -if test "x$ac_cv_lib_insck64_bsd_tcp" = xyes; then : +if test "x$ac_cv_lib_insck64_bsd_tcp" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -92149,7 +92177,7 @@ $as_echo "Sybase32 syb-prefix: $SYBASE_CT_LIBS" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for netg_errstr in -lsybtcl" >&5 $as_echo_n "checking for netg_errstr in -lsybtcl... " >&6; } -if ${ac_cv_lib_sybtcl_netg_errstr+:} false; then : +if test "${ac_cv_lib_sybtcl_netg_errstr+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -92183,7 +92211,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sybtcl_netg_errstr" >&5 $as_echo "$ac_cv_lib_sybtcl_netg_errstr" >&6; } -if test "x$ac_cv_lib_sybtcl_netg_errstr" = xyes; then : +if test "x$ac_cv_lib_sybtcl_netg_errstr" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -92344,7 +92372,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for insck__getVdate in -linsck" >&5 $as_echo_n "checking for insck__getVdate in -linsck... " >&6; } -if ${ac_cv_lib_insck_insck__getVdate+:} false; then : +if test "${ac_cv_lib_insck_insck__getVdate+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -92378,7 +92406,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_insck_insck__getVdate" >&5 $as_echo "$ac_cv_lib_insck_insck__getVdate" >&6; } -if test "x$ac_cv_lib_insck_insck__getVdate" = xyes; then : +if test "x$ac_cv_lib_insck_insck__getVdate" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -92512,7 +92540,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bsd_tcp in -linsck" >&5 $as_echo_n "checking for bsd_tcp in -linsck... " >&6; } -if ${ac_cv_lib_insck_bsd_tcp+:} false; then : +if test "${ac_cv_lib_insck_bsd_tcp+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -92546,7 +92574,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_insck_bsd_tcp" >&5 $as_echo "$ac_cv_lib_insck_bsd_tcp" >&6; } -if test "x$ac_cv_lib_insck_bsd_tcp" = xyes; then : +if test "x$ac_cv_lib_insck_bsd_tcp" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -92780,7 +92808,7 @@ $as_echo "Sybase32 default: $SYBASE_CT_LIBS" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for netg_errstr in -ltcl" >&5 $as_echo_n "checking for netg_errstr in -ltcl... " >&6; } -if ${ac_cv_lib_tcl_netg_errstr+:} false; then : +if test "${ac_cv_lib_tcl_netg_errstr+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -92814,7 +92842,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_tcl_netg_errstr" >&5 $as_echo "$ac_cv_lib_tcl_netg_errstr" >&6; } -if test "x$ac_cv_lib_tcl_netg_errstr" = xyes; then : +if test "x$ac_cv_lib_tcl_netg_errstr" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -92975,7 +93003,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for insck__getVdate in -linsck" >&5 $as_echo_n "checking for insck__getVdate in -linsck... " >&6; } -if ${ac_cv_lib_insck_insck__getVdate+:} false; then : +if test "${ac_cv_lib_insck_insck__getVdate+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -93009,7 +93037,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_insck_insck__getVdate" >&5 $as_echo "$ac_cv_lib_insck_insck__getVdate" >&6; } -if test "x$ac_cv_lib_insck_insck__getVdate" = xyes; then : +if test "x$ac_cv_lib_insck_insck__getVdate" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -93143,7 +93171,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bsd_tcp in -linsck" >&5 $as_echo_n "checking for bsd_tcp in -linsck... " >&6; } -if ${ac_cv_lib_insck_bsd_tcp+:} false; then : +if test "${ac_cv_lib_insck_bsd_tcp+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -93177,7 +93205,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_insck_bsd_tcp" >&5 $as_echo "$ac_cv_lib_insck_bsd_tcp" >&6; } -if test "x$ac_cv_lib_insck_bsd_tcp" = xyes; then : +if test "x$ac_cv_lib_insck_bsd_tcp" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -93264,10 +93292,10 @@ $as_echo "$ext_output" >&6; } if test "$PHP_SYSVMSG" != "no"; then ac_fn_c_check_header_mongrel "$LINENO" "sys/msg.h" "ac_cv_header_sys_msg_h" "$ac_includes_default" -if test "x$ac_cv_header_sys_msg_h" = xyes; then : +if test "x$ac_cv_header_sys_msg_h" = x""yes; then : else - as_fn_error $? "Cannot enable System V IPC support, sys/msg.h is missing" "$LINENO" 5 + as_fn_error "Cannot enable System V IPC support, sys/msg.h is missing" "$LINENO" 5 fi @@ -93915,7 +93943,7 @@ $as_echo "#define HAVE_SYSVSEM 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking for union semun" >&5 $as_echo_n "checking for union semun... " >&6; } -if ${php_cv_semun+:} false; then : +if test "${php_cv_semun+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -94367,7 +94395,7 @@ if test "$PHP_TIDY" != "no"; then done if test -z "$TIDY_DIR"; then - as_fn_error $? "Cannot find libtidy" "$LINENO" 5 + as_fn_error "Cannot find libtidy" "$LINENO" 5 fi TIDY_LIBDIR=$TIDY_DIR/$PHP_LIBDIR @@ -94598,7 +94626,7 @@ if test "$PHP_TIDY" != "no"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tidyOptGetDoc in -ltidy" >&5 $as_echo_n "checking for tidyOptGetDoc in -ltidy... " >&6; } -if ${ac_cv_lib_tidy_tidyOptGetDoc+:} false; then : +if test "${ac_cv_lib_tidy_tidyOptGetDoc+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -94632,7 +94660,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_tidy_tidyOptGetDoc" >&5 $as_echo "$ac_cv_lib_tidy_tidyOptGetDoc" >&6; } -if test "x$ac_cv_lib_tidy_tidyOptGetDoc" = xyes; then : +if test "x$ac_cv_lib_tidy_tidyOptGetDoc" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -95401,13 +95429,13 @@ if test "$PHP_WDDX" != "no"; then if test "$PHP_LIBEXPAT_DIR" = "no"; then if test "$PHP_LIBXML" = "no"; then - as_fn_error $? "WDDX extension requires LIBXML extension, add --enable-libxml" "$LINENO" 5 + as_fn_error "WDDX extension requires LIBXML extension, add --enable-libxml" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xml2-config path" >&5 $as_echo_n "checking for xml2-config path... " >&6; } -if ${ac_cv_php_xml2_config_path+:} false; then : +if test "${ac_cv_php_xml2_config_path+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -95565,7 +95593,7 @@ $as_echo "$ac_cv_php_xml2_config_path" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether libxml build works" >&5 $as_echo_n "checking whether libxml build works... " >&6; } -if ${php_cv_libxml_build_works+:} false; then : +if test "${php_cv_libxml_build_works+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -95603,7 +95631,7 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } - as_fn_error $? "build test failed. Please check the config.log for details." "$LINENO" 5 + as_fn_error "build test failed. Please check the config.log for details." "$LINENO" 5 fi @@ -95674,10 +95702,10 @@ EOF fi else - as_fn_error $? "libxml2 version 2.6.11 or greater required." "$LINENO" 5 + as_fn_error "libxml2 version 2.6.11 or greater required." "$LINENO" 5 fi else - as_fn_error $? "xml2-config not found. Use --with-libxml-dir=<DIR>" "$LINENO" 5 + as_fn_error "xml2-config not found. Use --with-libxml-dir=<DIR>" "$LINENO" 5 fi @@ -95692,7 +95720,7 @@ else done if test -z "$EXPAT_DIR"; then - as_fn_error $? "not found. Please reinstall the expat distribution." "$LINENO" 5 + as_fn_error "not found. Please reinstall the expat distribution." "$LINENO" 5 fi @@ -96129,7 +96157,7 @@ EOF is_it_shared=$PHP_LIBXML_SHARED is_it_enabled=$PHP_LIBXML if test "$am_i_shared" = "no" && test "$is_it_shared" = "yes" ; then - as_fn_error $? " + as_fn_error " You've configured extension wddx to build statically, but it depends on extension libxml, which you've configured to build shared. You either need to build wddx shared or build libxml statically for the @@ -96137,7 +96165,7 @@ build to be successful. " "$LINENO" 5 fi if test "x$is_it_enabled" = "xno" && test "x" != "xtrue"; then - as_fn_error $? " + as_fn_error " You've configured extension wddx, which depends on extension libxml, but you've either not enabled libxml, or have disabled it. " "$LINENO" 5 @@ -96248,13 +96276,13 @@ if test "$PHP_XML" != "no"; then if test "$PHP_LIBEXPAT_DIR" = "no"; then if test "$PHP_LIBXML" = "no"; then - as_fn_error $? "XML extension requires LIBXML extension, add --enable-libxml" "$LINENO" 5 + as_fn_error "XML extension requires LIBXML extension, add --enable-libxml" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xml2-config path" >&5 $as_echo_n "checking for xml2-config path... " >&6; } -if ${ac_cv_php_xml2_config_path+:} false; then : +if test "${ac_cv_php_xml2_config_path+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -96412,7 +96440,7 @@ $as_echo "$ac_cv_php_xml2_config_path" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether libxml build works" >&5 $as_echo_n "checking whether libxml build works... " >&6; } -if ${php_cv_libxml_build_works+:} false; then : +if test "${php_cv_libxml_build_works+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -96450,7 +96478,7 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } - as_fn_error $? "build test failed. Please check the config.log for details." "$LINENO" 5 + as_fn_error "build test failed. Please check the config.log for details." "$LINENO" 5 fi @@ -96475,7 +96503,7 @@ $as_echo "#define HAVE_LIBXML 1" >>confdefs.h is_it_shared=$PHP_LIBXML_SHARED is_it_enabled=$PHP_LIBXML if test "$am_i_shared" = "no" && test "$is_it_shared" = "yes" ; then - as_fn_error $? " + as_fn_error " You've configured extension xml to build statically, but it depends on extension libxml, which you've configured to build shared. You either need to build xml shared or build libxml statically for the @@ -96483,7 +96511,7 @@ build to be successful. " "$LINENO" 5 fi if test "x$is_it_enabled" = "xno" && test "x" != "xtrue"; then - as_fn_error $? " + as_fn_error " You've configured extension xml, which depends on extension libxml, but you've either not enabled libxml, or have disabled it. " "$LINENO" 5 @@ -96491,10 +96519,10 @@ but you've either not enabled libxml, or have disabled it. else - as_fn_error $? "libxml2 version 2.6.11 or greater required." "$LINENO" 5 + as_fn_error "libxml2 version 2.6.11 or greater required." "$LINENO" 5 fi else - as_fn_error $? "xml2-config not found. Use --with-libxml-dir=<DIR>" "$LINENO" 5 + as_fn_error "xml2-config not found. Use --with-libxml-dir=<DIR>" "$LINENO" 5 fi @@ -96509,7 +96537,7 @@ else done if test -z "$EXPAT_DIR"; then - as_fn_error $? "not found. Please reinstall the expat distribution." "$LINENO" 5 + as_fn_error "not found. Please reinstall the expat distribution." "$LINENO" 5 fi @@ -97038,13 +97066,13 @@ fi if test "$PHP_XMLREADER" != "no"; then if test "$PHP_LIBXML" = "no"; then - as_fn_error $? "XMLReader extension requires LIBXML extension, add --enable-libxml" "$LINENO" 5 + as_fn_error "XMLReader extension requires LIBXML extension, add --enable-libxml" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xml2-config path" >&5 $as_echo_n "checking for xml2-config path... " >&6; } -if ${ac_cv_php_xml2_config_path+:} false; then : +if test "${ac_cv_php_xml2_config_path+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -97202,7 +97230,7 @@ $as_echo "$ac_cv_php_xml2_config_path" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether libxml build works" >&5 $as_echo_n "checking whether libxml build works... " >&6; } -if ${php_cv_libxml_build_works+:} false; then : +if test "${php_cv_libxml_build_works+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -97240,7 +97268,7 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } - as_fn_error $? "build test failed. Please check the config.log for details." "$LINENO" 5 + as_fn_error "build test failed. Please check the config.log for details." "$LINENO" 5 fi @@ -97560,7 +97588,7 @@ EOF is_it_shared=$PHP_DOM_SHARED is_it_enabled=$PHP_DOM if test "$am_i_shared" = "no" && test "$is_it_shared" = "yes" ; then - as_fn_error $? " + as_fn_error " You've configured extension xmlreader to build statically, but it depends on extension dom, which you've configured to build shared. You either need to build xmlreader shared or build dom statically for the @@ -97568,7 +97596,7 @@ build to be successful. " "$LINENO" 5 fi if test "x$is_it_enabled" = "xno" && test "xtrue" != "xtrue"; then - as_fn_error $? " + as_fn_error " You've configured extension xmlreader, which depends on extension dom, but you've either not enabled dom, or have disabled it. " "$LINENO" 5 @@ -97579,10 +97607,10 @@ but you've either not enabled dom, or have disabled it. else - as_fn_error $? "libxml2 version 2.6.11 or greater required." "$LINENO" 5 + as_fn_error "libxml2 version 2.6.11 or greater required." "$LINENO" 5 fi else - as_fn_error $? "xml2-config not found. Please check your libxml2 installation." "$LINENO" 5 + as_fn_error "xml2-config not found. Please check your libxml2 installation." "$LINENO" 5 fi @@ -97728,7 +97756,7 @@ if test "$PHP_XMLRPC" != "no"; then is_it_shared=$PHP_LIBXML_SHARED is_it_enabled=$PHP_LIBXML if test "$am_i_shared" = "no" && test "$is_it_shared" = "yes" ; then - as_fn_error $? " + as_fn_error " You've configured extension xmlrpc to build statically, but it depends on extension libxml, which you've configured to build shared. You either need to build xmlrpc shared or build libxml statically for the @@ -97736,7 +97764,7 @@ build to be successful. " "$LINENO" 5 fi if test "x$is_it_enabled" = "xno" && test "x" != "xtrue"; then - as_fn_error $? " + as_fn_error " You've configured extension xmlrpc, which depends on extension libxml, but you've either not enabled libxml, or have disabled it. " "$LINENO" 5 @@ -97752,13 +97780,13 @@ $as_echo "#define HAVE_XMLRPC 1" >>confdefs.h if test "$PHP_LIBEXPAT_DIR" = "no"; then if test "$PHP_LIBXML" = "no"; then - as_fn_error $? "XML-RPC extension requires LIBXML extension, add --enable-libxml" "$LINENO" 5 + as_fn_error "XML-RPC extension requires LIBXML extension, add --enable-libxml" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xml2-config path" >&5 $as_echo_n "checking for xml2-config path... " >&6; } -if ${ac_cv_php_xml2_config_path+:} false; then : +if test "${ac_cv_php_xml2_config_path+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -97916,7 +97944,7 @@ $as_echo "$ac_cv_php_xml2_config_path" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether libxml build works" >&5 $as_echo_n "checking whether libxml build works... " >&6; } -if ${php_cv_libxml_build_works+:} false; then : +if test "${php_cv_libxml_build_works+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -97954,7 +97982,7 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } - as_fn_error $? "build test failed. Please check the config.log for details." "$LINENO" 5 + as_fn_error "build test failed. Please check the config.log for details." "$LINENO" 5 fi @@ -98025,10 +98053,10 @@ EOF fi else - as_fn_error $? "libxml2 version 2.6.11 or greater required." "$LINENO" 5 + as_fn_error "libxml2 version 2.6.11 or greater required." "$LINENO" 5 fi else - as_fn_error $? "xml2-config not found. Use --with-libxml-dir=<DIR>" "$LINENO" 5 + as_fn_error "xml2-config not found. Use --with-libxml-dir=<DIR>" "$LINENO" 5 fi @@ -98173,7 +98201,7 @@ $as_echo "#define HAVE_LIBEXPAT 1" >>confdefs.h done if test "$testval" = "no"; then - as_fn_error $? "XML-RPC support requires libexpat. Use --with-libexpat-dir=<DIR> (deprecated!)" "$LINENO" 5 + as_fn_error "XML-RPC support requires libexpat. Use --with-libexpat-dir=<DIR> (deprecated!)" "$LINENO" 5 fi fi @@ -98206,14 +98234,14 @@ $as_echo "#define HAVE_LIBEXPAT 1" >>confdefs.h if test "$PHP_ICONV" = "yes"; then ac_fn_c_check_func "$LINENO" "iconv" "ac_cv_func_iconv" -if test "x$ac_cv_func_iconv" = xyes; then : +if test "x$ac_cv_func_iconv" = x""yes; then : found_iconv=yes else ac_fn_c_check_func "$LINENO" "libiconv" "ac_cv_func_libiconv" -if test "x$ac_cv_func_libiconv" = xyes; then : +if test "x$ac_cv_func_libiconv" = x""yes; then : echo "#define HAVE_LIBICONV 1" > ext/iconv/php_have_libiconv.h @@ -98248,7 +98276,7 @@ $as_echo "#define HAVE_GICONV_H 1" >>confdefs.h done if test -z "$ICONV_DIR"; then - as_fn_error $? "Please specify the install prefix of iconv with --with-iconv=<DIR>" "$LINENO" 5 + as_fn_error "Please specify the install prefix of iconv with --with-iconv=<DIR>" "$LINENO" 5 fi if test -f $ICONV_DIR/$PHP_LIBDIR/lib$iconv_lib_name.a || @@ -98354,7 +98382,7 @@ $as_echo "#define HAVE_GICONV_H 1" >>confdefs.h as_ac_Lib=`$as_echo "ac_cv_lib_$iconv_lib_name''_libiconv" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libiconv in -l$iconv_lib_name" >&5 $as_echo_n "checking for libiconv in -l$iconv_lib_name... " >&6; } -if eval \${$as_ac_Lib+:} false; then : +if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -98389,7 +98417,8 @@ fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : +eval as_val=\$$as_ac_Lib + if test "x$as_val" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -98515,7 +98544,7 @@ else as_ac_Lib=`$as_echo "ac_cv_lib_$iconv_lib_name''_iconv" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv in -l$iconv_lib_name" >&5 $as_echo_n "checking for iconv in -l$iconv_lib_name... " >&6; } -if eval \${$as_ac_Lib+:} false; then : +if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -98550,7 +98579,8 @@ fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : +eval as_val=\$$as_ac_Lib + if test "x$as_val" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -98713,7 +98743,7 @@ $as_echo "#define HAVE_ICONV 1" >>confdefs.h fi else - as_fn_error $? "iconv not found, in order to build xmlrpc you need the iconv library" "$LINENO" 5 + as_fn_error "iconv not found, in order to build xmlrpc you need the iconv library" "$LINENO" 5 fi @@ -98726,7 +98756,7 @@ if test "$PHP_XMLRPC" = "yes"; then set dummy ${ac_tool_prefix}ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_RANLIB+:} false; then : +if test "${ac_cv_prog_RANLIB+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$RANLIB"; then @@ -98766,7 +98796,7 @@ if test -z "$ac_cv_prog_RANLIB"; then set dummy ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : +if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_RANLIB"; then @@ -98815,7 +98845,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inline" >&5 $as_echo_n "checking for inline... " >&6; } -if ${ac_cv_c_inline+:} false; then : +if test "${ac_cv_c_inline+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_cv_c_inline=no @@ -98868,7 +98898,7 @@ $as_echo "#define UNDEF_THREADS_HACK /**/" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } -if ${ac_cv_header_stdc+:} false; then : +if test "${ac_cv_header_stdc+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -98982,7 +99012,8 @@ for ac_header in xmlparse.h xmltok.h stdlib.h strings.h string.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : +eval as_val=\$$as_ac_Header + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF @@ -99002,7 +99033,7 @@ done # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of char" >&5 $as_echo_n "checking size of char... " >&6; } -if ${ac_cv_sizeof_char+:} false; then : +if test "${ac_cv_sizeof_char+set}" = set; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (char))" "ac_cv_sizeof_char" "$ac_includes_default"; then : @@ -99011,8 +99042,9 @@ else if test "$ac_cv_type_char" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "cannot compute sizeof (char) -See \`config.log' for more details" "$LINENO" 5; } +{ as_fn_set_status 77 +as_fn_error "cannot compute sizeof (char) +See \`config.log' for more details." "$LINENO" 5; }; } else ac_cv_sizeof_char=0 fi @@ -99036,7 +99068,7 @@ _ACEOF # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of int" >&5 $as_echo_n "checking size of int... " >&6; } -if ${ac_cv_sizeof_int+:} false; then : +if test "${ac_cv_sizeof_int+set}" = set; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (int))" "ac_cv_sizeof_int" "$ac_includes_default"; then : @@ -99045,8 +99077,9 @@ else if test "$ac_cv_type_int" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "cannot compute sizeof (int) -See \`config.log' for more details" "$LINENO" 5; } +{ as_fn_set_status 77 +as_fn_error "cannot compute sizeof (int) +See \`config.log' for more details." "$LINENO" 5; }; } else ac_cv_sizeof_int=0 fi @@ -99069,7 +99102,7 @@ _ACEOF # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long" >&5 $as_echo_n "checking size of long... " >&6; } -if ${ac_cv_sizeof_long+:} false; then : +if test "${ac_cv_sizeof_long+set}" = set; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long))" "ac_cv_sizeof_long" "$ac_includes_default"; then : @@ -99078,8 +99111,9 @@ else if test "$ac_cv_type_long" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "cannot compute sizeof (long) -See \`config.log' for more details" "$LINENO" 5; } +{ as_fn_set_status 77 +as_fn_error "cannot compute sizeof (long) +See \`config.log' for more details." "$LINENO" 5; }; } else ac_cv_sizeof_long=0 fi @@ -99102,7 +99136,7 @@ _ACEOF # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long long" >&5 $as_echo_n "checking size of long long... " >&6; } -if ${ac_cv_sizeof_long_long+:} false; then : +if test "${ac_cv_sizeof_long_long+set}" = set; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long long))" "ac_cv_sizeof_long_long" "$ac_includes_default"; then : @@ -99111,8 +99145,9 @@ else if test "$ac_cv_type_long_long" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "cannot compute sizeof (long long) -See \`config.log' for more details" "$LINENO" 5; } +{ as_fn_set_status 77 +as_fn_error "cannot compute sizeof (long long) +See \`config.log' for more details." "$LINENO" 5; }; } else ac_cv_sizeof_long_long=0 fi @@ -99130,7 +99165,7 @@ _ACEOF ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default" -if test "x$ac_cv_type_size_t" = xyes; then : +if test "x$ac_cv_type_size_t" = x""yes; then : else @@ -99142,7 +99177,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether time.h and sys/time.h may both be included" >&5 $as_echo_n "checking whether time.h and sys/time.h may both be included... " >&6; } -if ${ac_cv_header_time+:} false; then : +if test "${ac_cv_header_time+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -99177,7 +99212,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for uid_t in sys/types.h" >&5 $as_echo_n "checking for uid_t in sys/types.h... " >&6; } -if ${ac_cv_type_uid_t+:} false; then : +if test "${ac_cv_type_uid_t+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -99218,7 +99253,8 @@ for ac_func in \ do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test \"x\$"$as_ac_var"\" = x"yes"; then : +eval as_val=\$$as_ac_var + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF @@ -99571,7 +99607,7 @@ $as_echo "found in $i" >&6; } if test -z "$XMLRPC_DIR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 $as_echo "not found" >&6; } - as_fn_error $? "Please reinstall the XMLRPC-EPI distribution" "$LINENO" 5 + as_fn_error "Please reinstall the XMLRPC-EPI distribution" "$LINENO" 5 fi @@ -100072,13 +100108,13 @@ fi if test "$PHP_XMLWRITER" != "no"; then if test "$PHP_LIBXML" = "no"; then - as_fn_error $? "XMLWriter extension requires LIBXML extension, add --enable-libxml" "$LINENO" 5 + as_fn_error "XMLWriter extension requires LIBXML extension, add --enable-libxml" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xml2-config path" >&5 $as_echo_n "checking for xml2-config path... " >&6; } -if ${ac_cv_php_xml2_config_path+:} false; then : +if test "${ac_cv_php_xml2_config_path+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -100236,7 +100272,7 @@ $as_echo "$ac_cv_php_xml2_config_path" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether libxml build works" >&5 $as_echo_n "checking whether libxml build works... " >&6; } -if ${php_cv_libxml_build_works+:} false; then : +if test "${php_cv_libxml_build_works+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -100274,7 +100310,7 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } - as_fn_error $? "build test failed. Please check the config.log for details." "$LINENO" 5 + as_fn_error "build test failed. Please check the config.log for details." "$LINENO" 5 fi @@ -100594,10 +100630,10 @@ EOF else - as_fn_error $? "libxml2 version 2.6.11 or greater required." "$LINENO" 5 + as_fn_error "libxml2 version 2.6.11 or greater required." "$LINENO" 5 fi else - as_fn_error $? "xml2-config not found. Please check your libxml2 installation." "$LINENO" 5 + as_fn_error "xml2-config not found. Please check your libxml2 installation." "$LINENO" 5 fi @@ -100652,11 +100688,11 @@ $as_echo "$ext_output" >&6; } if test "$PHP_XSL" != "no"; then if test "$PHP_LIBXML" = "no"; then - as_fn_error $? "XSL extension requires LIBXML extension, add --enable-libxml" "$LINENO" 5 + as_fn_error "XSL extension requires LIBXML extension, add --enable-libxml" "$LINENO" 5 fi if test "$PHP_DOM" = "no"; then - as_fn_error $? "XSL extension requires DOM extension, add --enable-dom" "$LINENO" 5 + as_fn_error "XSL extension requires DOM extension, add --enable-dom" "$LINENO" 5 fi for i in $PHP_XSL /usr/local /usr; do @@ -100667,7 +100703,7 @@ if test "$PHP_XSL" != "no"; then done if test -z "$XSLT_CONFIG"; then - as_fn_error $? "xslt-config not found. Please reinstall the libxslt >= 1.1.0 distribution" "$LINENO" 5 + as_fn_error "xslt-config not found. Please reinstall the libxslt >= 1.1.0 distribution" "$LINENO" 5 else libxslt_full_version=`$XSLT_CONFIG --version` ac_IFS=$IFS @@ -100955,7 +100991,7 @@ $as_echo "#define HAVE_XSL_EXSLT 1" >>confdefs.h fi else - as_fn_error $? "libxslt version 1.1.0 or greater required." "$LINENO" 5 + as_fn_error "libxslt version 1.1.0 or greater required." "$LINENO" 5 fi @@ -101265,7 +101301,7 @@ EOF is_it_shared=$PHP_LIBXML_SHARED is_it_enabled=$PHP_LIBXML if test "$am_i_shared" = "no" && test "$is_it_shared" = "yes" ; then - as_fn_error $? " + as_fn_error " You've configured extension xsl to build statically, but it depends on extension libxml, which you've configured to build shared. You either need to build xsl shared or build libxml statically for the @@ -101273,7 +101309,7 @@ build to be successful. " "$LINENO" 5 fi if test "x$is_it_enabled" = "xno" && test "x" != "xtrue"; then - as_fn_error $? " + as_fn_error " You've configured extension xsl, which depends on extension libxml, but you've either not enabled libxml, or have disabled it. " "$LINENO" 5 @@ -101386,7 +101422,7 @@ if test "$PHP_ZIP" != "no"; then PHP_ZLIB_DIR="$PHP_ZLIB_DIR" PHP_ZLIB_INCDIR="$PHP_ZLIB_DIR/include" else - as_fn_error $? "Can not find zlib headers under \"$PHP_ZLIB_DIR\"" "$LINENO" 5 + as_fn_error "Can not find zlib headers under \"$PHP_ZLIB_DIR\"" "$LINENO" 5 fi else for i in /usr/local /usr; do @@ -101403,7 +101439,7 @@ if test "$PHP_ZIP" != "no"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the location of zlib" >&5 $as_echo_n "checking for the location of zlib... " >&6; } if test "$PHP_ZLIB_DIR" = "no"; then - as_fn_error $? "zip support requires ZLIB. Use --with-zlib-dir=<DIR> to specify prefix where ZLIB include and library are located" "$LINENO" 5 + as_fn_error "zip support requires ZLIB. Use --with-zlib-dir=<DIR> to specify prefix where ZLIB include and library are located" "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PHP_ZLIB_DIR" >&5 $as_echo "$PHP_ZLIB_DIR" >&6; } @@ -102359,7 +102395,7 @@ if test "$PHP_MYSQLND" != "no" || test "$PHP_MYSQLND_ENABLED" = "yes" || test "$ $as_echo_n "checking whether $php_typename exists... " >&6; } php_cache_value=php_cv_sizeof_$php_typename - if eval \${php_cv_sizeof_$php_typename+:} false; then : + if { as_var=php_cv_sizeof_$php_typename; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else @@ -102543,7 +102579,7 @@ if test "$PHP_RECODE" != "no"; then as_ac_Lib=`$as_echo "ac_cv_lib_$MYSQL_LIBNAME''_hash_insert" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hash_insert in -l$MYSQL_LIBNAME" >&5 $as_echo_n "checking for hash_insert in -l$MYSQL_LIBNAME... " >&6; } -if eval \${$as_ac_Lib+:} false; then : +if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -102578,7 +102614,8 @@ fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : +eval as_val=\$$as_ac_Lib + if test "x$as_val" = x""yes; then : LDFLAGS=$save_old_LDFLAGS ext_shared=$save_ext_shared @@ -102598,7 +102635,7 @@ fi fi if test -n "$recode_conflict"; then - as_fn_error $? "recode extension can not be configured together with:$recode_conflict" "$LINENO" 5 + as_fn_error "recode extension can not be configured together with:$recode_conflict" "$LINENO" 5 fi fi @@ -102716,7 +102753,7 @@ if test "$PHP_PEAR" != "no"; then if test "$pear_error_msg"; then - as_fn_error $? "$pear_error_msg" "$LINENO" 5 + as_fn_error "$pear_error_msg" "$LINENO" 5 fi install_pear="install-pear" @@ -102771,7 +102808,7 @@ $as_echo "${T_MD}Configuring Zend${T_ME}" >&6; } if test "$YACC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bison version" >&5 $as_echo_n "checking for bison version... " >&6; } -if ${php_cv_bison_version+:} false; then : +if test "${php_cv_bison_version+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -102827,7 +102864,8 @@ dlfcn.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : +eval as_val=\$$as_ac_Header + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF @@ -102838,7 +102876,7 @@ done ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default" -if test "x$ac_cv_type_size_t" = xyes; then : +if test "x$ac_cv_type_size_t" = x""yes; then : else @@ -102850,7 +102888,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking return type of signal handlers" >&5 $as_echo_n "checking return type of signal handlers... " >&6; } -if ${ac_cv_type_signal+:} false; then : +if test "${ac_cv_type_signal+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -102887,7 +102925,7 @@ _ACEOF ac_fn_c_check_type "$LINENO" "uint" "ac_cv_type_uint" "$ac_includes_default" -if test "x$ac_cv_type_uint" = xyes; then : +if test "x$ac_cv_type_uint" = x""yes; then : else @@ -102898,7 +102936,7 @@ _ACEOF fi ac_fn_c_check_type "$LINENO" "ulong" "ac_cv_type_ulong" "$ac_includes_default" -if test "x$ac_cv_type_ulong" = xyes; then : +if test "x$ac_cv_type_ulong" = x""yes; then : else @@ -102997,13 +103035,13 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext for ac_func in vprintf do : ac_fn_c_check_func "$LINENO" "vprintf" "ac_cv_func_vprintf" -if test "x$ac_cv_func_vprintf" = xyes; then : +if test "x$ac_cv_func_vprintf" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_VPRINTF 1 _ACEOF ac_fn_c_check_func "$LINENO" "_doprnt" "ac_cv_func__doprnt" -if test "x$ac_cv_func__doprnt" = xyes; then : +if test "x$ac_cv_func__doprnt" = x""yes; then : $as_echo "#define HAVE_DOPRNT 1" >>confdefs.h @@ -103015,7 +103053,7 @@ done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working memcmp" >&5 $as_echo_n "checking for working memcmp... " >&6; } -if ${ac_cv_func_memcmp_working+:} false; then : +if test "${ac_cv_func_memcmp_working+set}" = set; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : @@ -103079,7 +103117,7 @@ esac # for constant arguments. Useless! { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working alloca.h" >&5 $as_echo_n "checking for working alloca.h... " >&6; } -if ${ac_cv_working_alloca_h+:} false; then : +if test "${ac_cv_working_alloca_h+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -103112,7 +103150,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for alloca" >&5 $as_echo_n "checking for alloca... " >&6; } -if ${ac_cv_func_alloca_works+:} false; then : +if test "${ac_cv_func_alloca_works+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -103131,7 +103169,7 @@ else #pragma alloca # else # ifndef alloca /* predefined by HP cc +Olibcalls */ -void *alloca (size_t); +char *alloca (); # endif # endif # endif @@ -103175,7 +103213,7 @@ $as_echo "#define C_ALLOCA 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether \`alloca.c' needs Cray hooks" >&5 $as_echo_n "checking whether \`alloca.c' needs Cray hooks... " >&6; } -if ${ac_cv_os_cray+:} false; then : +if test "${ac_cv_os_cray+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -103202,7 +103240,8 @@ if test $ac_cv_os_cray = yes; then for ac_func in _getb67 GETB67 getb67; do as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test \"x\$"$as_ac_var"\" = x"yes"; then : +eval as_val=\$$as_ac_var + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define CRAY_STACKSEG_END $ac_func @@ -103216,7 +103255,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking stack direction for C alloca" >&5 $as_echo_n "checking stack direction for C alloca... " >&6; } -if ${ac_cv_c_stack_direction+:} false; then : +if test "${ac_cv_c_stack_direction+set}" = set; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : @@ -103268,7 +103307,8 @@ for ac_func in memcpy strdup getpid kill strtod strtol finite fpclass sigsetjmp do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test \"x\$"$as_ac_var"\" = x"yes"; then : +eval as_val=\$$as_ac_var + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF @@ -103279,7 +103319,7 @@ done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether sprintf is broken" >&5 $as_echo_n "checking whether sprintf is broken... " >&6; } -if ${ac_cv_broken_sprintf+:} false; then : +if test "${ac_cv_broken_sprintf+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -103325,7 +103365,8 @@ for ac_func in finite isfinite isinf isnan do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test \"x\$"$as_ac_var"\" = x"yes"; then : +eval as_val=\$$as_ac_var + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF @@ -103337,7 +103378,7 @@ done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether fp_except is defined" >&5 $as_echo_n "checking whether fp_except is defined... " >&6; } -if ${ac_cv_type_fp_except+:} false; then : +if test "${ac_cv_type_fp_except+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -103654,7 +103695,7 @@ fi for ac_header in dlfcn.h do : ac_fn_c_check_header_mongrel "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default" -if test "x$ac_cv_header_dlfcn_h" = xyes; then : +if test "x$ac_cv_header_dlfcn_h" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_DLFCN_H 1 _ACEOF @@ -103672,7 +103713,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<EOF -#line 103675 "configure" +#line 103716 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -103887,7 +103928,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inline" >&5 $as_echo_n "checking for inline... " >&6; } -if ${ac_cv_c_inline+:} false; then : +if test "${ac_cv_c_inline+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_cv_c_inline=no @@ -104152,7 +104193,7 @@ fi for ac_func in mremap do : ac_fn_c_check_func "$LINENO" "mremap" "ac_cv_func_mremap" -if test "x$ac_cv_func_mremap" = xyes; then : +if test "x$ac_cv_func_mremap" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_MREMAP 1 _ACEOF @@ -104175,7 +104216,7 @@ fi ac_fn_c_check_func "$LINENO" "sigaction" "ac_cv_func_sigaction" -if test "x$ac_cv_func_sigaction" = xyes; then : +if test "x$ac_cv_func_sigaction" = x""yes; then : $as_echo "#define HAVE_SIGACTION 1" >>confdefs.h @@ -104240,7 +104281,7 @@ $as_echo "${T_MD}Configuring TSRM${T_ME}" >&6; } for ac_header in stdarg.h do : ac_fn_c_check_header_mongrel "$LINENO" "stdarg.h" "ac_cv_header_stdarg_h" "$ac_includes_default" -if test "x$ac_cv_header_stdarg_h" = xyes; then : +if test "x$ac_cv_header_stdarg_h" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STDARG_H 1 _ACEOF @@ -104253,7 +104294,7 @@ done for ac_func in sigprocmask do : ac_fn_c_check_func "$LINENO" "sigprocmask" "ac_cv_func_sigprocmask" -if test "x$ac_cv_func_sigprocmask" = xyes; then : +if test "x$ac_cv_func_sigprocmask" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_SIGPROCMASK 1 _ACEOF @@ -104342,14 +104383,14 @@ elif test "$TSRM_ST" != "no"; then for ac_header in st.h do : ac_fn_c_check_header_mongrel "$LINENO" "st.h" "ac_cv_header_st_h" "$ac_includes_default" -if test "x$ac_cv_header_st_h" = xyes; then : +if test "x$ac_cv_header_st_h" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_ST_H 1 _ACEOF else - as_fn_error $? "Sorry, I was unable to locate the State Threads header file. Please specify the prefix using --with-tsrm-st=/prefix" "$LINENO" 5 + as_fn_error "Sorry, I was unable to locate the State Threads header file. Please specify the prefix using --with-tsrm-st=/prefix" "$LINENO" 5 fi @@ -104431,7 +104472,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthreads_cflags" >&5 $as_echo_n "checking for pthreads_cflags... " >&6; } -if ${ac_cv_pthreads_cflags+:} false; then : +if test "${ac_cv_pthreads_cflags+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -104497,7 +104538,7 @@ $as_echo "$ac_cv_pthreads_cflags" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthreads_lib" >&5 $as_echo_n "checking for pthreads_lib... " >&6; } -if ${ac_cv_pthreads_lib+:} false; then : +if test "${ac_cv_pthreads_lib+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -104573,7 +104614,7 @@ $as_echo "#define BETHREADS 1" >>confdefs.h else if test "$pthreads_working" != "yes"; then - as_fn_error $? "Your system seems to lack POSIX threads." "$LINENO" 5 + as_fn_error "Your system seems to lack POSIX threads." "$LINENO" 5 fi @@ -105216,7 +105257,7 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 $as_echo_n "checking for non-GNU ld... " >&6; } fi -if ${lt_cv_path_LD+:} false; then : +if test "${lt_cv_path_LD+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -z "$LD"; then @@ -105253,10 +105294,10 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi -test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 +test -z "$LD" && as_fn_error "no acceptable ld found in \$PATH" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } -if ${lt_cv_prog_gnu_ld+:} false; then : +if test "${lt_cv_prog_gnu_ld+set}" = set; then : $as_echo_n "(cached) " >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. @@ -105276,7 +105317,7 @@ with_gnu_ld=$lt_cv_prog_gnu_ld { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 $as_echo_n "checking for $LD option to reload object files... " >&6; } -if ${lt_cv_ld_reload_flag+:} false; then : +if test "${lt_cv_ld_reload_flag+set}" = set; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_reload_flag='-r' @@ -105301,7 +105342,7 @@ esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD-compatible nm" >&5 $as_echo_n "checking for BSD-compatible nm... " >&6; } -if ${lt_cv_path_NM+:} false; then : +if test "${lt_cv_path_NM+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$NM"; then @@ -105354,7 +105395,7 @@ NM="$lt_cv_path_NM" { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 $as_echo_n "checking how to recognize dependent libraries... " >&6; } -if ${lt_cv_deplibs_check_method+:} false; then : +if test "${lt_cv_deplibs_check_method+set}" = set; then : $as_echo_n "(cached) " >&6 else lt_cv_file_magic_cmd='$MAGIC_CMD' @@ -105584,7 +105625,7 @@ ia64-*-hpux*) ;; *-*-irix6*) # Find out which ABI we are using. - echo '#line 105587 "configure"' > conftest.$ac_ext + echo '#line 105628 "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? @@ -105678,7 +105719,7 @@ s390*-*linux*|sparc*-*linux*) CFLAGS="$CFLAGS -belf" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 $as_echo_n "checking whether the C compiler needs -belf... " >&6; } -if ${lt_cv_cc_needs_belf+:} false; then : +if test "${lt_cv_cc_needs_belf+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -105763,7 +105804,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5 $as_echo_n "checking how to run the C++ preprocessor... " >&6; } if test -z "$CXXCPP"; then - if ${ac_cv_prog_CXXCPP+:} false; then : + if test "${ac_cv_prog_CXXCPP+set}" = set; then : $as_echo_n "(cached) " >&6 else # Double quotes because CXXCPP needs to be expanded @@ -105793,7 +105834,7 @@ else # Broken: fails on valid input. continue fi -rm -f conftest.err conftest.i conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. @@ -105809,11 +105850,11 @@ else ac_preproc_ok=: break fi -rm -f conftest.err conftest.i conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi @@ -105852,7 +105893,7 @@ else # Broken: fails on valid input. continue fi -rm -f conftest.err conftest.i conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. @@ -105868,18 +105909,18 @@ else ac_preproc_ok=: break fi -rm -f conftest.err conftest.i conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext +rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check -See \`config.log' for more details" "$LINENO" 5; } +as_fn_error "C++ preprocessor \"$CXXCPP\" fails sanity check +See \`config.log' for more details." "$LINENO" 5; } fi ac_ext=cpp @@ -105895,7 +105936,7 @@ fi # find the maximum length of command line arguments { $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 $as_echo_n "checking the maximum length of command line arguments... " >&6; } -if ${lt_cv_sys_max_cmd_len+:} false; then : +if test "${lt_cv_sys_max_cmd_len+set}" = set; then : $as_echo_n "(cached) " >&6 else i=0 @@ -106019,7 +106060,7 @@ fi # Check for command to grab the raw symbol name followed by C symbol from nm. { $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 $as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } -if ${lt_cv_sys_global_symbol_pipe+:} false; then : +if test "${lt_cv_sys_global_symbol_pipe+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -106231,7 +106272,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 $as_echo_n "checking for objdir... " >&6; } -if ${lt_cv_objdir+:} false; then : +if test "${lt_cv_objdir+set}" = set; then : $as_echo_n "(cached) " >&6 else rm -f .libs 2>/dev/null @@ -106298,7 +106339,7 @@ if test -n "$ac_tool_prefix"; then set dummy ${ac_tool_prefix}ar; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_AR+:} false; then : +if test "${ac_cv_prog_AR+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$AR"; then @@ -106338,7 +106379,7 @@ if test -z "$ac_cv_prog_AR"; then set dummy ar; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_AR+:} false; then : +if test "${ac_cv_prog_ac_ct_AR+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_AR"; then @@ -106390,7 +106431,7 @@ if test -n "$ac_tool_prefix"; then set dummy ${ac_tool_prefix}ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_RANLIB+:} false; then : +if test "${ac_cv_prog_RANLIB+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$RANLIB"; then @@ -106430,7 +106471,7 @@ if test -z "$ac_cv_prog_RANLIB"; then set dummy ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : +if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_RANLIB"; then @@ -106482,7 +106523,7 @@ if test -n "$ac_tool_prefix"; then set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_STRIP+:} false; then : +if test "${ac_cv_prog_STRIP+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then @@ -106522,7 +106563,7 @@ if test -z "$ac_cv_prog_STRIP"; then set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_STRIP+:} false; then : +if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then @@ -106625,7 +106666,7 @@ file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 $as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } -if ${lt_cv_path_MAGIC_CMD+:} false; then : +if test "${lt_cv_path_MAGIC_CMD+set}" = set; then : $as_echo_n "(cached) " >&6 else case $MAGIC_CMD in @@ -106687,7 +106728,7 @@ if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 $as_echo_n "checking for file... " >&6; } -if ${lt_cv_path_MAGIC_CMD+:} false; then : +if test "${lt_cv_path_MAGIC_CMD+set}" = set; then : $as_echo_n "(cached) " >&6 else case $MAGIC_CMD in @@ -106762,7 +106803,7 @@ esac set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_DSYMUTIL+:} false; then : +if test "${ac_cv_prog_DSYMUTIL+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$DSYMUTIL"; then @@ -106802,7 +106843,7 @@ if test -z "$ac_cv_prog_DSYMUTIL"; then set dummy dsymutil; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then : +if test "${ac_cv_prog_ac_ct_DSYMUTIL+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DSYMUTIL"; then @@ -106854,7 +106895,7 @@ fi set dummy ${ac_tool_prefix}nmedit; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_NMEDIT+:} false; then : +if test "${ac_cv_prog_NMEDIT+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$NMEDIT"; then @@ -106894,7 +106935,7 @@ if test -z "$ac_cv_prog_NMEDIT"; then set dummy nmedit; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then : +if test "${ac_cv_prog_ac_ct_NMEDIT+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_NMEDIT"; then @@ -106944,7 +106985,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 $as_echo_n "checking for -single_module linker flag... " >&6; } -if ${lt_cv_apple_cc_single_mod+:} false; then : +if test "${lt_cv_apple_cc_single_mod+set}" = set; then : $as_echo_n "(cached) " >&6 else lt_cv_apple_cc_single_mod=no @@ -106967,7 +107008,7 @@ fi $as_echo "$lt_cv_apple_cc_single_mod" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 $as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } -if ${lt_cv_ld_exported_symbols_list+:} false; then : +if test "${lt_cv_ld_exported_symbols_list+set}" = set; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_exported_symbols_list=no @@ -106976,7 +107017,7 @@ else LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" cat > conftest.$ac_ext <<EOF -#line 106979 "configure" +#line 107020 "configure" #include "confdefs.h" int main() { ; return 0; } @@ -107118,7 +107159,7 @@ if test "$GCC" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 $as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } -if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : +if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_rtti_exceptions=no @@ -107134,11 +107175,11 @@ else -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"configure:107137: $lt_compile\"" >&5) + (eval echo "\"configure:107178: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "configure:107141: \$? = $ac_status" >&5 + echo "configure:107182: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. @@ -107416,7 +107457,7 @@ if test -n "$lt_prog_compiler_pic"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } -if ${lt_cv_prog_compiler_pic_works+:} false; then : +if test "${lt_cv_prog_compiler_pic_works+set}" = set; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic_works=no @@ -107432,11 +107473,11 @@ else -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"configure:107435: $lt_compile\"" >&5) + (eval echo "\"configure:107476: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "configure:107439: \$? = $ac_status" >&5 + echo "configure:107480: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. @@ -107479,7 +107520,7 @@ esac wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } -if ${lt_cv_prog_compiler_static_works+:} false; then : +if test "${lt_cv_prog_compiler_static_works+set}" = set; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_static_works=no @@ -107517,7 +107558,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -if ${lt_cv_prog_compiler_c_o+:} false; then : +if test "${lt_cv_prog_compiler_c_o+set}" = set; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o=no @@ -107536,11 +107577,11 @@ else -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"configure:107539: $lt_compile\"" >&5) + (eval echo "\"configure:107580: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "configure:107543: \$? = $ac_status" >&5 + echo "configure:107584: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized @@ -108000,7 +108041,7 @@ _LT_EOF # Determine the default libpath from the value encoded in an empty executable. cat > conftest.$ac_ext <<EOF -#line 108003 "configure" +#line 108044 "configure" #include "confdefs.h" int main() { ; return 0; } @@ -108042,7 +108083,7 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi # Determine the default libpath from the value encoded in an empty executable. cat > conftest.$ac_ext <<EOF -#line 108045 "configure" +#line 108086 "configure" #include "confdefs.h" int main() { ; return 0; } @@ -109193,14 +109234,14 @@ esac $as_echo "$dynamic_linker" >&6; } test "$dynamic_linker" = no && can_build_shared=no -if ${lt_cv_sys_lib_search_path_spec+:} false; then : +if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then : $as_echo_n "(cached) " >&6 else lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec" fi sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" -if ${lt_cv_sys_lib_dlsearch_path_spec+:} false; then : +if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then : $as_echo_n "(cached) " >&6 else lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec" @@ -109309,7 +109350,7 @@ else # if libdl is installed we need to link against it { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } -if ${ac_cv_lib_dl_dlopen+:} false; then : +if test "${ac_cv_lib_dl_dlopen+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -109343,7 +109384,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } -if test "x$ac_cv_lib_dl_dlopen" = xyes; then : +if test "x$ac_cv_lib_dl_dlopen" = x""yes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else @@ -109357,12 +109398,12 @@ fi *) ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" -if test "x$ac_cv_func_shl_load" = xyes; then : +if test "x$ac_cv_func_shl_load" = x""yes; then : lt_cv_dlopen="shl_load" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 $as_echo_n "checking for shl_load in -ldld... " >&6; } -if ${ac_cv_lib_dld_shl_load+:} false; then : +if test "${ac_cv_lib_dld_shl_load+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -109396,16 +109437,16 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 $as_echo "$ac_cv_lib_dld_shl_load" >&6; } -if test "x$ac_cv_lib_dld_shl_load" = xyes; then : +if test "x$ac_cv_lib_dld_shl_load" = x""yes; then : lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" else ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" -if test "x$ac_cv_func_dlopen" = xyes; then : +if test "x$ac_cv_func_dlopen" = x""yes; then : lt_cv_dlopen="dlopen" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } -if ${ac_cv_lib_dl_dlopen+:} false; then : +if test "${ac_cv_lib_dl_dlopen+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -109439,12 +109480,12 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } -if test "x$ac_cv_lib_dl_dlopen" = xyes; then : +if test "x$ac_cv_lib_dl_dlopen" = x""yes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 $as_echo_n "checking for dlopen in -lsvld... " >&6; } -if ${ac_cv_lib_svld_dlopen+:} false; then : +if test "${ac_cv_lib_svld_dlopen+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -109478,12 +109519,12 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 $as_echo "$ac_cv_lib_svld_dlopen" >&6; } -if test "x$ac_cv_lib_svld_dlopen" = xyes; then : +if test "x$ac_cv_lib_svld_dlopen" = x""yes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 $as_echo_n "checking for dld_link in -ldld... " >&6; } -if ${ac_cv_lib_dld_dld_link+:} false; then : +if test "${ac_cv_lib_dld_dld_link+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -109517,7 +109558,7 @@ LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 $as_echo "$ac_cv_lib_dld_dld_link" >&6; } -if test "x$ac_cv_lib_dld_dld_link" = xyes; then : +if test "x$ac_cv_lib_dld_dld_link" = x""yes; then : lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" fi @@ -109558,7 +109599,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 $as_echo_n "checking whether a program can dlopen itself... " >&6; } -if ${lt_cv_dlopen_self+:} false; then : +if test "${lt_cv_dlopen_self+set}" = set; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : @@ -109567,7 +109608,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<EOF -#line 109570 "configure" +#line 109611 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -109658,7 +109699,7 @@ $as_echo "$lt_cv_dlopen_self" >&6; } wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 $as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } -if ${lt_cv_dlopen_self_static+:} false; then : +if test "${lt_cv_dlopen_self_static+set}" = set; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : @@ -109667,7 +109708,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<EOF -#line 109670 "configure" +#line 109711 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -110344,13 +110385,13 @@ $as_echo "$as_me: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&2;} # Check whether tagname contains only valid characters case `$echo "X$tagname" | $Xsed -e 's:[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]::g'` in "") ;; - *) as_fn_error $? "invalid tag name: $tagname" "$LINENO" 5 + *) as_fn_error "invalid tag name: $tagname" "$LINENO" 5 ;; esac if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null then - as_fn_error $? "tag name \"$tagname\" already exists" "$LINENO" 5 + as_fn_error "tag name \"$tagname\" already exists" "$LINENO" 5 fi # Update the list of available tags. @@ -110529,7 +110570,7 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 $as_echo_n "checking for non-GNU ld... " >&6; } fi -if ${lt_cv_path_LD+:} false; then : +if test "${lt_cv_path_LD+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -z "$LD"; then @@ -110566,10 +110607,10 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi -test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 +test -z "$LD" && as_fn_error "no acceptable ld found in \$PATH" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } -if ${lt_cv_prog_gnu_ld+:} false; then : +if test "${lt_cv_prog_gnu_ld+set}" = set; then : $as_echo_n "(cached) " >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. @@ -110732,7 +110773,7 @@ case $host_os in # Determine the default libpath from the value encoded in an empty executable. cat > conftest.$ac_ext <<EOF -#line 110735 "configure" +#line 110776 "configure" #include "confdefs.h" int main() { ; return 0; } @@ -110775,7 +110816,7 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi # Determine the default libpath from the value encoded in an empty executable. cat > conftest.$ac_ext <<EOF -#line 110778 "configure" +#line 110819 "configure" #include "confdefs.h" int main() { ; return 0; } @@ -112011,7 +112052,7 @@ if test -n "$lt_prog_compiler_pic_CXX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... " >&6; } -if ${lt_cv_prog_compiler_pic_works_CXX+:} false; then : +if test "${lt_cv_prog_compiler_pic_works_CXX+set}" = set; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic_works_CXX=no @@ -112027,11 +112068,11 @@ else -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"configure:112030: $lt_compile\"" >&5) + (eval echo "\"configure:112071: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "configure:112034: \$? = $ac_status" >&5 + echo "configure:112075: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. @@ -112074,7 +112115,7 @@ esac wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } -if ${lt_cv_prog_compiler_static_works_CXX+:} false; then : +if test "${lt_cv_prog_compiler_static_works_CXX+set}" = set; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_static_works_CXX=no @@ -112112,7 +112153,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -if ${lt_cv_prog_compiler_c_o_CXX+:} false; then : +if test "${lt_cv_prog_compiler_c_o_CXX+set}" = set; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o_CXX=no @@ -112131,11 +112172,11 @@ else -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"configure:112134: $lt_compile\"" >&5) + (eval echo "\"configure:112175: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "configure:112138: \$? = $ac_status" >&5 + echo "configure:112179: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized @@ -112830,14 +112871,14 @@ esac $as_echo "$dynamic_linker" >&6; } test "$dynamic_linker" = no && can_build_shared=no -if ${lt_cv_sys_lib_search_path_spec+:} false; then : +if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then : $as_echo_n "(cached) " >&6 else lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec" fi sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" -if ${lt_cv_sys_lib_dlsearch_path_spec+:} false; then : +if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then : $as_echo_n "(cached) " >&6 else lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec" @@ -113325,7 +113366,7 @@ lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld ;; *) - as_fn_error $? "Unsupported tag name: $tagname" "$LINENO" 5 + as_fn_error "Unsupported tag name: $tagname" "$LINENO" 5 ;; esac @@ -113343,7 +113384,7 @@ lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld chmod +x "$ofile" else rm -f "${ofile}T" - as_fn_error $? "unable to update list of available tagged configurations." "$LINENO" 5 + as_fn_error "unable to update list of available tagged configurations." "$LINENO" 5 fi fi @@ -114018,21 +114059,10 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then - if test "x$cache_file" != "x/dev/null"; then + test "x$cache_file" != "x/dev/null" && { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} - if test ! -f "$cache_file" || test -h "$cache_file"; then - cat confcache >"$cache_file" - else - case $cache_file in #( - */* | ?:*) - mv -f confcache "$cache_file"$$ && - mv -f "$cache_file"$$ "$cache_file" ;; #( - *) - mv -f confcache "$cache_file" ;; - esac - fi - fi + cat confcache >$cache_file else { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} @@ -114048,7 +114078,6 @@ DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= -U= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' @@ -114064,7 +114093,7 @@ LTLIBOBJS=$ac_ltlibobjs -: "${CONFIG_STATUS=./config.status}" +: ${CONFIG_STATUS=./config.status} ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" @@ -114165,7 +114194,6 @@ fi IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. -as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR @@ -114211,19 +114239,19 @@ export LANGUAGE (unset CDPATH) >/dev/null 2>&1 && unset CDPATH -# as_fn_error STATUS ERROR [LINENO LOG_FD] -# ---------------------------------------- +# as_fn_error ERROR [LINENO LOG_FD] +# --------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the -# script with STATUS, using 1 if that was 0. +# script with status $?, using 1 if that was 0. as_fn_error () { - as_status=$1; test $as_status -eq 0 && as_status=1 - if test "$4"; then - as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 + as_status=$?; test $as_status -eq 0 && as_status=1 + if test "$3"; then + as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 fi - $as_echo "$as_me: error: $2" >&2 + $as_echo "$as_me: error: $1" >&2 as_fn_exit $as_status } # as_fn_error @@ -114419,7 +114447,7 @@ $as_echo X"$as_dir" | test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" + } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" } # as_fn_mkdir_p @@ -114473,7 +114501,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # values after options handling. ac_log=" This file was extended by $as_me, which was -generated by GNU Autoconf 2.68. Invocation command line was +generated by GNU Autoconf 2.65. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS @@ -114539,10 +114567,10 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ config.status -configured by $0, generated by GNU Autoconf 2.68, +configured by $0, generated by GNU Autoconf 2.65, with options \\"\$ac_cs_config\\" -Copyright (C) 2010 Free Software Foundation, Inc. +Copyright (C) 2009 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." @@ -114557,16 +114585,11 @@ ac_need_defaults=: while test $# != 0 do case $1 in - --*=?*) + --*=*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; - --*=) - ac_option=`expr "X$1" : 'X\([^=]*\)='` - ac_optarg= - ac_shift=: - ;; *) ac_option=$1 ac_optarg=$2 @@ -114588,7 +114611,6 @@ do $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; - '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; @@ -114601,7 +114623,7 @@ do ac_need_defaults=false;; --he | --h) # Conflict between --help and --header - as_fn_error $? "ambiguous option: \`$1' + as_fn_error "ambiguous option: \`$1' Try \`$0 --help' for more information.";; --help | --hel | -h ) $as_echo "$ac_cs_usage"; exit ;; @@ -114610,7 +114632,7 @@ Try \`$0 --help' for more information.";; ac_cs_silent=: ;; # This is an error. - -*) as_fn_error $? "unrecognized option: \`$1' + -*) as_fn_error "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" @@ -114806,7 +114828,7 @@ do "$ALL_OUTPUT_FILES") CONFIG_FILES="$CONFIG_FILES $ALL_OUTPUT_FILES" ;; "default") CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;; - *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; + *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done @@ -114829,10 +114851,9 @@ fi # after its creation but before its name has been assigned to `$tmp'. $debug || { - tmp= ac_tmp= + tmp= trap 'exit_status=$? - : "${ac_tmp:=$tmp}" - { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status + { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } @@ -114840,13 +114861,12 @@ $debug || { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && - test -d "$tmp" + test -n "$tmp" && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") -} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 -ac_tmp=$tmp +} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5 # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. @@ -114863,12 +114883,12 @@ if test "x$ac_cr" = x; then fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then - ac_cs_awk_cr='\\r' + ac_cs_awk_cr='\r' else ac_cs_awk_cr=$ac_cr fi -echo 'BEGIN {' >"$ac_tmp/subs1.awk" && +echo 'BEGIN {' >"$tmp/subs1.awk" && _ACEOF @@ -114877,18 +114897,18 @@ _ACEOF echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || - as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 -ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` + as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 +ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || - as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 + as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then - as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 + as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi @@ -114896,7 +114916,7 @@ done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && +cat >>"\$tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h @@ -114944,7 +114964,7 @@ t delim rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK -cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && +cat >>"\$tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" @@ -114976,29 +114996,21 @@ if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat -fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ - || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 +fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \ + || as_fn_error "could not setup config files machinery" "$LINENO" 5 _ACEOF -# VPATH may cause trouble with some makes, so we remove sole $(srcdir), -# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and +# VPATH may cause trouble with some makes, so we remove $(srcdir), +# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then - ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ -h -s/// -s/^/:/ -s/[ ]*$/:/ -s/:\$(srcdir):/:/g -s/:\${srcdir}:/:/g -s/:@srcdir@:/:/g -s/^:*// + ac_vpsub='/^[ ]*VPATH[ ]*=/{ +s/:*\$(srcdir):*/:/ +s/:*\${srcdir}:*/:/ +s/:*@srcdir@:*/:/ +s/^\([^=]*=[ ]*\):*/\1/ s/:*$// -x -s/\(=[ ]*\).*/\1/ -G -s/\n// s/^[^=]*=[ ]*$// }' fi @@ -115010,7 +115022,7 @@ fi # test -n "$CONFIG_FILES" # No need to generate them if there are no CONFIG_HEADERS. # This happens for instance with `./config.status Makefile'. if test -n "$CONFIG_HEADERS"; then -cat >"$ac_tmp/defines.awk" <<\_ACAWK || +cat >"$tmp/defines.awk" <<\_ACAWK || BEGIN { _ACEOF @@ -115022,11 +115034,11 @@ _ACEOF # handling of long lines. ac_delim='%!_!# ' for ac_last_try in false false :; do - ac_tt=`sed -n "/$ac_delim/p" confdefs.h` - if test -z "$ac_tt"; then + ac_t=`sed -n "/$ac_delim/p" confdefs.h` + if test -z "$ac_t"; then break elif $ac_last_try; then - as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 + as_fn_error "could not make $CONFIG_HEADERS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi @@ -115111,7 +115123,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 - as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 + as_fn_error "could not setup config headers machinery" "$LINENO" 5 fi # test -n "$CONFIG_HEADERS" @@ -115124,7 +115136,7 @@ do esac case $ac_mode$ac_tag in :[FHL]*:*);; - :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; + :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac @@ -115143,7 +115155,7 @@ do for ac_f do case $ac_f in - -) ac_f="$ac_tmp/stdin";; + -) ac_f="$tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. @@ -115152,7 +115164,7 @@ do [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || - as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; + as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" @@ -115178,8 +115190,8 @@ $as_echo "$as_me: creating $ac_file" >&6;} esac case $ac_tag in - *:-:* | *:-) cat >"$ac_tmp/stdin" \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; + *:-:* | *:-) cat >"$tmp/stdin" \ + || as_fn_error "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac @@ -115304,24 +115316,23 @@ s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t $ac_datarootdir_hack " -eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ - >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 +eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \ + || as_fn_error "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && - { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && - { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ - "$ac_tmp/out"`; test -z "$ac_out"; } && + { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && + { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined" >&5 +which seems to be undefined. Please make sure it is defined." >&5 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined" >&2;} +which seems to be undefined. Please make sure it is defined." >&2;} - rm -f "$ac_tmp/stdin" + rm -f "$tmp/stdin" case $ac_file in - -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; - *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; + -) cat "$tmp/out" && rm -f "$tmp/out";; + *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";; esac \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + || as_fn_error "could not create $ac_file" "$LINENO" 5 ;; :H) # @@ -115330,21 +115341,21 @@ which seems to be undefined. Please make sure it is defined" >&2;} if test x"$ac_file" != x-; then { $as_echo "/* $configure_input */" \ - && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" - } >"$ac_tmp/config.h" \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 - if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then + && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" + } >"$tmp/config.h" \ + || as_fn_error "could not create $ac_file" "$LINENO" 5 + if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 $as_echo "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" - mv "$ac_tmp/config.h" "$ac_file" \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + mv "$tmp/config.h" "$ac_file" \ + || as_fn_error "could not create $ac_file" "$LINENO" 5 fi else $as_echo "/* $configure_input */" \ - && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ - || as_fn_error $? "could not create -" "$LINENO" 5 + && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \ + || as_fn_error "could not create -" "$LINENO" 5 fi ;; @@ -115361,7 +115372,7 @@ _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || - as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 + as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. @@ -115382,7 +115393,7 @@ if test "$no_create" != yes; then exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. - $ac_cs_success || as_fn_exit 1 + $ac_cs_success || as_fn_exit $? fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 diff --git a/configure.in b/configure.in index 247085638..1776a5ad4 100644 --- a/configure.in +++ b/configure.in @@ -119,7 +119,7 @@ int zend_sprintf(char *buffer, const char *format, ...); PHP_MAJOR_VERSION=5 PHP_MINOR_VERSION=4 -PHP_RELEASE_VERSION=2 +PHP_RELEASE_VERSION=3 PHP_EXTRA_VERSION="" PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION" PHP_VERSION_ID=`expr [$]PHP_MAJOR_VERSION \* 10000 + [$]PHP_MINOR_VERSION \* 100 + [$]PHP_RELEASE_VERSION` diff --git a/generated_lists b/generated_lists index 4d149666f..5ca5adb02 100644 --- a/generated_lists +++ b/generated_lists @@ -1,2 +1,2 @@ makefile_am_files = Zend/Makefile.am TSRM/Makefile.am -config_m4_files = Zend/Zend.m4 TSRM/tsrm.m4 TSRM/threads.m4 Zend/acinclude.m4 ext/bcmath/config.m4 ext/bz2/config.m4 ext/calendar/config.m4 ext/ctype/config.m4 ext/curl/config.m4 ext/date/config0.m4 ext/dba/config.m4 ext/dom/config.m4 ext/enchant/config.m4 ext/ereg/config0.m4 ext/exif/config.m4 ext/fileinfo/config.m4 ext/filter/config.m4 ext/ftp/config.m4 ext/gd/config.m4 ext/gettext/config.m4 ext/gmp/config.m4 ext/hash/config.m4 ext/iconv/config.m4 ext/imap/config.m4 ext/interbase/config.m4 ext/intl/config.m4 ext/json/config.m4 ext/ldap/config.m4 ext/libxml/config0.m4 ext/mbstring/config.m4 ext/mcrypt/config.m4 ext/mssql/config.m4 ext/mysql/config.m4 ext/mysqli/config.m4 ext/mysqlnd/config9.m4 ext/oci8/config.m4 ext/odbc/config.m4 ext/openssl/config0.m4 ext/pcntl/config.m4 ext/pcre/config0.m4 ext/pdo/config.m4 ext/pdo_dblib/config.m4 ext/pdo_firebird/config.m4 ext/pdo_mysql/config.m4 ext/pdo_oci/config.m4 ext/pdo_odbc/config.m4 ext/pdo_pgsql/config.m4 ext/pdo_sqlite/config.m4 ext/pgsql/config.m4 ext/phar/config.m4 ext/posix/config.m4 ext/pspell/config.m4 ext/readline/config.m4 ext/recode/config9.m4 ext/recode/config.m4 ext/reflection/config.m4 ext/session/config.m4 ext/shmop/config.m4 ext/simplexml/config.m4 ext/snmp/config.m4 ext/soap/config.m4 ext/sockets/config.m4 ext/spl/config.m4 ext/sqlite3/config0.m4 ext/standard/config.m4 ext/sybase_ct/config.m4 ext/sysvmsg/config.m4 ext/sysvsem/config.m4 ext/sysvshm/config.m4 ext/tidy/config.m4 ext/tokenizer/config.m4 ext/wddx/config.m4 ext/xml/config.m4 ext/xmlreader/config.m4 ext/xmlrpc/config.m4 ext/xmlwriter/config.m4 ext/xsl/config.m4 ext/zip/config.m4 ext/zlib/config0.m4 sapi/aolserver/config.m4 sapi/apache2filter/config.m4 sapi/apache2handler/config.m4 sapi/apache/config.m4 sapi/apache_hooks/config.m4 sapi/caudium/config.m4 sapi/cli/config.m4 sapi/continuity/config.m4 sapi/embed/config.m4 sapi/fpm/config.m4 sapi/isapi/config.m4 sapi/litespeed/config.m4 sapi/milter/config.m4 sapi/nsapi/config.m4 sapi/phttpd/config.m4 sapi/pi3web/config.m4 sapi/roxen/config.m4 sapi/thttpd/config.m4 sapi/tux/config.m4 sapi/webjames/config.m4 +config_m4_files = Zend/Zend.m4 TSRM/tsrm.m4 TSRM/threads.m4 Zend/acinclude.m4 ext/bcmath/config.m4 ext/bz2/config.m4 ext/calendar/config.m4 ext/ctype/config.m4 ext/curl/config.m4 ext/date/config0.m4 ext/dba/config.m4 ext/dom/config.m4 ext/enchant/config.m4 ext/ereg/config0.m4 ext/exif/config.m4 ext/fileinfo/config.m4 ext/filter/config.m4 ext/ftp/config.m4 ext/gd/config.m4 ext/gettext/config.m4 ext/gmp/config.m4 ext/hash/config.m4 ext/iconv/config.m4 ext/imap/config.m4 ext/interbase/config.m4 ext/intl/config.m4 ext/json/config.m4 ext/ldap/config.m4 ext/libxml/config0.m4 ext/mbstring/config.m4 ext/mcrypt/config.m4 ext/mssql/config.m4 ext/mysql/config.m4 ext/mysqli/config.m4 ext/mysqlnd/config9.m4 ext/oci8/config.m4 ext/odbc/config.m4 ext/openssl/config0.m4 ext/pcntl/config.m4 ext/pcre/config0.m4 ext/pdo/config.m4 ext/pdo_dblib/config.m4 ext/pdo_firebird/config.m4 ext/pdo_mysql/config.m4 ext/pdo_oci/config.m4 ext/pdo_odbc/config.m4 ext/pdo_pgsql/config.m4 ext/pdo_sqlite/config.m4 ext/pgsql/config.m4 ext/phar/config.m4 ext/posix/config.m4 ext/pspell/config.m4 ext/readline/config.m4 ext/recode/config.m4 ext/recode/config9.m4 ext/reflection/config.m4 ext/session/config.m4 ext/shmop/config.m4 ext/simplexml/config.m4 ext/snmp/config.m4 ext/soap/config.m4 ext/sockets/config.m4 ext/spl/config.m4 ext/sqlite3/config0.m4 ext/standard/config.m4 ext/sybase_ct/config.m4 ext/sysvmsg/config.m4 ext/sysvsem/config.m4 ext/sysvshm/config.m4 ext/tidy/config.m4 ext/tokenizer/config.m4 ext/wddx/config.m4 ext/xml/config.m4 ext/xmlreader/config.m4 ext/xmlrpc/config.m4 ext/xmlwriter/config.m4 ext/xsl/config.m4 ext/zip/config.m4 ext/zlib/config0.m4 sapi/aolserver/config.m4 sapi/apache/config.m4 sapi/apache2filter/config.m4 sapi/apache2handler/config.m4 sapi/apache_hooks/config.m4 sapi/caudium/config.m4 sapi/cli/config.m4 sapi/continuity/config.m4 sapi/embed/config.m4 sapi/fpm/config.m4 sapi/isapi/config.m4 sapi/litespeed/config.m4 sapi/milter/config.m4 sapi/nsapi/config.m4 sapi/phttpd/config.m4 sapi/pi3web/config.m4 sapi/roxen/config.m4 sapi/thttpd/config.m4 sapi/tux/config.m4 sapi/webjames/config.m4 diff --git a/main/php_version.h b/main/php_version.h index e609c7ac0..46fba1329 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -2,7 +2,7 @@ /* edit configure.in to change version number */ #define PHP_MAJOR_VERSION 5 #define PHP_MINOR_VERSION 4 -#define PHP_RELEASE_VERSION 2 +#define PHP_RELEASE_VERSION 3 #define PHP_EXTRA_VERSION "" -#define PHP_VERSION "5.4.2" -#define PHP_VERSION_ID 50402 +#define PHP_VERSION "5.4.3" +#define PHP_VERSION_ID 50403 diff --git a/sapi/cgi/cgi_main.c b/sapi/cgi/cgi_main.c index 84e0d63ad..215a3d265 100644 --- a/sapi/cgi/cgi_main.c +++ b/sapi/cgi/cgi_main.c @@ -1614,15 +1614,21 @@ PHP_FUNCTION(apache_request_headers) /* {{{ */ p = var + 5; var = q = t; + // First char keep uppercase *q++ = *p++; while (*p) { - if (*p == '_') { + if (*p == '=') { + // End of name + break; + } else if (*p == '_') { *q++ = '-'; p++; - if (*p) { + // First char after - keep uppercase + if (*p && *p!='=') { *q++ = *p++; } } else if (*p >= 'A' && *p <= 'Z') { + // lowercase *q++ = (*p++ - 'A' + 'a'); } else { *q++ = *p++; @@ -1806,10 +1812,15 @@ int main(int argc, char *argv[]) } } - if(query_string = getenv("QUERY_STRING")) { + if((query_string = getenv("QUERY_STRING")) != NULL && strchr(query_string, '=') == NULL) { + /* we've got query string that has no = - apache CGI will pass it to command line */ + unsigned char *p; decoded_query_string = strdup(query_string); php_url_decode(decoded_query_string, strlen(decoded_query_string)); - if(*decoded_query_string == '-' && strchr(decoded_query_string, '=') == NULL) { + for (p = decoded_query_string; *p && *p <= ' '; p++) { + /* skip all leading spaces */ + } + if(*p == '-') { skip_getopt = 1; } free(decoded_query_string); @@ -2073,7 +2084,7 @@ consult the installation file that came with this distribution, or visit \n\ } zend_first_try { - while ((c = php_getopt(argc, argv, OPTIONS, &php_optarg, &php_optind, 1, 2)) != -1) { + while (!skip_getopt && (c = php_getopt(argc, argv, OPTIONS, &php_optarg, &php_optind, 1, 2)) != -1) { switch (c) { case 'T': benchmark = 1; diff --git a/sapi/cgi/tests/apache_request_headers.phpt b/sapi/cgi/tests/apache_request_headers.phpt new file mode 100644 index 000000000..2c82d57b2 --- /dev/null +++ b/sapi/cgi/tests/apache_request_headers.phpt @@ -0,0 +1,49 @@ +--TEST-- +apache_request_headers() stack overflow. +--SKIPIF-- +<?php +include "skipif.inc"; +?> +--FILE-- +<?php +include "include.inc"; + +$php = get_cgi_path(); +reset_env_vars(); + +$file = dirname(__FILE__)."/012.test.php"; + +file_put_contents($file, '<?php print_r(apache_request_headers()); ?>'); + +passthru("$php $file"); + +$names = array('HTTP_X_TEST', 'HTTP_X__TEST', 'HTTP_X_'); +foreach ($names as $name) { + putenv($name."=".str_repeat("A", 256)); + passthru("$php -q $file"); + putenv($name); +} +unlink($file); + +echo "Done\n"; +?> +--EXPECTF-- +X-Powered-By: PHP/%s +Content-type: text/html + +Array +( +) +Array +( + [X-Test] => AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +) +Array +( + [X-_test] => AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +) +Array +( + [X-] => AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +) +Done |