mirror of
https://github.com/reactos/reactos.git
synced 2025-06-06 01:40:36 +00:00
Add software patent setting to build config template.
Implement the setting in freetype2 (rbuild file). svn path=/trunk/; revision=23230
This commit is contained in:
parent
7af4849812
commit
0cc0655c20
4 changed files with 22 additions and 1 deletions
|
@ -53,4 +53,13 @@
|
||||||
-->
|
-->
|
||||||
<property name="DBG" value="1" />
|
<property name="DBG" value="1" />
|
||||||
|
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Whether to compile apps/libs with features covered software patents or not.
|
||||||
|
If you live in a country where software patents are valid/apply, don't
|
||||||
|
enable this (except they/you purchased a license from the patent owner).
|
||||||
|
This settings is disabled (0) by default.
|
||||||
|
-->
|
||||||
|
<property name="NSWPAT" value="0" />
|
||||||
|
|
||||||
</rbuild>
|
</rbuild>
|
||||||
|
|
|
@ -60,4 +60,13 @@
|
||||||
-->
|
-->
|
||||||
<property name="GDB" value="0" />
|
<property name="GDB" value="0" />
|
||||||
|
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Whether to compile apps/libs with features covered software patents or not.
|
||||||
|
If you live in a country where software patents are valid/apply, don't
|
||||||
|
enable this (except they/you purchased a license from the patent owner).
|
||||||
|
This settings is disabled (0) by default.
|
||||||
|
-->
|
||||||
|
<property name="NSWPAT" value="0" />
|
||||||
|
|
||||||
</rbuild>
|
</rbuild>
|
||||||
|
|
|
@ -436,7 +436,7 @@ FT_BEGIN_HEADER
|
||||||
/* Do not #undef this macro here, since the build system might */
|
/* Do not #undef this macro here, since the build system might */
|
||||||
/* define it for certain configurations only. */
|
/* define it for certain configurations only. */
|
||||||
/* */
|
/* */
|
||||||
#define TT_CONFIG_OPTION_BYTECODE_INTERPRETER
|
/* #define TT_CONFIG_OPTION_BYTECODE_INTERPRETER */
|
||||||
|
|
||||||
|
|
||||||
/*************************************************************************/
|
/*************************************************************************/
|
||||||
|
|
|
@ -6,6 +6,9 @@
|
||||||
<define name="__NTDRIVER__" />
|
<define name="__NTDRIVER__" />
|
||||||
<define name="__NO_CTYPE_INLINES" />
|
<define name="__NO_CTYPE_INLINES" />
|
||||||
<define name="__USE_W32API" />
|
<define name="__USE_W32API" />
|
||||||
|
<if property="NSWPAT" value="1">
|
||||||
|
<define name="TT_CONFIG_OPTION_BYTECODE_INTERPRETER" />
|
||||||
|
</if>
|
||||||
<library>ntoskrnl</library>
|
<library>ntoskrnl</library>
|
||||||
<library>hal</library>
|
<library>hal</library>
|
||||||
<directory name="i386">
|
<directory name="i386">
|
||||||
|
|
Loading…
Reference in a new issue