From Antione Hue and Robert Osfield, moved prepend in front of lib entry.

This commit is contained in:
Robert Osfield
2007-08-19 19:22:14 +00:00
parent ac6140a33d
commit cde5e45ac7

View File

@@ -584,9 +584,9 @@ std::string Registry::createLibraryNameForExtension(const std::string& ext)
#if defined(WIN32)
// !! recheck evolving Cygwin DLL extension naming protocols !! NHV
#ifdef __CYGWIN__
return "cyg"+prepend+"osgdb_"+lowercase_ext+".dll";
return prepend+"cyg"+"osgdb_"+lowercase_ext+".dll";
#elif defined(__MINGW32__)
return "lib"+prepend+"osgdb_"+lowercase_ext+".dll";
return prepend+"lib"+"osgdb_"+lowercase_ext+".dll";
#else
#ifdef _DEBUG
return prepend+"osgdb_"+lowercase_ext+"d.dll";