Commit 5ae4c565 by Paolo Bonzini Committed by Paolo Bonzini

re PR other/17991 (Two-process fixincludes broken: pz_mn_name_pat undefined)

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
parent 0ca5fab2
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
......
......@@ -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
......
......@@ -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
......
......@@ -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 };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment