Add odbc32 to the build system and bootcd.

It builds and it's mere presence allows php to load.
Please have a look at the .rbuild, it probably needs tweaked.

svn path=/trunk/; revision=35623
This commit is contained in:
Andrew Munger 2008-08-25 07:49:46 +00:00
parent 5979e2e463
commit 239ad82645
3 changed files with 20 additions and 0 deletions

View file

@ -291,6 +291,7 @@ dll\win32\newdev\newdev.dll 1
dll\win32\ntdsapi\ntdsapi.dll 1
dll\win32\ntmarta\ntmarta.dll 1
dll\win32\objsel\objsel.dll 1
dll\win32\odbc32\odbc32.dll 1
dll\win32\odbccp32\odbccp32.dll 1
dll\win32\ole32\ole32.dll 1
dll\win32\oleacc\oleacc.dll 1

View file

@ -0,0 +1,16 @@
<?xml version="1.0"?>
<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
<group>
<module name="odbc32" type="win32dll" baseaddress="${BASEADDRESS_ODBC32}" installbase="system32" installname="odbc32.dll" allowwarnings="true" >
<importlibrary definition="odbc32.spec.def" />
<include base="odbc32">.</include>
<include base="ReactOS">include/reactos/wine</include>
<define name="__WINESRC__" />
<define name="WINVER">0x600</define>
<define name="_WIN32_WINNT">0x600</define>
<library>wine</library>
<library>kernel32</library>
<file>proxyodbc.c</file>
<file>odbc32.spec</file>
</module>
</group>

View file

@ -211,6 +211,9 @@
<directory name="odbccp32">
<xi:include href="odbccp32/odbccp32.rbuild" />
</directory>
<directory name="odbc32">
<xi:include href="odbc32/odbc32.rbuild" />
</directory>
<directory name="ole32">
<xi:include href="ole32/ole32.rbuild" />
</directory>