re PR other/17991 (Two-process fixincludes broken: pz_mn_name_pat undefined)
authorPaolo Bonzini <bonzini@gnu.org>
Wed, 27 Oct 2004 14:42:56 +0000 (14:42 +0000)
committerPaolo Bonzini <bonzini@gcc.gnu.org>
Wed, 27 Oct 2004 14:42:56 +0000 (14:42 +0000)
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.

From-SVN: r89680

fixincludes/ChangeLog
fixincludes/configure
fixincludes/configure.ac
fixincludes/fixincl.c

index 1b3274fdf1ad468f5deee309dfc702a027a61e97..3981005c2b7c7844e411ac78437cbec3c73f6f5d 100644 (file)
@@ -1,3 +1,11 @@
+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
index d5da756ada828f68a5601d93fca3fe7f72f14732..b0116f9cad79ab758cc0920d6238ec7d96cf56ee 100755 (executable)
@@ -2347,7 +2347,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
 # 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
index 8499032db816210cbd5e5012c48f01c452fd1614..f3eeb76c3b5526a8146c34eb307b9d64520b4527 100644 (file)
@@ -11,7 +11,7 @@ AC_PROG_CC
 #
 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
index 243f9bbfd1017be9c021f9c9743d5d2292fddc2a..998ff7e68f09ee0a0e0cf527db5bcc9632246705 100644 (file)
@@ -852,7 +852,7 @@ fix_with_system (tFixDesc* p_fixd,
   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 };