OSDN Git Service

2007-04-20 Ed Schonberg <schonberg@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / a-dirval-mingw.adb
index 93dcae1..d08355d 100644 (file)
@@ -7,7 +7,7 @@
 --                                 B o d y                                  --
 --                            (Windows Version)                             --
 --                                                                          --
---          Copyright (C) 2004 Free Software Foundation, Inc.               --
+--          Copyright (C) 2004-2005, Free Software Foundation, Inc.         --
 --                                                                          --
 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
 -- terms of the  GNU General Public License as published  by the Free Soft- --
@@ -17,8 +17,8 @@
 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
 -- for  more details.  You should have  received  a copy of the GNU General --
 -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
--- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
--- MA 02111-1307, USA.                                                      --
+-- to  the  Free Software Foundation,  51  Franklin  Street,  Fifth  Floor, --
+-- Boston, MA 02110-1301, USA.                                              --
 --                                                                          --
 -- As a special exception,  if other files  instantiate  generics from this --
 -- unit, or you link  this unit with other files  to produce an executable, --
@@ -45,6 +45,15 @@ package body Ada.Directories.Validity is
                           DEL .. NBSP           => True,
                           others                => False);
 
+   ---------------------------------
+   -- Is_Path_Name_Case_Sensitive --
+   ---------------------------------
+
+   function Is_Path_Name_Case_Sensitive return Boolean is
+   begin
+      return False;
+   end Is_Path_Name_Case_Sensitive;
+
    ------------------------
    -- Is_Valid_Path_Name --
    ------------------------
@@ -138,11 +147,19 @@ package body Ada.Directories.Validity is
             end if;
          end loop;
 
-         --  If no invalid chars, and not all spaces, file name is valid.
+         --  If no invalid chars, and not all spaces, file name is valid
 
          return not Only_Spaces;
       end if;
    end Is_Valid_Simple_Name;
 
-end Ada.Directories.Validity;
+   -------------
+   -- OpenVMS --
+   -------------
 
+   function OpenVMS return Boolean is
+   begin
+      return False;
+   end OpenVMS;
+
+end Ada.Directories.Validity;