Index: ossp-pkg/js/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/js/ChangeLog,v rcsdiff -q -kk '-r1.25' '-r1.26' -u '/v/ossp/cvs/ossp-pkg/js/ChangeLog,v' 2>/dev/null --- ChangeLog 2006/07/31 18:09:45 1.25 +++ ChangeLog 2006/08/03 12:16:32 1.26 @@ -11,6 +11,11 @@ This is a list of all changes to OSSP js. + Changes between 1.6.20060731 and 1.6.200608xx (2006-07-31 to 2006-08-xx) + + o Change from -O2 to -O0 and without -Wshadow under --enable-debug. + [Ralf S. Engelschall ] + Changes between 1.6.20060730 and 1.6.20060731 (2006-07-30 to 2006-07-31) o Fix "make distclean": src/perlconnect/Makefile.PL is always generated Index: ossp-pkg/js/aclocal.m4 RCS File: /v/ossp/cvs/ossp-pkg/js/aclocal.m4,v rcsdiff -q -kk '-r1.4' '-r1.5' -u '/v/ossp/cvs/ossp-pkg/js/aclocal.m4,v' 2>/dev/null --- aclocal.m4 2006/07/22 17:02:34 1.4 +++ aclocal.m4 2006/08/03 12:16:32 1.5 @@ -66,7 +66,7 @@ if test ".$ac_cv_prog_gcc" = ".yes"; then case "$CFLAGS" in *-O* ) ;; - * ) CFLAGS="$CFLAGS -O2" ;; + * ) CFLAGS="$CFLAGS -O0" ;; esac case "$CFLAGS" in *-g* ) ;; @@ -79,7 +79,7 @@ AC_COMPILER_OPTION(defdbg, -DDEBUG, -DDEBUG, CFLAGS="$CFLAGS -DDEBUG") CFLAGS="$CFLAGS -pedantic" CFLAGS="$CFLAGS -Wall" - WMORE="-Wshadow -Wpointer-arith -Wcast-align -Winline" + WMORE="-Wpointer-arith -Wcast-align -Winline" WMORE="$WMORE -Wmissing-prototypes -Wmissing-declarations -Wnested-externs" AC_COMPILER_OPTION(wmore, -W, $WMORE, CFLAGS="$CFLAGS $WMORE") AC_COMPILER_OPTION(wnolonglong, -Wno-long-long, -Wno-long-long, CFLAGS="$CFLAGS -Wno-long-long")