Re: nspr vs firefox nspr on win32
"Wan-Teh Chang" <[email protected]>
| Newsgroups | gmane.comp.mozilla.devel.nspr |
|---|---|
| Message-ID | <[email protected]> |
On Nov 12, 2007 4:10 AM, Matej Spiller-Muys <[email protected]> wrote: > Hi, > > there are few incompatibilities between Firefox nspr and offical nspr build > (both win32). For example pr_nt_cancelio is not included in Firefox (and > some others). Another issue is that offical win32 build contains dlls with > lib prefix (and Firefox nspr does not). Is that done on purpose? Or is it a > bug. https://bugzilla.mozilla.org/show_bug.cgi?id=402829. There are two official NSPR builds for Win32: the "WINNT" configuration and the "WIN95" configuration. The "WIN95" configuration is poorly named. It should have been named the "WIN32" configuration. The "WINNT" configuration produces DLLs with the "lib" prefix. For historical reasons it is the default build configuration on Win32. For most applications I recommend the "WIN95" configuration, which is also what Firefox uses. Just configure NSPR with the --enable-win32-target=WIN95 option. Wan-Teh