diff options
author | Slávek Banko <[email protected]> | 2022-12-13 08:55:56 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2022-12-13 08:55:56 +0100 |
commit | 712c0b55bac6bb282002e40e75c1761f2c8835ea (patch) | |
tree | 2dfa4d38210b4b3250f5143a0976cff32cd7633e | |
parent | 7fa4f1ed9bdbb5f5ffee2d1d7e7076242a451c8b (diff) | |
download | bibletime-712c0b55bac6bb282002e40e75c1761f2c8835ea.tar.gz bibletime-712c0b55bac6bb282002e40e75c1761f2c8835ea.zip |
Fix setting definition __SANE_USERSPACE_TYPES__.
Signed-off-by: Slávek Banko <[email protected]>
-rw-r--r-- | ConfigureChecks.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index d9ff50a..b42d290 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -57,7 +57,7 @@ if( NOT SWORD_WITHOUT_SANE_USERSPACE_TYPES ) if( NOT SWORD_WITH_SANE_USERSPACE_TYPES ) tde_message_fatal( "sword library cannot be used in any way" ) endif() - add_definitions( "__SANE_USERSPACE_TYPES__" ) + add_definitions( "-D__SANE_USERSPACE_TYPES__" ) endif() |