~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Monty Taylor
  • Date: 2008-10-24 19:31:32 UTC
  • Revision ID: monty@inaugust.com-20081024193132-ynkd2xu3co0b0j92
Fixed syntax errors.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1462
1462
  then
1463
1463
    W_FAIL="-Werror"
1464
1464
  fi
1465
 
  BASE_WARNINGS="-W -Wall -Wextra -Wunused-macros -${W_FAIL}"
 
1465
  BASE_WARNINGS="-W -Wall -Wextra -Wunused-macros ${W_FAIL}"
1466
1466
 
1467
1467
  if test "$ac_warn_longlong" = "yes"
1468
1468
  then
1494
1494
 
1495
1495
  if test "$ac_warn_pedantic" = "yes"
1496
1496
  then
1497
 
  save_CXXFLAGS=CXXFLAGS
 
1497
  save_CXXFLAGS="${CXXFLAGS}"
1498
1498
  CXXFLAGS="${CXXFLAGS} ${BASE_WARNINGS}"
1499
1499
  AC_CACHE_CHECK([whether it is safe to use -Wredundant-decls],
1500
1500
    [ac_cv_safe_to_use_Wredundant_decls_],
1520
1520
    fi
1521
1521
    GCC_PEDANTIC="-pedantic -Wundef -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations ${W_REDUNDANT_DECLS} ${W_STRICT_ALIASING}"
1522
1522
    GXX_PEDANTIC="-pedantic -Wundef ${W_REDUNDANT_DECLS} ${W_LONGLONG} ${W_STRICT_ALIASING}"
 
1523
    CXXFLAGS="${save_CXXFLAGS}"
1523
1524
  fi
1524
1525
 
1525
1526
  if test "$ac_warn_unreachable" = "yes"