diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-03-07 10:52:50 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-03-07 10:52:50 +0200 |
commit | af42ac01a4931714d5e362cee253e34b9b3689b1 (patch) | |
tree | 928b59f850b269e5fc21c5f6c58f9fa8514460d9 | |
parent | c84f0dae40b6f3e64a265efcc76b1757edbdbf45 (diff) |
Fix OS X build
Change-Id: I9437bee64b318754ee5dc595f35be865a21d6a11
-rw-r--r-- | Repository.mk | 2 | ||||
-rw-r--r-- | scp2/source/ooo/file_ooo.scp | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Repository.mk b/Repository.mk index 5072b708f146..204a16bc0c2f 100644 --- a/Repository.mk +++ b/Repository.mk @@ -223,7 +223,7 @@ $(eval $(call gb_Helper_register_libraries_for_install,OOOLIBS,ooo, \ chartcore \ chartcontroller \ $(if $(filter FREEBSD LINUX MACOSX WNT,$(OS)),chartopengl) \ - $(if $(filter $(OS),WNT),,cmdmail) \ + $(if $(filter $(OS),MACOSX WNT),,cmdmail) \ cppcanvas \ configmgr \ ctl \ diff --git a/scp2/source/ooo/file_ooo.scp b/scp2/source/ooo/file_ooo.scp index 881a5efd85fe..27719e46caeb 100644 --- a/scp2/source/ooo/file_ooo.scp +++ b/scp2/source/ooo/file_ooo.scp @@ -200,7 +200,7 @@ End #endif -#ifdef UNX +#if defined UNX && ! defined MACOSX File gid_File_Bin_Uri_Encode BIN_FILE_BODY; @@ -211,14 +211,14 @@ End #endif -#ifdef UNX +#if defined UNX && ! defined MACOSX File gid_File_Bin_Senddoc BIN_FILE_BODY; Dir = FILELIST_DIR; Name = "shell_senddoc.filelist"; Styles = (FILELIST, PACKED); End -#else +#elif defined WNT File gid_File_Bin_Senddoc BIN_FILE_BODY; Dir = gid_Brand_Dir_Program; |