Build: correct BASE shlib_version_as_filename
[openssl.git] / Configurations / platform / BASE.pm
1 package platform::BASE;
2
3 use strict;
4 use warnings;
5 use Carp;
6
7 # Assume someone set @INC right before loading this module
8 use configdata;
9
10 # Globally defined "platform specific" extensions, available for uniformity
11 sub depext      { '.d' }
12
13 # Functions to convert internal file representations to platform specific
14 # ones.  Note that these all depend on extension functions that MUST be
15 # defined per platform.
16 #
17 # Currently known internal or semi-internal extensions are:
18 #
19 # .a            For libraries that are made static only.
20 #               Internal libraries only.
21 # .o            For object files.
22 # .s, .S        Assembler files.  This is an actual extension on Unix
23 # .res          Resource file.  This is an actual extension on Windows
24
25 sub binname     { return $_[1] } # Name of executable binary
26 sub dsoname     { return $_[1] } # Name of dynamic shared object (DSO)
27 sub sharedname  { return __isshared($_[1]) ? $_[1] : undef } # Name of shared lib
28 sub staticname  { return __base($_[1], '.a') } # Name of static lib
29
30 # Convenience function to convert the shlib version to an acceptable part
31 # of a file or directory name.  By default, we consider it acceptable as is.
32 sub shlib_version_as_filename { return $config{shlib_version} }
33
34 # Convenience functions to convert the possible extension of an input file name
35 sub bin         { return $_[0]->binname($_[1]) . $_[0]->binext() }
36 sub dso         { return $_[0]->dsoname($_[1]) . $_[0]->dsoext() }
37 sub sharedlib   { return __concat($_[0]->sharedname($_[1]), $_[0]->shlibext()) }
38 sub staticlib   { return $_[0]->staticname($_[1]) . $_[0]->libext() }
39
40 # More convenience functions for intermediary files
41 sub def         { return __base($_[1], '.ld') . $_[0]->defext() }
42 sub obj         { return __base($_[1], '.o') . $_[0]->objext() }
43 sub res         { return __base($_[1], '.res') . $_[0]->resext() }
44 sub dep         { return __base($_[1], '.o') . $_[0]->depext() } # <- objname
45 sub asm         { return __base($_[1], '.S', '.s') . $_[0]->asmext() }
46
47 # Another set of convenience functions for standard checks of certain
48 # internal extensions and conversion from internal to platform specific
49 # extension.  Note that the latter doesn't deal with libraries because
50 # of ambivalence
51 sub isdef       { return $_[1] =~ m|\.ld$|;   }
52 sub isobj       { return $_[1] =~ m|\.o$|;    }
53 sub isres       { return $_[1] =~ m|\.res$|;  }
54 sub isasm       { return $_[1] =~ m|\.[Ss]$|; }
55 sub convertext {
56     if ($_[0]->isdef($_[1]))    { return $_[0]->def($_[1]); }
57     if ($_[0]->isobj($_[1]))    { return $_[0]->obj($_[1]); }
58     if ($_[0]->isres($_[1]))    { return $_[0]->res($_[1]); }
59     if ($_[0]->isasm($_[1]))    { return $_[0]->asm($_[1]); }
60     return $_[1];
61 }
62
63 # Helpers ############################################################
64
65 # __base EXPR, LIST
66 # This returns the given path (EXPR) with the matching suffix from LIST stripped
67 sub __base {
68     my $path = shift;
69     foreach (@_) {
70         if ($path =~ m|\Q${_}\E$|) {
71             return $`;
72         }
73     }
74     return $path;
75 }
76
77 # __isshared EXPR
78 # EXPR is supposed to be a library name.  This will return true if that library
79 # can be assumed to be a shared library, otherwise false
80 sub __isshared {
81     return !($disabled{shared} || $_[0] =~ /\.a$/);
82 }
83
84 # __concat LIST
85 # Returns the concatenation of all elements of LIST if none of them is
86 # undefined.  If one of them is undefined, returns undef instead.
87 sub __concat {
88     my $result = '';
89     foreach (@_) {
90         return undef unless defined $_;
91         $result .= $_;
92     }
93     return $result;
94 }
95
96 1;