Update of /cvsroot/wxlua/wxLua
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv31684
Modified Files:
configure
Log Message:
fixed automatic -g -02 flag addition by autoconf
Index: configure
===================================================================
RCS file: /cvsroot/wxlua/wxLua/configure,v
retrieving revision 1.51
retrieving revision 1.52
diff -C2 -d -r1.51 -r1.52
*** configure 23 Apr 2007 22:44:25 -0000 1.51
--- configure 6 May 2007 10:02:11 -0000 1.52
***************
*** 2460,2463 ****
--- 2460,2468 ----
#####################################################################
+ # NB: to avoid getting "-g -02" automatically added to C*FLAGS we need
+ # to explicitely initialize CFLAGS and CXXFLAGS to empty
+ CFLAGS=
+ CXXFLAGS=
+
# Make sure we can run config.sub.
$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
***************
*** 3870,3878 ****
- # check for wxWidgets
- #
- # NB: to avoid getting "-g -02" repeated twice in CPPFLAGS, we need
- # wxWidgets checks BEFORE lua checks (that's a long story - trust me)
-
WXLIBS_REQUIRED="xrc,html,adv,net,xml,core,base"
--- 3875,3878 ----
|