Big rename fest of engine DSO names, from libFOO.so to FOO.so
authorRichard Levitte <levitte@openssl.org>
Mon, 15 Feb 2016 17:29:09 +0000 (18:29 +0100)
committerRichard Levitte <levitte@openssl.org>
Fri, 19 Feb 2016 10:52:15 +0000 (11:52 +0100)
commit9ee0ed3de66678a15db126d10b3e4226e835b8f5
tree481acf7f9c80c89bdb6c01727e82714d69074719
parent24e75727bddff81004e13dea4cb771cf63a307b7
Big rename fest of engine DSO names, from libFOO.so to FOO.so

The engine DSOs were named as if they were shared libraries, and could
end up having all sorts of fancy names:

  Cygwin: cygFOO.dll
  Mingw:  FOOeay32.dll
  Unix:   libFOO.so / libFOO.sl / libFOO.dylib / ...

This may be confusing, since they look like libraries one should link
with at link time, when they're just DSOs.

It's therefore time to rename them, and do it consistently on all
platforms:

  Cygwin & Mingw: FOO.dll
  Unix:           FOO.{so,sl,dylib,...}

Interestingly enough, the MSVC and VMS builds always did it this way.

Reviewed-by: Andy Polyakov <appro@openssl.org>
Makefile.shared
crypto/engine/eng_dyn.c
engines/Makefile.in
engines/build.info