summaryrefslogtreecommitdiff
path: root/gcc/ada/mlib-tgt-hpux.adb
diff options
context:
space:
mode:
authorVincent Celier <celier@adacore.com>2005-11-15 14:51:50 +0100
committerArnaud Charlet <charlet@gcc.gnu.org>2005-11-15 14:51:50 +0100
commit6c6db94e93d4aeb9d6d6dce51b4e93c8ecd28cb4 (patch)
tree3cb88ddcae1367e452594cd4e77e101a7ea7f001 /gcc/ada/mlib-tgt-hpux.adb
parent9ea6535410ea5c0b17579975fdb34472202332d2 (diff)
downloadgcc-6c6db94e93d4aeb9d6d6dce51b4e93c8ecd28cb4.tar.gz
mlib-tgt-tru64.adb, [...] (DLL_Prefix): New function
2005-11-14 Vincent Celier <celier@adacore.com> * mlib-tgt-tru64.adb, mlib-tgt-aix.adb, mlib-tgt-irix.adb, mlib-tgt-hpux.adb, mlib-tgt-hpux.adb, mlib-tgt-linux.adb, mlib-tgt-solaris.adb, mlib-tgt-vms-alpha.adb, mlib-tgt-vms-alpha.adb, mlib-tgt-vms-ia64.adb, mlib-tgt-mingw.adb, mlib-tgt-vxworks.adb, mlib-tgt-darwin.adb, mlib-tgt.adb, mlib-tgt.ads, mlib-tgt-lynxos.adb (DLL_Prefix): New function From-SVN: r106953
Diffstat (limited to 'gcc/ada/mlib-tgt-hpux.adb')
-rw-r--r--gcc/ada/mlib-tgt-hpux.adb13
1 files changed, 11 insertions, 2 deletions
diff --git a/gcc/ada/mlib-tgt-hpux.adb b/gcc/ada/mlib-tgt-hpux.adb
index 62172c79eae..85e756ce8df 100644
--- a/gcc/ada/mlib-tgt-hpux.adb
+++ b/gcc/ada/mlib-tgt-hpux.adb
@@ -7,7 +7,7 @@
-- --
-- B o d y --
-- --
--- Copyright (C) 2003-2005, Ada Core Technologies, Inc. --
+-- Copyright (C) 2003-2005, AdaCore --
-- --
-- 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- --
@@ -28,7 +28,7 @@
-- This package provides a set of target dependent routines to build
-- libraries (static only on HP-UX).
--- This is the HP-UX version of the body.
+-- This is the HP-UX version of the body
with MLib.Fil;
with MLib.Utl;
@@ -197,6 +197,15 @@ package body MLib.Tgt is
return "sl";
end DLL_Ext;
+ ----------------
+ -- DLL_Prefix --
+ ----------------
+
+ function DLL_Prefix return String is
+ begin
+ return "lib";
+ end DLL_Prefix;
+
--------------------
-- Dynamic_Option --
--------------------