mirror of git://gcc.gnu.org/git/gcc.git
fixincl.c (fix_with_system): Add missing specifier.
2012-04-24 Tristan Gingold <gingold@adacore.com> * fixincl.c (fix_with_system): Add missing specifier. * configure.ac: Default to twoprocess on vms. * configure: Regenerate. From-SVN: r186759
This commit is contained in:
parent
8eddb62513
commit
c1041240bf
|
@ -1,3 +1,9 @@
|
||||||
|
2012-04-24 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
|
* fixincl.c (fix_with_system): Add missing specifier.
|
||||||
|
* configure.ac: Default to twoprocess on vms.
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2012-03-23 David Edelsohn <dje.gcc@gmail.com>
|
2012-03-23 David Edelsohn <dje.gcc@gmail.com>
|
||||||
|
|
||||||
* inclhack.def (aix_malloc): New.
|
* inclhack.def (aix_malloc): New.
|
||||||
|
|
|
@ -4715,7 +4715,8 @@ else
|
||||||
i?86-*-msdosdjgpp* | \
|
i?86-*-msdosdjgpp* | \
|
||||||
i?86-*-mingw32* | \
|
i?86-*-mingw32* | \
|
||||||
x86_64-*-mingw32* | \
|
x86_64-*-mingw32* | \
|
||||||
*-*-beos* )
|
*-*-beos* | \
|
||||||
|
*-*-*vms*)
|
||||||
TARGET=twoprocess
|
TARGET=twoprocess
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
|
|
@ -53,7 +53,8 @@ fi],
|
||||||
i?86-*-msdosdjgpp* | \
|
i?86-*-msdosdjgpp* | \
|
||||||
i?86-*-mingw32* | \
|
i?86-*-mingw32* | \
|
||||||
x86_64-*-mingw32* | \
|
x86_64-*-mingw32* | \
|
||||||
*-*-beos* )
|
*-*-beos* | \
|
||||||
|
*-*-*vms*)
|
||||||
TARGET=twoprocess
|
TARGET=twoprocess
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
|
|
@ -829,7 +829,7 @@ fix_with_system (tFixDesc* p_fixd,
|
||||||
/*
|
/*
|
||||||
* Now add the fix number and file names that may be needed
|
* Now add the fix number and file names that may be needed
|
||||||
*/
|
*/
|
||||||
sprintf (pz_scan, " %ld '%s' '%s'", (long) (p_fixd - fixDescList),
|
sprintf (pz_scan, " %ld '%s' '%s' '%s'", (long) (p_fixd - fixDescList),
|
||||||
pz_fix_file, pz_file_source, pz_temp_file);
|
pz_fix_file, pz_file_source, pz_temp_file);
|
||||||
}
|
}
|
||||||
else /* NOT an "internal" fix: */
|
else /* NOT an "internal" fix: */
|
||||||
|
|
Loading…
Reference in New Issue