Product: Fedora https://bugzilla.redhat.com/show_bug.cgi?id=886322
Marc-Andre Lureau marcandre.lureau@redhat.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |marcandre.lureau@redhat.com
--- Comment #1 from Marc-Andre Lureau marcandre.lureau@redhat.com --- Doesn't build for me on f18 with nspr from bug 886320.
The first error is:
make[1]: Entering directory `/home/elmarco/rpmbuild/BUILD/nss-3.14/build_win32/security/dbm/src' i686-w64-mingw32-gcc -o WINNT5.0__i686-w64-mingw32-gcc_DBG.OBJ/db.o -c -g -mwindows -mms-bitfields -mnop-fun-dllimport -D_WIN32_IE=0x0501 -U__MMX__ -U__SSE__ -U__SSE2__ -DXP_PC -DDEBUG -D_DEBUG -UNDEBUG -DDEBUG_elmarco -DWIN32 -D_X86_ -D_WINDOWS -DWINNT -DUSE_UTIL_DIRECTLY -DSTDC_HEADERS -DHAVE_STRERROR -DHAVE_SNPRINTF -DMEMMOVE -D__DBINTERFACE_PRIVATE -I/usr/include/nspr4 -I../../../dist/WINNT5.0__i686-w64-mingw32-gcc_DBG.OBJ/include -I../../../dist/public/dbm -I../../../dist/private/dbm -I../../../dbm/include ../../../dbm/src/db.c In file included from ../../../dbm/src/db.c:50:0: ../../../dist/public/dbm/mcom_db.h:289:48: error: unknown type name 'uint'
Apparently, uint has been deprecated:
grep uint /usr/i686-w64-mingw32/sys-root/mingw/include/nspr4/obsolete/protypes.h typedef PRUintn uintn; typedef PRUintn uint; ...