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
This commit is contained in:
parent
0ca5fab2b7
commit
5ae4c56561
@ -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
|
||||
|
2
fixincludes/configure
vendored
2
fixincludes/configure
vendored
@ -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 };
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user