Check-in Number:
|
5632 | |
Date: |
2006-Aug-03 14:16:32 (local)
2006-Aug-03 12:16:32 (UTC) |
User: | rse |
Branch: | |
Comment: |
Change from -O2 to -O0 and without -Wshadow under --enable-debug. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/js/ChangeLog 1.25 -> 1.26
--- 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 <rse@engelschall.com>]
+
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
|
|
ossp-pkg/js/aclocal.m4 1.4 -> 1.5
--- 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<xxx>, $WMORE, CFLAGS="$CFLAGS $WMORE")
AC_COMPILER_OPTION(wnolonglong, -Wno-long-long, -Wno-long-long, CFLAGS="$CFLAGS -Wno-long-long")
|
|