|
From: <pst...@us...> - 2008-11-08 23:57:39
|
Revision: 615
http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=615&view=rev
Author: pstieber
Date: 2008-11-08 23:57:35 +0000 (Sat, 08 Nov 2008)
Log Message:
-----------
Changed the debug test for profiling.
Modified Paths:
--------------
trunk/jazz/configure.ac
Modified: trunk/jazz/configure.ac
===================================================================
--- trunk/jazz/configure.ac 2008-11-08 22:42:42 UTC (rev 614)
+++ trunk/jazz/configure.ac 2008-11-08 23:57:35 UTC (rev 615)
@@ -162,8 +162,9 @@
AC_DEFINE(DEV_MPU401,1,[support jazz's own driver over tcp/ip])
fi
+wx_config_args="--static=no"
if test x$ac_arg_debug = xyes ; then
- wx_config_args=--debug
+ wx_config_args="$wx_config_args --debug"
fi
dnl Check for wxWidgets
@@ -199,7 +200,7 @@
PROFILE=
if test x$ac_arg_profile = xyes ; then
dnl The debug flag must be on for profiling to work.
- if test x$TLDEBUG = x ; then
+ if test x$ac_arg_debug = xyes ; then
TLDEBUG="-g -fno-inline"
fi
PROFILE="-pg"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|