> Next on my list of idiosyncrasies for the windows port is the default
> shared lib extension.  On windows it should be *.dll.  However, the
> configure.in sets it to .so.  
> 
> Is there a way to have it determine the correct extension, or add a
> command-line to configure to change this?

Sure. It is already prepared in the configure.in script. The DLLEXT variable
has to be set according to the OS detected.

This can be done like this:

if test "$ac_cv_header_windows_h" != "yes"; then
  DLLEXT=dll
fi

CU, Andy

-- 
= Andreas Beck                    |  Email :  <[EMAIL PROTECTED]> =

Reply via email to