diff options
Diffstat (limited to 'md5-crypt')
-rw-r--r-- | md5-crypt/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/md5-crypt/Makefile b/md5-crypt/Makefile index b52e1ef..ab054ce 100644 --- a/md5-crypt/Makefile +++ b/md5-crypt/Makefile @@ -63,6 +63,11 @@ libmd5crypt: $(foreach o,$(object-suffixes), \ $(addprefix $(objpfx),$(patsubst %,$(libtype$o),md5crypt))) ifeq ($(build-shared),yes) libmd5crypt: $(objpfx)libmd5crypt.so +# Use the same soname as the real libcrypt, so that it can be used as a +# drop in replacement. +LDFLAGS-md5crypt.so = -Wl,-soname=lib$(libprefix)crypt.so$(libcrypt.so-version) +# We also use the same version script. +libmd5crypt-map := libcrypt.map endif define o-iterator-doit |