summaryrefslogtreecommitdiffstats
path: root/Configurations/README
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-02-15 18:45:54 +0100
committerRichard Levitte <levitte@openssl.org>2016-02-19 11:52:15 +0100
commit5386287cfcf0a4165fac742aa21455db3d49b3ab (patch)
tree37899904fd8b33b16b299c3a788308c6263eefd2 /Configurations/README
parentc8c2b77900f9808fc644d206d8715a78dd9801bd (diff)
Small rename fest in unified, obj2dynlib -> obj2dso
Since we're using the acronym DSO everywhere else and that's a common name for that kind of object, we might as well do so here as well. Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'Configurations/README')
-rw-r--r--Configurations/README13
1 files changed, 6 insertions, 7 deletions
diff --git a/Configurations/README b/Configurations/README
index 4945c1ce3b..58c4d96c6c 100644
--- a/Configurations/README
+++ b/Configurations/README
@@ -542,16 +542,15 @@ They are all expected to return a string with the lines they produce.
corresponding static library as input to make the
shared library, or the list of object files.
- obj2dynlib - function that produces build file lines to build a
- dynamically loadable library file ("libfoo.so" on
- Unix) from object files.
+ obj2dso - function that produces build file lines to build a
+ dynamic shared object file from object files.
called like this:
- obj2dynlib(lib => "PATH/TO/libfile",
- objs => [ "PATH/TO/objectfile", ... ],
- deps => [ "PATH/TO/otherlibfile",
- ... ]);
+ obj2dso(lib => "PATH/TO/libfile",
+ objs => [ "PATH/TO/objectfile", ... ],
+ deps => [ "PATH/TO/otherlibfile",
+ ... ]);
This is almost the same as libobj2shlib, but the
intent is to build a shareable library that can be