Author: greatlrd
Date: Tue Aug 29 12:28:50 2006
New Revision: 23766
URL:
http://svn.reactos.org/svn/reactos?rev=23766&view=rev
Log:
put in if define i386 for asm version of cos, sin, atan2, floor, ceil we do not have a C
version of those commands in rbuild file
Modified:
trunk/reactos/subsystems/win32/win32k/win32k.rbuild
Modified: trunk/reactos/subsystems/win32/win32k/win32k.rbuild
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/wi…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/win32k.rbuild (original)
+++ trunk/reactos/subsystems/win32/win32k/win32k.rbuild Tue Aug 29 12:28:50 2006
@@ -85,13 +85,15 @@
<file>copy.c</file>
<file>usrheap.c</file>
</compilationunit>
- <directory name="i386">
- <file>cos_asm.s</file>
- <file>sin_asm.s</file>
- <file>atan2_asm.s</file>
- <file>floor_asm.s</file>
- <file>ceil_asm.s</file>
- </directory>
+ <if property="ARCH" value="i386">
+ <directory name="i386">
+ <file>cos_asm.s</file>
+ <file>sin_asm.s</file>
+ <file>atan2_asm.s</file>
+ <file>floor_asm.s</file>
+ <file>ceil_asm.s</file>
+ </directory>
+ </if>
</directory>
<directory name="ntddraw">
<compilationunit name="ntddraw.c">