diff options
author | Nicky <nicky.dasmijn@gmail.com> | 2022-04-18 03:08:46 +0200 |
---|---|---|
committer | Nicky <nicky.dasmijn@gmail.com> | 2022-04-18 03:08:46 +0200 |
commit | 4416db9a261443f48034a1c0a2457510cffd05b0 (patch) | |
tree | c7ee6a9ced4617b8266d09fcae601f9539de52ae /indra/cmake | |
parent | e743efcc4896c99161cc47adc96379de3ac2d6f3 (diff) |
Remvoe -D that had been passed in front of each entry of add_compile_definitions, this lead to '-D-D<value>'
Diffstat (limited to 'indra/cmake')
-rw-r--r-- | indra/cmake/00-Common.cmake | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/indra/cmake/00-Common.cmake b/indra/cmake/00-Common.cmake index 25ab731842..7be5e7b0a0 100644 --- a/indra/cmake/00-Common.cmake +++ b/indra/cmake/00-Common.cmake @@ -114,11 +114,11 @@ if (LINUX) set(CMAKE_SKIP_RPATH TRUE) add_compile_definitions( - -D_REENTRANT - -D_FORTIFY_SOURCE=2 - -DEXTERNAL_TOS - -DAPPID=secondlife - -DLL_IGNORE_SIGCHLD + _REENTRANT + _FORTIFY_SOURCE=2 + EXTERNAL_TOS + APPID=secondlife + LL_IGNORE_SIGCHLD ) add_compile_options( -fexceptions |