aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/prj.adb
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@gcc.gnu.org>2009-11-30 13:02:49 +0100
committerArnaud Charlet <charlet@gcc.gnu.org>2009-11-30 13:02:49 +0100
commit43ccd04be77d9ed7ff4d52fddfc80132639b979a (patch)
treeebc4ad5ed92f287b3b39d8dc7712fcf5e8ff665e /gcc/ada/prj.adb
parent828781519a85aa04c47b5057555938017cec3ae2 (diff)
downloadgcc-43ccd04be77d9ed7ff4d52fddfc80132639b979a.zip
gcc-43ccd04be77d9ed7ff4d52fddfc80132639b979a.tar.gz
gcc-43ccd04be77d9ed7ff4d52fddfc80132639b979a.tar.bz2
[multiple changes]
2009-11-30 Emmanuel Briot <briot@adacore.com> * prj.adb, prj.ads, prj-nmsc.adb (Has_Multi_Unit_Sources): New field in project_data. 2009-11-30 Vincent Celier <celier@adacore.com> * osint.adb (Executable_Name): Correctly decide if the executable suffix should be added when Only_If_No_Suffix is True. 2009-11-30 Robert Dewar <dewar@adacore.com> * frontend.adb, gnatlink.adb, prj-conf.adb, prj-tree.adb, prj-tree.ads: Minor reformatting From-SVN: r154793
Diffstat (limited to 'gcc/ada/prj.adb')
-rw-r--r--gcc/ada/prj.adb7
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/ada/prj.adb b/gcc/ada/prj.adb
index 1d87d19..0bae53c 100644
--- a/gcc/ada/prj.adb
+++ b/gcc/ada/prj.adb
@@ -23,9 +23,6 @@
-- --
------------------------------------------------------------------------------
-with Ada.Characters.Handling; use Ada.Characters.Handling;
-with Ada.Unchecked_Deallocation;
-
with Debug;
with Osint; use Osint;
with Output; use Output;
@@ -34,6 +31,9 @@ with Prj.Err; use Prj.Err;
with Snames; use Snames;
with Uintp; use Uintp;
+with Ada.Characters.Handling; use Ada.Characters.Handling;
+with Ada.Unchecked_Deallocation;
+
with GNAT.Directory_Operations; use GNAT.Directory_Operations;
with System.Case_Util; use System.Case_Util;
@@ -107,6 +107,7 @@ package body Prj is
Config_File_Temp => False,
Config_Checked => False,
Need_To_Build_Lib => False,
+ Has_Multi_Unit_Sources => False,
Depth => 0,
Unkept_Comments => False);