comparison src/version.c @ 1607:4f1130893a1c v7.1.320

updated for version 7.1-320
author vimboss
date Fri, 20 Jun 2008 14:32:41 +0000
parents 9dd62cb57ed5
children 152883db0edf
comparison
equal deleted inserted replaced
1606:9dd62cb57ed5 1607:4f1130893a1c
665 }; 665 };
666 666
667 static int included_patches[] = 667 static int included_patches[] =
668 { /* Add new patch number below this line */ 668 { /* Add new patch number below this line */
669 /**/ 669 /**/
670 320,
671 /**/
670 319, 672 319,
671 /**/ 673 /**/
672 318, 674 318,
673 /**/ 675 /**/
674 317, 676 317,
1365 MSG(longVersion); 1367 MSG(longVersion);
1366 #ifdef WIN3264 1368 #ifdef WIN3264
1367 # ifdef FEAT_GUI_W32 1369 # ifdef FEAT_GUI_W32
1368 # if defined(_MSC_VER) && (_MSC_VER <= 1010) 1370 # if defined(_MSC_VER) && (_MSC_VER <= 1010)
1369 /* Only MS VC 4.1 and earlier can do Win32s */ 1371 /* Only MS VC 4.1 and earlier can do Win32s */
1370 MSG_PUTS(_("\nMS-Windows 16/32 bit GUI version")); 1372 MSG_PUTS(_("\nMS-Windows 16/32-bit GUI version"));
1371 # else 1373 # else
1372 # ifdef _WIN64 1374 # ifdef _WIN64
1373 MSG_PUTS(_("\nMS-Windows 64 bit GUI version")); 1375 MSG_PUTS(_("\nMS-Windows 64-bit GUI version"));
1374 # else 1376 # else
1375 MSG_PUTS(_("\nMS-Windows 32 bit GUI version")); 1377 MSG_PUTS(_("\nMS-Windows 32-bit GUI version"));
1376 # endif 1378 # endif
1377 # endif 1379 # endif
1378 if (gui_is_win32s()) 1380 if (gui_is_win32s())
1379 MSG_PUTS(_(" in Win32s mode")); 1381 MSG_PUTS(_(" in Win32s mode"));
1380 # ifdef FEAT_OLE 1382 # ifdef FEAT_OLE
1381 MSG_PUTS(_(" with OLE support")); 1383 MSG_PUTS(_(" with OLE support"));
1382 # endif 1384 # endif
1383 # else 1385 # else
1384 MSG_PUTS(_("\nMS-Windows 32 bit console version")); 1386 # ifdef _WIN64
1387 MSG_PUTS(_("\nMS-Windows 64-bit console version"));
1388 # else
1389 MSG_PUTS(_("\nMS-Windows 32-bit console version"));
1390 # endif
1385 # endif 1391 # endif
1386 #endif 1392 #endif
1387 #ifdef WIN16 1393 #ifdef WIN16
1388 MSG_PUTS(_("\nMS-Windows 16 bit version")); 1394 MSG_PUTS(_("\nMS-Windows 16-bit version"));
1389 #endif 1395 #endif
1390 #ifdef MSDOS 1396 #ifdef MSDOS
1391 # ifdef DJGPP 1397 # ifdef DJGPP
1392 MSG_PUTS(_("\n32 bit MS-DOS version")); 1398 MSG_PUTS(_("\n32-bit MS-DOS version"));
1393 # else 1399 # else
1394 MSG_PUTS(_("\n16 bit MS-DOS version")); 1400 MSG_PUTS(_("\n16-bit MS-DOS version"));
1395 # endif 1401 # endif
1396 #endif 1402 #endif
1397 #ifdef MACOS 1403 #ifdef MACOS
1398 # ifdef MACOS_X 1404 # ifdef MACOS_X
1399 # ifdef MACOS_X_UNIX 1405 # ifdef MACOS_X_UNIX