> > Now I am trying to make dll with BC. What I want is just an implib which 
> > could be used in BC app.
> 
> Try running
> 
>   perl util\mk1mf.pl no-asm dll BC-NT > bcbdll.mak
> 
> and then
> 
>   make -f bcbdll.mak
> 
> Does that work? (The makefile looks a bit unusual, but it looks like
> that is intentional.)
The generated makefile will include one line 
In this generated file, "MLFLAGS= -ap -Tpe -x -Gn  /dll",the "/dll" is for
 VC and will not work for BC. and the link command is 
  " $(LINK) $(MLFLAGS) $(O_CRYPTO) /def:ms/LIBEAY32.def @<<
     $(SHLIB_EX_OBJ) $(CRYPTOOBJ)  wsock32.lib gdi32.lib
     <<"It looks more like a VC command.

I am trying something like:
    $(LINK) $(MLFLAGS) $(SHLIB_EX_OBJ) $(CRYPTOOBJ),  
                            $(O_CRYPTO) ,,cw32.lib import32.lib,ms\libeay32.def 

But I still get a 15k libeay32.dll. no output symbol is in the dll.

______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to