diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-09-02 09:13:01 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-09-02 09:13:01 +0000 |
commit | c2e114851469afad986c2d9107700e081579563f (patch) | |
tree | ec9b26615a3bd8f8b4313b52af9e4618eda920ab /gcc/ada/prj.ads | |
parent | bb23e037c6b5308f05ec13dfdf9159d052ff3be8 (diff) | |
download | gcc-c2e114851469afad986c2d9107700e081579563f.tar.gz |
2011-09-02 Pascal Obry <obry@adacore.com>
* prj-proc.adb, prj.adb, prj.ads, prj-dect.adb, prj-nmsc.adb,
prj-conf.adb, projects.texi: Add support for aggregate library projects.
2011-09-02 Hristian Kirtchev <kirtchev@adacore.com>
* exp_ch9.adb (Expand_N_Protected_Type_Declaration): Use
Dynamic_Interrupt_Protection as the proper protection type when
dynamic handler association is actually allowed.
2011-09-02 Robert Dewar <dewar@adacore.com>
* makeutl.ads: Minor reformatting
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@178446 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/prj.ads')
-rw-r--r-- | gcc/ada/prj.ads | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/ada/prj.ads b/gcc/ada/prj.ads index a9943ca773a..0b0dee6a935 100644 --- a/gcc/ada/prj.ads +++ b/gcc/ada/prj.ads @@ -77,6 +77,9 @@ package Prj is -- Aggregate_Library: aggregate library project is ... -- Configuration: configuration project is ... + subtype Aggregate_Project + is Project_Qualifier range Aggregate .. Aggregate_Library; + All_Packages : constant String_List_Access; -- Default value of parameter Packages of procedures Parse, in Prj.Pars and -- Prj.Part, indicating that all packages should be checked. @@ -1343,7 +1346,7 @@ package Prj is -- The following fields are only valid for specific types of projects case Qualifier is - when Aggregate => + when Aggregate | Aggregate_Library => Aggregated_Projects : Aggregated_Project_List := null; -- List of aggregated projects (which could themselves be -- aggregate projects). |