update libxml and add makedef tool

This commit is contained in:
imsframework 2009-10-20 18:06:48 +00:00
parent 97dcc597b9
commit ae7d4dfc1c
6 changed files with 22 additions and 1 deletions

Binary file not shown.

View File

@ -1 +1 @@
./configure --enable-shared --disable-static
./configure --enable-shared --disable-static --disable-dependency-tracking

View File

@ -0,0 +1,21 @@
rem Genarate compatible win32 libs for Visual Studio C++ libraries
set ROOT_DIR=.
set VC_DIR="C:\Program Files\Microsoft Visual Studio 9.0\VC"
set MAKEDEF_DIR=%ROOT_DIR%\thirdparties\bin\win32\makedef
set WIN32_LIBS_DIR=%ROOT_DIR%\thirdparties\lib\win32
set WIN32_BIN_DIR=%ROOT_DIR%\thirdparties\bin\win32
%MAKEDEF_DIR%\MakeDef.exe /DEF:%WIN32_LIBS_DIR%\libxml\libxml2.dll.def /IMAGE:%WIN32_BIN_DIR%\libxml\libxml2-2.dll
lib.exe /DEF:%WIN32_LIBS_DIR%\libxml\libxml2.dll.def /OUT:%WIN32_LIBS_DIR%\libxml\vs_libxml2.dll.a /MACHINE:X86
DEL %WIN32_LIBS_DIR%\libxml\libxml2.dll.def
DEL %WIN32_LIBS_DIR%\libxml\vs_libxml2.dll.exp
%MAKEDEF_DIR%\MakeDef.exe /DEF:%WIN32_LIBS_DIR%\curl\libcurl.dll.def /IMAGE:%WIN32_BIN_DIR%\curl\libcurl-4.dll
lib.exe /DEF:%WIN32_LIBS_DIR%\curl\libcurl.dll.def /OUT:%WIN32_LIBS_DIR%\curl\vs_libcurl.dll.a /MACHINE:X86
DEL %WIN32_LIBS_DIR%\curl\libcurl.dll.def
DEL %WIN32_LIBS_DIR%\curl\vs_libcurl.dll.exp
pause