From: Tim Peters Date: Tue, 10 Oct 2006 16:42:09 +0000 (+0000) Subject: Note that there are no longer warnings when building X-Git-Tag: v2.4.4c1~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c5e1e151170f71ee0973e9a781d4df9bad1e668e;p=thirdparty%2FPython%2Fcpython.git Note that there are no longer warnings when building _bsddb on Windows (Martin recently repaired that -- thanks!). --- diff --git a/Misc/NEWS b/Misc/NEWS index a2e71ad705a4..9a12c183f89a 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -241,6 +241,9 @@ Build - The Windows binaries for the _ssl module are now linked with OpenSSL 0.9.7l. +- On Windows, there are no longer linker warnings when building the + ``_bsddb`` project. + - Bug #1568842: Fix test for uintptr_t. - Bug #1439538: Drop usage of test -e in configure as it is not portable. diff --git a/PCbuild/readme.txt b/PCbuild/readme.txt index 4d7cd3e03fdf..6dc015241692 100644 --- a/PCbuild/readme.txt +++ b/PCbuild/readme.txt @@ -114,7 +114,7 @@ _tkinter all.tcl: Total 8420 Passed 6826 Skipped 1581 Failed 13 Sourced 91 Test Files. Files with failing tests: canvImg.test scrollbar.test textWind.test winWm.test - + Built Tix --------- Download from http://prdownloads.sourceforge.net/tix/tix-8.1.4.tar.gz @@ -191,22 +191,6 @@ _bsddb software. Note that Berkeley_DB.dsw is in the build_win32 subdirectory. Build the "Release Static" version. - XXX We're linking against Release_static\libdb42s.lib. - XXX This yields the following warnings: -""" -Compiling... -_bsddb.c -Linking... - Creating library ./_bsddb.lib and object ./_bsddb.exp -_bsddb.obj : warning LNK4217: locally defined symbol _malloc imported in function __db_associateCallback -_bsddb.obj : warning LNK4217: locally defined symbol _free imported in function __DB_consume -_bsddb.obj : warning LNK4217: locally defined symbol _fclose imported in function _DB_verify -_bsddb.obj : warning LNK4217: locally defined symbol _fopen imported in function _DB_verify -_bsddb.obj : warning LNK4217: locally defined symbol _strncpy imported in function _init_pybsddb -__bsddb - 0 error(s), 5 warning(s) -""" - XXX This isn't encouraging, but I don't know what to do about it. - To run extensive tests, pass "-u bsddb" to regrtest.py. test_bsddb3.py is then enabled. Running in verbose mode may be helpful.