Commit c1041240 by Tristan Gingold Committed by Tristan Gingold

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
parent 8eddb625
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 ...@@ -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], ...@@ -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, ...@@ -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: */
......
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