APPROVE COMMIT 21.5
This fixes the syntax error located by Ville and Aidan.
The patch is functionally identical to Aidans but the style is a
little more in keeping with other uses of the case statement.
As usual I've left out the patch to configure (autoconf 2.63 was used
to generate it on Mac OS X 10.4.11).
diff -r 9b3f398ebfb7 -r dc578683fddd ChangeLog
--- a/ChangeLog Mon Dec 29 21:39:37 2008 +0900
+++ b/ChangeLog Mon Dec 29 21:49:01 2008 +0900
@@ -1,3 +1,7 @@
+2008-12-29 Stephen J. Turnbull <stephen(a)xemacs.org>
+
+ * configure.ac (xemacs_cc_cc_mismatch): Fix my syntax errors.
+
2008-12-29 Stephen J. Turnbull <stephen(a)xemacs.org>
* .hgignore: Add terminating newline to .hgignore.
diff -r 9b3f398ebfb7 -r dc578683fddd configure.ac
--- a/configure.ac Mon Dec 29 21:39:37 2008 +0900
+++ b/configure.ac Mon Dec 29 21:49:01 2008 +0900
@@ -2247,16 +2247,21 @@
*g++* )
if test "$GCC" != "yes"; then
AC_MSG_WARN([CC and g++ are mismatched; XE_CFLAGS may be wrong])
- xemacs_cc_cc_mismatch=yes ;;
+ xemacs_cc_cc_mismatch=yes
+ fi
+ ;;
esac
if test -n "$GCC"; then
case $XEMACS_CC in
*g++* )
+ # it's as expected, do nothing
;;
* )
AC_MSG_WARN([gcc and XEMACS_CC are mismatched; XE_CFLAGS may be wrong])
- xemacs_cc_cc_mismatch=yes ;;
- esac
+ xemacs_cc_cc_mismatch=yes
+ ;;
+ esac
+ fi
dnl #### Add other detectable mismatches here.
fi
_______________________________________________
XEmacs-Patches mailing list
XEmacs-Patches(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-patches