PR other/17991
* configure.ac: Fix typo.
* configure: Regenerate.
* fixincl.c (fix_with_system): tSCC is not a pointer. Fix.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@89680
138bc75d-0d04-0410-961f-
82ee72b054a4
+2004-10-27 Paolo Bonzini <bonzini@gnu.org>
+
+ PR other/17991
+
+ * configure.ac: Fix typo.
+ * configure: Regenerate.
+ * fixincl.c (fix_with_system): tSCC is not a pointer. Fix.
+
2004-10-20 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
PR bootstrap/17832
# Check whether --enable-twoprocess or --disable-twoprocess was given.
if test "${enable_twoprocess+set}" = set; then
enableval="$enable_twoprocess"
- if test "x$enable_twoprocess" = yes; then
+ if test "x$enable_twoprocess" = xyes; then
TARGET=twoprocess
else
TARGET=oneprocess
#
AC_ARG_ENABLE([twoprocess],
[ --enable-twoprocess Use a separate process to apply the fixes],
-[if test "x$enable_twoprocess" = yes; then
+[if test "x$enable_twoprocess" = xyes; then
TARGET=twoprocess
else
TARGET=oneprocess
char* pz_scan;
size_t argsize;
int i;
- tSCC z_applyfix_prog[2] = {
+ tSCC *z_applyfix_prog[2] = {
"/../fixincludes/applyfix" EXE_EXT,
"/../../fixincludes/applyfix" EXE_EXT };