Index: [thread] [date] [subject] [author]
  From: Cesar Crusius <crusius@leland.stanford.edu>
  To  : ggi-develop@eskimo.com
  Date: Thu, 19 Aug 1999 16:26:35 -0700

-g flag

I just tried to ./configure libggi from the last developers snapshot. Here's
the situation

* ./configure --disable-debug
* ./configure --enable-debug=no
* CFLAGS='-O2' ./configure

NONE of those generated Makefiles without the '-g' option. You can try
yourself and
check out the global Makefile for CFLAGS. If I remove '-g' from the
configure.in part

if test "x$use_debug" = "xyes"; then
  AC_DEFINE(DEBUG)
  if test "$ac_cv_prog_gcc" = "yes"; then
    CFLAGS="$CFLAGS -g -Wall"
  fi
fi

Then it works... The third option above would be a good thing to get working,
since it's the may most people override default flag configurations.

cheers,

-- 

Cesar Augusto Rorato Crusius      o__     o__     o__     o__     o__
Stanford University               ,>/'_   ,>/'_   ,>/'_   ,>/'_   ,>/'_
e-mail:c.crusius@ieee.org        (_)\(_) (_)\(_) (_)\(_) (_)\(_) (_)\(_)
www.stanford.edu/~crusius

HE WHO SACRIFICES FUNCTIONALITY FOR EASE OF USE
LOSES BOTH AND DESERVES NEITHER


Index: [thread] [date] [subject] [author]