mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
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:
parent
5979e2e463
commit
239ad82645
3 changed files with 20 additions and 0 deletions
|
@ -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
|
||||
|
|
16
reactos/dll/win32/odbc32/odbc32.rbuild
Normal file
16
reactos/dll/win32/odbc32/odbc32.rbuild
Normal 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>
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue