~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Monty Taylor
  • Date: 2008-07-05 18:48:15 UTC
  • mto: This revision was merged to the branch mainline in revision 63.
  • Revision ID: monty@inaugust.com-20080705184815-tpoj3z762hoh8t6p
Added an automake conditional to not build the dbug dir, since I don't want to keep seeing errors for it while cleaning up other parts of the tree. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
700
700
            Full adds memory checked, very slow.])],
701
701
    [with_debug=$withval],
702
702
    [with_debug=no])
 
703
AM_CONDITIONAL(BUILD_DBUG, test "$with_debug" != "no")
703
704
if test "$with_debug" = "yes"
704
705
then
705
706
  # Medium debug.
706
707
  AC_DEFINE([DBUG_ON], [1], [Use libdbug])
707
708
  CFLAGS="$DEBUG_CFLAGS $DEBUG_OPTIMIZE_CC $CFLAGS"
708
709
  CXXFLAGS="$DEBUG_CXXFLAGS $DEBUG_OPTIMIZE_CXX $CXXFLAGS"
 
710
  
709
711
elif test "$with_debug" = "full"
710
712
then
711
713
  # Full debug. Very slow in some cases