diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-09-13 18:25:04 +0200 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-09-13 20:21:06 +0200 |
commit | 5fcd0d9c1e27878e1d31891eee669fe5ae55a8e6 (patch) | |
tree | 3dfa12dfc04c45e69831edd6cbd7e581163745a2 | |
parent | 46adbf9612e56179b783b48a293dc14850045aeb (diff) |
mac: enable-retina is now the default
Change-Id: I311d6b359007b1d5799673e3d7733bdf2177df88
-rw-r--r-- | configure.ac | 9 | ||||
-rwxr-xr-x | sysui/desktop/macosx/Info.plist.in | 2 |
2 files changed, 2 insertions, 9 deletions
diff --git a/configure.ac b/configure.ac index b38ed8343f9b..7d6c249a7247 100644 --- a/configure.ac +++ b/configure.ac @@ -1337,7 +1337,7 @@ AC_ARG_ENABLE(silent-msi, AC_ARG_ENABLE(macosx-retina, AS_HELP_STRING([--enable-macosx-retina], - [Declare the application as High Resolution Capable. (retina display) + [deprecated... enabled by default now. Kept for backward compat only. ]), ,) @@ -3040,13 +3040,6 @@ if test $_os = Darwin; then MACOSX_APP_NAME="$with_macosx_app_name" AC_MSG_RESULT([$MACOSX_APP_NAME]) - AC_MSG_CHECKING([build with mac retina support]) - if test "$enable_macosx_retina" = yes ; then - MACOSX_HIGH_RESOLUTION_VALUE=true - else - MACOSX_HIGH_RESOLUTION_VALUE=false - fi - AC_MSG_RESULT([$MACOSX_HIGH_RESOLUTION_VALUE]) fi AC_SUBST(MACOSX_SDK_PATH) AC_SUBST(MACOSX_SDK_VERSION) diff --git a/sysui/desktop/macosx/Info.plist.in b/sysui/desktop/macosx/Info.plist.in index 3dde39444504..892d0df8170d 100755 --- a/sysui/desktop/macosx/Info.plist.in +++ b/sysui/desktop/macosx/Info.plist.in @@ -1468,7 +1468,7 @@ <key>LSMinimumSystemVersion</key> <string>@MACOSX_DEPLOYMENT_TARGET@.0</string> <key>NSHighResolutionCapable</key> - <@MACOSX_HIGH_RESOLUTION_VALUE@/> + <true/> </dict> </plist> |