To: vim-dev@vim.org Subject: Patch 6.1.443 (extra) Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit ------------ Patch 6.1.443 (extra) Problem: Win32: The gvimext.dll build with Borland 5.5 requires another DLL. Solution: Build a statically linked version by default. (Dan Sharp) Files: GvimExt/Make_bc5.mak *** ../vim61.442/GvimExt/Make_bc5.mak Tue Aug 28 11:23:29 2001 --- GvimExt/Make_bc5.mak Tue Apr 1 21:20:31 2003 *************** *** 1,10 **** all : gvimext.dll gvimext.obj : gvimext.cpp gvimext.h ! bcc32 -tWD -c -DFEAT_GETTEXT -w- gvimext.cpp gvimext.res : gvimext.rc brc32 -r gvimext.rc gvimext.dll : gvimext.obj gvimext.res ! ilink32 -aa gvimext.obj, gvimext.dll, , c0d32.obj cw32i.lib import32.lib, gvimext.def, gvimext.res --- 1,25 ---- + ### USEDLL: no for statically linked version of run-time, yes for DLL runtime (requires + ### cc3250.dll be available in %PATH%) + !if ("$(USEDLL)"=="") + USEDLL = no + !endif + + !if ("$(USEDLL)"=="yes") + RT_DEF = -D_RTLDLL + RT_LIB = cw32i.lib + !else + RT_DEF = + RT_LIB = cw32.lib + !endif + + all : gvimext.dll gvimext.obj : gvimext.cpp gvimext.h ! bcc32 -tWD -c -DFEAT_GETTEXT $(RT_DEF) -w- gvimext.cpp gvimext.res : gvimext.rc brc32 -r gvimext.rc gvimext.dll : gvimext.obj gvimext.res ! ilink32 -aa gvimext.obj, gvimext.dll, , c0d32.obj $(RT_LIB) import32.lib, gvimext.def, gvimext.res *** ../vim61.442/src/version.c Sun Apr 6 14:50:20 2003 --- src/version.c Sun Apr 6 14:53:54 2003 *************** *** 613,614 **** --- 613,616 ---- { /* Add new patch number below this line */ + /**/ + 443, /**/ -- Two cows are standing together in a field. One asks the other: "So what do you think about this Mad Cow Diesease?" The other replies: "That doesn't concern me. I'm a helicopter." /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ /// Creator of Vim - Vi IMproved -- http://www.Vim.org \\\ \\\ Project leader for A-A-P -- http://www.A-A-P.org /// \\\ Help AIDS victims, buy at Amazon -- http://ICCF.nl/click1.html ///