diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-08-16 21:59:11 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-08-18 21:11:16 +0300 |
commit | bd2f7ef662122d5c1202911cb2f3b0ab1e124695 (patch) | |
tree | fde8b48a42d964fe2e00bb9c97c96e46af0ba17f /configure.ac | |
parent | c6a73009747814513ab5a7277c211449c7378870 (diff) |
Decouple the "Mac-like" app bundle structure choice from sandboxing choice
Add a switch --enable-canonical-installation-tree-structure. Only implemented
for OS X for now, but the same switch can be used if and when we want to make
it possible to make the Unix installation tree more "standard", too.
Change-Id: Icb0ad500b77d7e986f2f188fd17faabaf2e2fe99
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 4f95412b6be6..f9394b7ef6ce 100644 --- a/configure.ac +++ b/configure.ac @@ -1141,6 +1141,13 @@ AC_ARG_ENABLE(macosx-sandbox, adherence to App Store rules.]), ,) +AC_ARG_ENABLE(canonical-installation-tree-structure, + AS_HELP_STRING([--enable-canonical-installation-tree-structure], + [Make the installation tree structure be more canonical for + the platform. Implemented only for OS X. Experimental.]), +,) + + AC_ARG_WITH(macosx-bundle-identifier, AS_HELP_STRING([--with-macosx-bundle-identifier=tld.mumble.orifice.TheOffice], [Define the OS X bundle identifier. Default is the somewhat weird @@ -2853,10 +2860,7 @@ dnl =================================================================== dnl Structure of install set dnl =================================================================== -if test $_os = Darwin -a "$ENABLE_MACOSX_SANDBOX" = YES; then - # For now, couple whether to use a more "Mac-like" installation tree structure - # with the choice whether to use sandboxing. Could be a separate choice, or could - # be always on for OS X. +if test $_os = Darwin -a "$enable_canonical_installation_tree_structure" = yes; then LIBO_BIN_FOLDER=MacOS LIBO_ETC_FOLDER=Resources LIBO_LIBEXEC_FOLDER=MacOS |