CVSROOT: /sources/gnash Module name: gnash Changes by: Sandro Santilli <strk> 07/07/03 20:47:45
Modified files: . : ChangeLog configure.ac Log message: * configure.ac: disable debugger by default. Use --enable-debugger to enable. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.3653&r2=1.3654 http://cvs.savannah.gnu.org/viewcvs/gnash/configure.ac?cvsroot=gnash&r1=1.346&r2=1.347 Patches: Index: ChangeLog =================================================================== RCS file: /sources/gnash/gnash/ChangeLog,v retrieving revision 1.3653 retrieving revision 1.3654 diff -u -b -r1.3653 -r1.3654 --- ChangeLog 3 Jul 2007 16:56:19 -0000 1.3653 +++ ChangeLog 3 Jul 2007 20:47:44 -0000 1.3654 @@ -1,5 +1,10 @@ 2007-07-03 Sandro Santilli <[EMAIL PROTECTED]> + * configure.ac: disable debugger by default. Use --enable-debugger + to enable. + +2007-07-03 Sandro Santilli <[EMAIL PROTECTED]> + * server/asobj/Global.{cpp,h}: Don't use a module-static for the Extension instance, when enabled. Seems to fix bug #20272 when debugger id disabled Index: configure.ac =================================================================== RCS file: /sources/gnash/gnash/configure.ac,v retrieving revision 1.346 retrieving revision 1.347 diff -u -b -r1.346 -r1.347 --- configure.ac 2 Jul 2007 16:31:21 -0000 1.346 +++ configure.ac 3 Jul 2007 20:47:44 -0000 1.347 @@ -15,7 +15,7 @@ dnl Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA dnl -dnl $Id: configure.ac,v 1.346 2007/07/02 16:31:21 strk Exp $ +dnl $Id: configure.ac,v 1.347 2007/07/03 20:47:44 strk Exp $ AC_PREREQ(2.50) AC_INIT(gnash, cvs) @@ -109,12 +109,12 @@ AC_ARG_WITH(top_level, AC_HELP_STRING([--with-top-level], [top level directory for cross compiling files]), with_top_level=${withval}) AC_ARG_ENABLE(debugger, - AC_HELP_STRING([--disable-debugger],[Disable the Flash debugger]), + AC_HELP_STRING([--enable-debugger],[Enable the Flash debugger]), [case "${enableval}" in yes) debugger=yes ;; no) debugger=no ;; - *) AC_MSG_ERROR([bad value ${enableval} for --disable-debugger option]) ;; -esac],debugger=yes) + *) AC_MSG_ERROR([bad value ${enableval} for --enable-debugger option]) ;; +esac],debugger=no) if test x"$debugger" = x"yes"; then AC_DEFINE([USE_DEBUGGER], [], [Flash Debugger support]) _______________________________________________ Gnash-commit mailing list Gnash-commit@gnu.org http://lists.gnu.org/mailman/listinfo/gnash-commit