# HG changeset patch # User Luke Schierer # Date 1130379011 0 # Node ID 5554d363fd59a82852033292f749422344e22717 # Parent 908ff9b56e99c664200eca95869e27676796cc91 [gaim-migrate @ 14138] (22:08:38) stu|laptop: LSchiere: really, I don't look forward to useless backtraces because we removed all -g* from configure.ac (22:08:42) Luke: stu|laptop: when I add the -g after the -Wall on line 317, then I end up with the CFLAGS in the Makefile set as follows: CFLAGS = -g -O2 -Wall -g (22:08:54) Luke: the -Wall -g is added by us (22:09:13) Luke: I assumed from that output that something else is adding -g anyway (22:09:34) Luke: but I'll go ahead and commit a redundant -g committer: Tailor Script diff -r 908ff9b56e99 -r 5554d363fd59 configure.ac --- a/configure.ac Wed Oct 26 13:03:56 2005 +0000 +++ b/configure.ac Thu Oct 27 02:10:11 2005 +0000 @@ -314,7 +314,7 @@ fi if test "x$GCC" = "xyes"; then - CFLAGS="$CFLAGS -Wall " + CFLAGS="$CFLAGS -Wall -g" fi AC_SUBST(CFLAGS)