Differentiate the init names of statically linked libraries from the DLLs derived from them

This commit is contained in:
Juan Jose Garcia Ripoll 2010-06-20 00:46:10 +02:00
parent 7956d93bb1
commit 2f83e196da

View file

@ -142,7 +142,8 @@ the function name it precedes."
(:object "")
(:program "exe_")
((:fasl :fas) "fas_")
((:library :shared-library :dll :static-library :lib) "lib_")
((:library :static-library :lib) "lib_")
((:shared-library :dll) "dll_")
(otherwise (error "Not a valid argument to INIT-FUNCTION-NAME: kind = ~S"
kind)))))
(setq s (map 'string #'translate-char (string s)))