From: <jb...@us...> - 2008-09-05 10:11:09
|
Revision: 8750 http://plplot.svn.sourceforge.net/plplot/?rev=8750&view=rev Author: jbauck Date: 2008-09-05 10:11:15 +0000 (Fri, 05 Sep 2008) Log Message: ----------- Partially unwound the attempt to eliminate PLplot_Auxiliary.ad? from the user program as described in my last commit. PLplot_Auxiliary.ad? is tightly connected to being preprocessed from PLplot_Auxlliary.ad?.cmake to best take advantage of Ada 05 while still working with Ada 95 and my last commit messed this up. Modified Paths: -------------- trunk/bindings/ada/plplot.ads.cmake trunk/bindings/ada/plplot_auxiliary.ads.cmake trunk/bindings/ada/plplot_thin.adb.cmake trunk/bindings/ada/plplot_thin.ads.cmake trunk/bindings/ada/plplot_traditional.ads.cmake trunk/examples/ada/x01a.adb.cmake trunk/examples/ada/x02a.adb.cmake trunk/examples/ada/x03a.adb.cmake trunk/examples/ada/x04a.adb.cmake trunk/examples/ada/x05a.adb.cmake trunk/examples/ada/x06a.adb.cmake trunk/examples/ada/x07a.adb.cmake trunk/examples/ada/x10a.adb.cmake trunk/examples/ada/x12a.adb.cmake trunk/examples/ada/x13a.adb.cmake trunk/examples/ada/x14a.adb.cmake trunk/examples/ada/x17a.adb.cmake trunk/examples/ada/x18a.adb.cmake trunk/examples/ada/x19a.adb.cmake trunk/examples/ada/x23a.adb.cmake trunk/examples/ada/x24a.adb.cmake trunk/examples/ada/x25a.adb.cmake trunk/examples/ada/x26a.adb.cmake trunk/examples/ada/x27a.adb.cmake trunk/examples/ada/x28a.adb.cmake trunk/examples/ada/x29a.adb.cmake trunk/examples/ada/x30a.adb.cmake trunk/examples/ada/xthick01a.adb.cmake trunk/examples/ada/xthick02a.adb.cmake trunk/examples/ada/xthick03a.adb.cmake trunk/examples/ada/xthick04a.adb.cmake trunk/examples/ada/xthick05a.adb.cmake trunk/examples/ada/xthick06a.adb.cmake trunk/examples/ada/xthick07a.adb.cmake trunk/examples/ada/xthick10a.adb.cmake trunk/examples/ada/xthick13a.adb.cmake trunk/examples/ada/xthick14a.adb.cmake trunk/examples/ada/xthick17a.adb.cmake trunk/examples/ada/xthick18a.adb.cmake trunk/examples/ada/xthick19a.adb.cmake trunk/examples/ada/xthick23a.adb.cmake trunk/examples/ada/xthick24a.adb.cmake trunk/examples/ada/xthick25a.adb.cmake trunk/examples/ada/xthick26a.adb.cmake trunk/examples/ada/xthick27a.adb.cmake trunk/examples/ada/xthick28a.adb.cmake trunk/examples/ada/xthick29a.adb.cmake trunk/examples/ada/xthick30a.adb.cmake Modified: trunk/bindings/ada/plplot.ads.cmake =================================================================== --- trunk/bindings/ada/plplot.ads.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/bindings/ada/plplot.ads.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -22,12 +22,14 @@ with PLplot_Thin, + PLplot_Auxiliary, System, Interfaces.C.Pointers, Ada.Strings.Unbounded, Ada.Strings.Maps; use PLplot_Thin, + PLplot_Auxiliary, Ada.Strings.Unbounded; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/bindings/ada/plplot_auxiliary.ads.cmake =================================================================== --- trunk/bindings/ada/plplot_auxiliary.ads.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/bindings/ada/plplot_auxiliary.ads.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -52,11 +52,7 @@ -- type Real_Matrix is array (Integer range <>, Integer range <>) of Long_Float; @Ada_Is_Not_2007_Vector_Matrix_Declarations@ - -- Other array types for the bindings. --- type Boolean_Array_1D is array (Integer range <>) of Boolean; --- type Integer_Array_1D is array (Integer range <>) of Integer; - -------------------------------------------------------------------------------- -- Utility procedures useful in compiling the examples -- -------------------------------------------------------------------------------- Modified: trunk/bindings/ada/plplot_thin.adb.cmake =================================================================== --- trunk/bindings/ada/plplot_thin.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/bindings/ada/plplot_thin.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -22,8 +22,10 @@ with Ada.Text_IO, + PLplot_Auxiliary, System.Address_To_Access_Conversions; use + PLplot_Auxiliary, Ada.Text_IO; package body PLplot_Thin is Modified: trunk/bindings/ada/plplot_thin.ads.cmake =================================================================== --- trunk/bindings/ada/plplot_thin.ads.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/bindings/ada/plplot_thin.ads.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -35,12 +35,14 @@ with Interfaces.C, Interfaces.C.Pointers, + PLplot_Auxiliary, System, Ada.Text_IO, Ada.Strings.Bounded, Ada.Strings.Unbounded; use Interfaces.C, + PLplot_Auxiliary, Ada.Text_IO, Ada.Strings.Bounded, Ada.Strings.Unbounded; Modified: trunk/bindings/ada/plplot_traditional.ads.cmake =================================================================== --- trunk/bindings/ada/plplot_traditional.ads.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/bindings/ada/plplot_traditional.ads.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -22,12 +22,14 @@ with PLplot_Thin, + PLplot_Auxiliary, System, Interfaces.C.Pointers, Ada.Strings.Unbounded, Ada.Strings.Maps; use PLplot_Thin, + PLplot_Auxiliary, Ada.Strings.Unbounded; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/x01a.adb.cmake =================================================================== --- trunk/examples/ada/x01a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/x01a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -24,11 +24,13 @@ Ada.Text_IO, Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot_Traditional; use Ada.Text_IO, Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot_Traditional; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/x02a.adb.cmake =================================================================== --- trunk/examples/ada/x02a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/x02a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -25,6 +25,7 @@ Ada.Numerics.Long_Elementary_Functions, Ada.Strings, Ada.Strings.Fixed, + PLplot_Auxiliary, PLplot_Traditional; use @@ -32,6 +33,7 @@ Ada.Numerics.Long_Elementary_Functions, Ada.Strings, Ada.Strings.Fixed, + PLplot_Auxiliary, PLplot_Traditional; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/x03a.adb.cmake =================================================================== --- trunk/examples/ada/x03a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/x03a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -26,12 +26,14 @@ Ada.Numerics.Long_Elementary_Functions, Ada.Strings, Ada.Strings.Fixed, + PLplot_Auxiliary, PLplot_Traditional; use Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, Ada.Strings, Ada.Strings.Fixed, + PLplot_Auxiliary, PLplot_Traditional; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/x04a.adb.cmake =================================================================== --- trunk/examples/ada/x04a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/x04a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -23,10 +23,12 @@ with Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot_Traditional; use Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot_Traditional; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/x05a.adb.cmake =================================================================== --- trunk/examples/ada/x05a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/x05a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -24,10 +24,12 @@ with Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot_Traditional; use Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot_Traditional; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/x06a.adb.cmake =================================================================== --- trunk/examples/ada/x06a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/x06a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -25,12 +25,14 @@ Ada.Strings.Fixed, Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot_Traditional; use Ada.Strings, Ada.Strings.Fixed, Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot_Traditional; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/x07a.adb.cmake =================================================================== --- trunk/examples/ada/x07a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/x07a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -25,12 +25,14 @@ Ada.Strings.Fixed, Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot_Traditional; use Ada.Strings, Ada.Strings.Fixed, Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot_Traditional; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/x10a.adb.cmake =================================================================== --- trunk/examples/ada/x10a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/x10a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -23,10 +23,12 @@ with Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot_Traditional; use Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot_Traditional; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/x12a.adb.cmake =================================================================== --- trunk/examples/ada/x12a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/x12a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -25,6 +25,7 @@ Ada.Numerics.Long_Elementary_Functions, Ada.Strings, Ada.Strings.Fixed, + PLplot_Auxiliary, PLplot_Traditional; use @@ -32,6 +33,7 @@ Ada.Numerics.Long_Elementary_Functions, Ada.Strings, Ada.Strings.Fixed, + PLplot_Auxiliary, PLplot_Traditional; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/x13a.adb.cmake =================================================================== --- trunk/examples/ada/x13a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/x13a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -23,10 +23,12 @@ with Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot_Traditional; use Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot_Traditional; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/x14a.adb.cmake =================================================================== --- trunk/examples/ada/x14a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/x14a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -31,6 +31,7 @@ Ada.Strings.Unbounded, Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot_Traditional; use Ada.Text_IO, @@ -39,6 +40,7 @@ Ada.Strings.Fixed, Ada.Strings.Unbounded, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot_Traditional; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/x17a.adb.cmake =================================================================== --- trunk/examples/ada/x17a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/x17a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -26,6 +26,7 @@ Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, Ada.Numerics.Float_Random, + PLplot_Auxiliary, PLplot_Traditional; use Ada.Text_IO, @@ -33,6 +34,7 @@ Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, Ada.Numerics.Float_Random, + PLplot_Auxiliary, PLplot_Traditional; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/x18a.adb.cmake =================================================================== --- trunk/examples/ada/x18a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/x18a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -26,12 +26,14 @@ Ada.Numerics.Long_Elementary_Functions, Ada.Strings, Ada.Strings.Fixed, + PLplot_Auxiliary, PLplot_Traditional; use Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, Ada.Strings, Ada.Strings.Fixed, + PLplot_Auxiliary, PLplot_Traditional; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/x19a.adb.cmake =================================================================== --- trunk/examples/ada/x19a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/x19a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -24,10 +24,12 @@ with Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot_Traditional; use Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot_Traditional; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/x23a.adb.cmake =================================================================== --- trunk/examples/ada/x23a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/x23a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -29,6 +29,7 @@ Ada.Strings.Fixed, Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot_Traditional; use Ada.Text_IO, @@ -38,6 +39,7 @@ Ada.Strings.Fixed, Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot_Traditional; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/x24a.adb.cmake =================================================================== --- trunk/examples/ada/x24a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/x24a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -21,8 +21,10 @@ -- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA with + PLplot_Auxiliary, PLplot_Traditional; use + PLplot_Auxiliary, PLplot_Traditional; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/x25a.adb.cmake =================================================================== --- trunk/examples/ada/x25a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/x25a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -21,8 +21,10 @@ -- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA with + PLplot_Auxiliary, PLplot_Traditional; use + PLplot_Auxiliary, PLplot_Traditional; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/x26a.adb.cmake =================================================================== --- trunk/examples/ada/x26a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/x26a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -57,10 +57,12 @@ with Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot_Traditional; use Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot_Traditional; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/x27a.adb.cmake =================================================================== --- trunk/examples/ada/x27a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/x27a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -22,9 +22,11 @@ with Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot_Traditional; use Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot_Traditional; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/x28a.adb.cmake =================================================================== --- trunk/examples/ada/x28a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/x28a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -23,10 +23,12 @@ with Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot_Traditional; use Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot_Traditional; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/x29a.adb.cmake =================================================================== --- trunk/examples/ada/x29a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/x29a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -24,11 +24,13 @@ Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, Ada.Calendar, + PLplot_Auxiliary, PLplot_Traditional; use Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, Ada.Calendar, + PLplot_Auxiliary, PLplot_Traditional; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/x30a.adb.cmake =================================================================== --- trunk/examples/ada/x30a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/x30a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -24,11 +24,13 @@ System, Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot_Traditional; use System, Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot_Traditional; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/xthick01a.adb.cmake =================================================================== --- trunk/examples/ada/xthick01a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/xthick01a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -24,11 +24,13 @@ Ada.Text_IO, Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot; use Ada.Text_IO, Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/xthick02a.adb.cmake =================================================================== --- trunk/examples/ada/xthick02a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/xthick02a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -25,6 +25,7 @@ Ada.Numerics.Long_Elementary_Functions, Ada.Strings, Ada.Strings.Fixed, + PLplot_Auxiliary, PLplot; use @@ -32,6 +33,7 @@ Ada.Numerics.Long_Elementary_Functions, Ada.Strings, Ada.Strings.Fixed, + PLplot_Auxiliary, PLplot; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/xthick03a.adb.cmake =================================================================== --- trunk/examples/ada/xthick03a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/xthick03a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -26,12 +26,14 @@ Ada.Numerics.Long_Elementary_Functions, Ada.Strings, Ada.Strings.Fixed, + PLplot_Auxiliary, PLplot; use Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, Ada.Strings, Ada.Strings.Fixed, + PLplot_Auxiliary, PLplot; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/xthick04a.adb.cmake =================================================================== --- trunk/examples/ada/xthick04a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/xthick04a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -23,10 +23,12 @@ with Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot; use Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/xthick05a.adb.cmake =================================================================== --- trunk/examples/ada/xthick05a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/xthick05a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -24,10 +24,12 @@ with Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot; use Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/xthick06a.adb.cmake =================================================================== --- trunk/examples/ada/xthick06a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/xthick06a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -25,12 +25,14 @@ Ada.Strings.Fixed, Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot; use Ada.Strings, Ada.Strings.Fixed, Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/xthick07a.adb.cmake =================================================================== --- trunk/examples/ada/xthick07a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/xthick07a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -25,12 +25,14 @@ Ada.Strings.Fixed, Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot; use Ada.Strings, Ada.Strings.Fixed, Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/xthick10a.adb.cmake =================================================================== --- trunk/examples/ada/xthick10a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/xthick10a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -23,10 +23,12 @@ with Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot; use Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/xthick13a.adb.cmake =================================================================== --- trunk/examples/ada/xthick13a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/xthick13a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -23,10 +23,12 @@ with Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot; use Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/xthick14a.adb.cmake =================================================================== --- trunk/examples/ada/xthick14a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/xthick14a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -31,6 +31,7 @@ Ada.Strings.Unbounded, Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot; use Ada.Text_IO, @@ -39,6 +40,7 @@ Ada.Strings.Fixed, Ada.Strings.Unbounded, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/xthick17a.adb.cmake =================================================================== --- trunk/examples/ada/xthick17a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/xthick17a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -26,6 +26,7 @@ Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, Ada.Numerics.Float_Random, + PLplot_Auxiliary, PLplot; use Ada.Text_IO, @@ -33,6 +34,7 @@ Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, Ada.Numerics.Float_Random, + PLplot_Auxiliary, PLplot; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/xthick18a.adb.cmake =================================================================== --- trunk/examples/ada/xthick18a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/xthick18a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -26,12 +26,14 @@ Ada.Numerics.Long_Elementary_Functions, Ada.Strings, Ada.Strings.Fixed, + PLplot_Auxiliary, PLplot; use Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, Ada.Strings, Ada.Strings.Fixed, + PLplot_Auxiliary, PLplot; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/xthick19a.adb.cmake =================================================================== --- trunk/examples/ada/xthick19a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/xthick19a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -24,10 +24,12 @@ with Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot; use Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/xthick23a.adb.cmake =================================================================== --- trunk/examples/ada/xthick23a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/xthick23a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -29,6 +29,7 @@ Ada.Strings.Fixed, Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot; use Ada.Text_IO, @@ -38,6 +39,7 @@ Ada.Strings.Fixed, Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/xthick24a.adb.cmake =================================================================== --- trunk/examples/ada/xthick24a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/xthick24a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -21,8 +21,10 @@ -- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA with + PLplot_Auxiliary, PLplot; use + PLplot_Auxiliary, PLplot; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/xthick25a.adb.cmake =================================================================== --- trunk/examples/ada/xthick25a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/xthick25a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -21,8 +21,10 @@ -- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA with + PLplot_Auxiliary, PLplot; use + PLplot_Auxiliary, PLplot; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/xthick26a.adb.cmake =================================================================== --- trunk/examples/ada/xthick26a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/xthick26a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -57,10 +57,12 @@ with Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot; use Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/xthick27a.adb.cmake =================================================================== --- trunk/examples/ada/xthick27a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/xthick27a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -22,9 +22,11 @@ with Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot; use Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/xthick28a.adb.cmake =================================================================== --- trunk/examples/ada/xthick28a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/xthick28a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -23,10 +23,12 @@ with Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot; use Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/xthick29a.adb.cmake =================================================================== --- trunk/examples/ada/xthick29a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/xthick29a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -24,11 +24,13 @@ Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, Ada.Calendar, + PLplot_Auxiliary, PLplot; use Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, Ada.Calendar, + PLplot_Auxiliary, PLplot; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE Modified: trunk/examples/ada/xthick30a.adb.cmake =================================================================== --- trunk/examples/ada/xthick30a.adb.cmake 2008-09-04 20:55:52 UTC (rev 8749) +++ trunk/examples/ada/xthick30a.adb.cmake 2008-09-05 10:11:15 UTC (rev 8750) @@ -24,11 +24,13 @@ System, Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot; use System, Ada.Numerics, Ada.Numerics.Long_Elementary_Functions, + PLplot_Auxiliary, PLplot; -- COMMENT THIS LINE IF YOUR COMPILER DOES NOT INCLUDE THESE This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |