static void
yyerror (const char *s)
{
-#ifdef YYLSP_NEEDED
+#if YYLSP_NEEDED
fprintf (stderr, "%d.%d:%d.%d: ",
yylloc.first_line, yylloc.first_column,
yylloc.last_line, yylloc.last_column);
yygetc ()
{
int res = getc (yyin);
-#ifdef YYLSP_NEEDED
+#if YYLSP_NEEDED
if (res == '\n')
{
yylloc.last_line++;
static void
yyungetc (int c)
{
-#ifdef YYLSP_NEEDED
+#if YYLSP_NEEDED
/* Wrong when C == `\n'. */
yylloc.last_column--;
#endif
{
int c;
-#ifdef YYLSP_NEEDED
+#if YYLSP_NEEDED
yylloc.first_column = yylloc.last_column;
yylloc.first_line = yylloc.last_line;
#endif
/* Skip white space. */
while ((c = yygetc ()) == ' ' || c == '\t')
{
-#ifdef YYLSP_NEEDED
+#if YYLSP_NEEDED
yylloc.first_column = yylloc.last_column;
yylloc.first_line = yylloc.last_line;
#endif
#if YYDEBUG
yydebug = 1;
#endif
-#ifdef YYLSP_NEEDED
+#if YYLSP_NEEDED
yylloc.last_column = 0;
yylloc.last_line = 1;
#endif
# ------------------ #
AT_CHECK_CALC()
-# This one is very suspicious. The test fails, but it might be normal.
-AT_CHECK_CALC([--raw])
AT_CHECK_CALC([--defines])
AT_CHECK_CALC([--locations])