Skip to content

Commit

Permalink
[iOS] Adding version infos
Browse files Browse the repository at this point in the history
  • Loading branch information
Romain Goyet committed Dec 7, 2011
1 parent 4d66d48 commit 309b79d
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -1577,16 +1577,20 @@ list_version()
# if defined(MSWIN)
MSG_PUTS(_("with GUI."));
# else
# if defined(TARGET_API_MAC_CARBON) && TARGET_API_MAC_CARBON
# ifdef FEAT_GUI_IOS
MSG_PUTS(_("with iOS GUI."));
# else
# if defined(TARGET_API_MAC_CARBON) && TARGET_API_MAC_CARBON
MSG_PUTS(_("with Carbon GUI."));
# else
# if defined(TARGET_API_MAC_OSX) && TARGET_API_MAC_OSX
# else
# if defined(TARGET_API_MAC_OSX) && TARGET_API_MAC_OSX
MSG_PUTS(_("with Cocoa GUI."));
# else
# if defined(MACOS)
# else
# if defined(MACOS)
MSG_PUTS(_("with (classic) GUI."));
# endif
# endif
# endif
# endif
# endif
# endif
# endif
# endif
Expand Down

0 comments on commit 309b79d

Please sign in to comment.