Skip to content

InfoPlist.h: fix MIN_VER #17

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions InfoPlist.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,16 +59,16 @@
#elif MIN_VER >= 101000
#define CFG_NAME Yosemite build
#define MIN_VERSION 10.10
#elif MIN_VER >= 109000
#elif MIN_VER >= 1090
#define CFG_NAME Mavericks build
#define MIN_VERSION 10.9
#elif MIN_VER >= 108000
#elif MIN_VER >= 1080
#define CFG_NAME Mountain Lion build
#define MIN_VERSION 10.8
#elif MIN_VER >= 107000
#elif MIN_VER >= 1070
#define CFG_NAME Lion build
#define MIN_VERSION 10.7
#elif MIN_VER >= 106000
#elif MIN_VER >= 1060
#define CFG_NAME Snow Leopard build
#define MIN_VERSION 10.6
#else /* don't bother with the real name if older - just if it's 64-bit or not */
Expand Down